


/* IT Hero Section */
.it-hero-section {
    position: relative;
    min-height: clamp(60vh, 80vh, 100vh);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-x: hidden;
    overflow-y: hidden;
}

.it-hero-section img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
    animation: zoomInOut 15s infinite ease-in-out;
}

.it-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.it-hero-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: clamp(2rem, 10vh, 6rem) auto;
    z-index: 3;
    padding: clamp(1rem, 2vw, 2rem);
}

.it-hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    animation: bounceIn 1.5s ease;
}

.it-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #fff;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.5s both;
}

.it-hero-btn {
    padding: clamp(10px, 2vw, 14px) clamp(20px, 3vw, 30px);
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #e74c3c, #f1c40f);
    font-size: clamp(16px, 2vw, 20px);
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
}

.it-hero-btn:hover {
    background: linear-gradient(135deg, #f1c40f, #e74c3c);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.7);
}

/* Animations for Hero */
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}




/* IT Services Section */
.it-services-section {
    padding: clamp(40px, 10vw, 80px) clamp(10px, 2vw, 20px);
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ecf0f1, #f9fbfc);
}

.it-section-title {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: bold;
    background: linear-gradient(90deg, #007bff, #34c759);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.it-section-title::after {
    content: '';
    width: clamp(60px, 10vw, 100px);
    height: 6px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.it-services-slider {
    padding: 30px 0;
}

.it-slider-container {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(15px, 2vw, 30px);
    transition: transform 0.5s ease-in-out;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.it-service-card {
    flex: 0 0 clamp(260px, 33vw, 340px);
    background: linear-gradient(135deg, #fff, #f9fbfc);
    padding: clamp(20px, 3vw, 40px);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    scroll-snap-align: center;
}

.it-service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: #2ecc71;
}

.it-service-icon {
    font-size: clamp(36px, 6vw, 60px);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.it-service-card:hover .it-service-icon {
    transform: rotate(15deg) scale(1.2);
}

.it-service-title {
    font-size: clamp(20px, 3vw, 28px);
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(to right, #2c3e50, #3498db);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.it-service-desc {
    color: #7f8c8d;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
    margin-bottom: 20px;
}

.it-service-features {
    list-style: none;
    margin-bottom: 25px;
    color: #34495e;
}

.it-service-features li {
    margin: 12px 0;
    padding-left: 30px;
    font-size: clamp(13px, 2vw, 15px);
    position: relative;
    transition: all 0.3s ease;
}

.it-service-features li:hover {
    color: #e74c3c;
    padding-left: 35px;
}

.it-service-features li::before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-size: 16px;
}

.it-learn-more {
    padding: clamp(8px, 2vw, 12px) clamp(15px, 3vw, 20px);
    border: none;
    border-radius: 25px;
    background: linear-gradient(to right, rgb(44, 62, 80), rgb(52, 152, 219));
    font-size: clamp(12px, 2vw, 16px);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.it-learn-more:hover {
    background: linear-gradient(135deg, #2ecc71, #3498db);
    transform: scale(1.1);
}

.it-slider-controls {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 2vw, 25px);
    margin-top: 30px;
}

.it-slider-btn {
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    border: none;
    background: linear-gradient(135deg, #e74c3c, #f1c40f);
    color: white;
    border-radius: 50%;
    font-size: clamp(16px, 2vw, 20px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.it-slider-btn:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #f1c40f, #e74c3c);
}

/* IT Projects Section */
.it-projects-section {
    padding: clamp(40px, 10vw, 80px) clamp(10px, 2vw, 20px);
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fff, #f9fbfc);
}

.it-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 3vw, 40px);
    margin-top: 40px;
}

.it-project-card {
    background: linear-gradient(135deg, #fff, #ecf0f1);
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.it-project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: #3498db;
}

.it-project-image {
    width: 100%;
    height: clamp(180px, 25vw, 220px);
    object-fit: cover;
    border-radius: 25px 25px 0 0;
    transition: all 0.5s ease;
}

.it-project-card:hover .it-project-image {
    transform: scale(1.1);
}

.it-project-content {
    padding: clamp(15px, 3vw, 30px);
}

.it-project-title {
    font-size: clamp(18px, 3vw, 26px);
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(to right, #2c3e50, #e74c3c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.it-project-desc {
    color: #7f8c8d;
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: 20px;
}

.it-project-link {
    padding: clamp(8px, 2vw, 12px) clamp(15px, 3vw, 25px);
    background: linear-gradient(to right, rgb(44, 62, 80), rgb(52, 152, 219));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: clamp(12px, 2vw, 15px);
    transition: all 0.4s ease;
    display: inline-block;
}

.it-project-link:hover {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    transform: scale(1.1);
}

/* IT Why Choose Us Section */
.it-why-choose-us {
    padding: clamp(40px, 10vw, 80px) clamp(10px, 2vw, 20px);
    background: linear-gradient(135deg, #f9fbfc, #ecf0f1);
    max-width: 1400px;
    margin: 0 auto;
}

.it-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-top: 40px;
}

.it-why-item {
    text-align: center;
    padding: clamp(20px, 3vw, 30px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.it-why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: #f1c40f;
}

.it-why-item i {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.it-why-item:hover i {
    transform: scale(1.2);
}

.it-why-title {
    font-size: clamp(16px, 3vw, 24px);
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(to right, #2c3e50, #9b59b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.it-why-desc {
    color: #7f8c8d;
    font-size: clamp(14px, 2vw, 16px);
}

/* IT Our Process Section */
.it-our-process {
    padding: clamp(40px, 10vw, 80px) clamp(10px, 2vw, 20px);
    background: linear-gradient(135deg, #fff, #f9fbfc);
    max-width: 1400px;
    margin: 0 auto;
}

.it-process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(15px, 2vw, 30px);
    margin-top: 40px;
    justify-content: center;
}

.it-process-step {
    flex: 0 0 clamp(220px, 25%, 340px);
    background: linear-gradient(135deg, #fff, #f5f7fa);
    padding: clamp(20px, 3vw, 30px);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.it-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: #e74c3c;
}

.it-step-number {
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    background: linear-gradient(135deg, #3498db, #e74c3c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 20px);
    transition: all 0.3s ease;
}

.it-process-step:hover .it-step-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e74c3c, #3498db);
}

/* IT Testimonials Section */
.it-testimonials {
    padding: clamp(40px, 10vw, 80px) clamp(10px, 2vw, 20px);
    background: linear-gradient(135deg, #f9fbfc, #ecf0f1);
    max-width: 1400px;
    margin: 0 auto;
}

.it-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-top: 40px;
}

.it-testimonial-card {
    background: #fff;
    padding: clamp(20px, 3vw, 30px);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.it-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: #9b59b6;
}

.it-testimonial-icon {
    font-size: clamp(20px, 3vw, 30px);
    color: #e74c3c;
    position: absolute;
    top: 15px;
    left: 15px;
    transition: all 0.3s ease;
}

.it-testimonial-card:hover .it-testimonial-icon {
    transform: scale(1.2);
}

.it-testimonial-text {
    margin: 25px 0;
    color: #7f8c8d;
    font-style: italic;
    font-size: clamp(14px, 2vw, 16px);
}

.it-testimonial-author {
    font-weight: 700;
    color: #2c3e50;
    font-size: clamp(14px, 2vw, 16px);
    background: linear-gradient(to right, #2c3e50, #f1c40f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* IT Call to Action Section */
.it-cta-section {
    padding: clamp(40px, 10vw, 80px) clamp(10px, 2vw, 20px);
    background: linear-gradient(135deg, #e74c3c, #3498db);
    color: white;
    text-align: center;
    position: relative;
}

.it-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0.3;
    z-index: 0;
}

.it-cta-button {
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 40px);
    background: linear-gradient(135deg, #f1c40f, #2ecc71);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: clamp(14px, 2vw, 18px);
    margin-top: 30px;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.it-cta-button:hover {
    background: linear-gradient(135deg, #2ecc71, #f1c40f);
    transform: scale(1.1);
}

/* Modal Styles */
.it-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.it-modal-content {
    background: #fff;
    padding: clamp(20px, 3vw, 40px);
    border-radius: 15px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.it-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #e74c3c;
}

.it-modal-title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: #2c3e50;
}

.it-modal-text {
    font-size: clamp(14px, 2vw, 16px);
    color: #7f8c8d;
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .it-hero-section {
        min-height: 550px;
    }

    .it-hero-title {
        font-size: clamp(36px, 6vw, 72px);
    }

    .it-hero-subtitle {
        font-size: clamp(18px, 3vw, 28px);
    }

    .it-service-card {
        flex: 0 0 clamp(300px, 33%, 340px);
    }

    .it-modal-content {
        flex-direction: row;
        align-items: center;
    }
    .it-slider-container{
        overflow-x: hidden;
    }
}

@media (min-width: 1024px) {
    .it-service-card {
        flex: 0 0 clamp(300px, 20%, 340px);
    }

    .it-process-step {
        flex: 0 0 clamp(220px, 25%, 340px);
    }
}

@media (max-width: 767px) {
    .it-hero-section {
        min-height: 350px;
    }

    .it-hero-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .it-hero-subtitle {
        font-size: clamp(14px, 3vw, 18px);
    }

    .it-hero-btn {
        padding: clamp(8px, 2vw, 12px) clamp(20px, 4vw, 30px);
    }

    .it-slider-container {
        flex-wrap: nowrap;
    }
}

@media (max-width: 480px) {
    .it-section-title {
        font-size: clamp(20px, 5vw, 32px);
    }

    .it-service-card,
    .it-project-card,
    .it-why-item,
    .it-process-step,
    .it-testimonial-card {
        padding: clamp(15px, 3vw, 20px);
    }

    .it-hero-btn {
        font-size: clamp(12px, 2vw, 14px);
    }

    .it-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
