/* Body Font Styles */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 18px;
}

h1, h2, h3, .logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navbar Styles */
header {
    background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgb(58, 58, 152);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
}

.logo img {
    width: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: rgb(38, 39, 131);
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    transition: 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #00c6ff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    z-index: 100;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    display: block;
    color: rgb(38, 39, 131);
}

.dropdown-menu li a:hover {
    color: #00c6ff;
}

.request-btn-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.floating-email-btn,
.floating-request-btn {
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #d94136;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-toggle {
    display: none;
    font-size: 50px;
    color: #05061b;
    cursor: pointer;
}

.floating-email-btn:hover,
.floating-request-btn:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
}

.navbar-hidden {
    top: -100px;
}

/* Back to Top Button Style Starts*/

    #backToTop {
        position: fixed;
        bottom: 30px;
        right: 25px;
        z-index: 999;
        background: #00c6ff;
        color: #fff;
        border: none;
        padding: 12px 14px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: 0 6px 12px rgba(0, 198, 255, 0.3);
        display: none;
        transition: all 0.4s ease;
    }

    #backToTop:hover {
        background: #0077cc;
        transform: scale(1.1);
    }

    /* Footer Reveal Animation */
    .aspin-footer {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 1s ease, transform 1s ease;
    }

    .aspin-footer.reveal {
        opacity: 1;
        transform: translateY(0);
    }

/* Back to Top Button Style Ends*/

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 23px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.pulse {
    animation: pulseEffect 1.8s infinite;
}

@keyframes pulseEffect {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Call Floating Button Style Starts */

.call-float {
    position: fixed;
    bottom: 155px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #34b7f1, #007bff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.call-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Call Floating Button Style Ends */

/* Footer Page Style Starts */

        .footer {
            background: linear-gradient(135deg, #082d5c, #094a8f);
            color: #fff;
            font-family: 'Poppins', sans-serif;
            padding: 60px 20px 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: auto;
        }

        .footer-logo {
            width: 100px;
            margin-bottom: 20px;
        }

        .footer-text {
            font-size: 16px;
            line-height: 1.6;
            text-align: justify;
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 22px;
            color: #ffffff;
            font-weight: 600;
            position: relative;
        }

        .footer-column h4::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #00c3ff;
        }

        .footer-links, .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li,
        .footer-contact li {
            margin-bottom: 12px;
            font-size: 15px;
            display: flex;
            align-items: center;
        }

        .footer-links li i,
        .footer-contact li i {
            margin-right: 10px;
            color: #00c3ff;
            min-width: 20px;
        }

        .footer-links li a,
        .footer-column a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links li a:hover,
        .footer-column a:hover {
            color: #00c3ff;
        }

        .footer-social {
            text-align: center;
            margin: 30px 0 20px;
        }

        .footer-social a {
            color: #fff;
            margin: 0 10px;
            font-size: 20px;
            transition: color 0.3s, transform 0.3s;
            display: inline-block;
        }

        .footer-social a:hover {
            color: #00c3ff;
            transform: scale(1.2);
        }

        .footer-bottom {
            text-align: center;
            font-size: 14px;
            padding: 15px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }

        /* Demo content styling */
        .demo-content {
            text-align: center;
            padding: 40px 20px;
            background: white;
            margin-bottom: 0;
        }

        .demo-content h1 {
            color: #082d5c;
            margin-bottom: 10px;
        }

        .demo-content p {
            color: #666;
            font-size: 18px;
        }

/* Footer Page Style Ends */


/* Banner Section Style Starts */

        .banner-section-home {
            position: relative;
            height: 100vh;
            min-height: 610px;
            overflow: hidden;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #4a90e2 75%, #7bb3f0 100%);
        }

        /* Animated background elements */
        .bg-shapes-home {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .shape-home {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite linear;
        }

        .shape-home:nth-child(1) {
            top: 20%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: rgb(190, 182, 182);
            border-radius: 50%;
            animation-delay: 0s;
        }

        .shape-home:nth-child(2) {
            top: 60%;
            right: 15%;
            width: 120px;
            height: 120px;
            background: white;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation-delay: 5s;
        }

        .shape-home:nth-child(3) {
            bottom: 30%;
            left: 20%;
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 20px;
            animation-delay: 10s;
        }

        .shape-home:nth-child(4) {
            top: 40%;
            right: 30%;
            width: 60px;
            height: 60px;
            background: rgb(180, 177, 177);
            transform: rotate(45deg);
            animation-delay: 15s;
        }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(-60px) rotate(240deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }

        /* Main content container */
        .banner-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            height: 100%;
            z-index: 10;
        }

        /* Left content */
        .hero-content {
            flex: 1;
            max-width: 600px;
            color: white;
            animation: slideInLeft 1s ease-out;
        }

        .hero-subtitle {
            font-size: 18px;
            font-weight: 300;
            margin-bottom: 15px;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 35px;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            background: linear-gradient(45deg, #ffffff, #f0f8ff, #e6f3ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
        }

        .hero-description {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff3535, #d94136);
            color: white;
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 16px 40px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(15px);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-secondary:hover::before {
            opacity: 1;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.8);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
        }

        /* Right visual content */
        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        .visual-container {
            position: relative;
            width: 500px;
            height: 500px;
        }

        /* Central device */
        .main-device {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 220px;
            height: 220px;
            background: linear-gradient(45deg, #00bcd4, #26c6da, #4dd0e1);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(0, 188, 212, 0.4);
            animation: pulse 2s infinite;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .device-screen {
            width: 170px;
            height: 110px;
            background: linear-gradient(135deg, #0f1419, #1a252f);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .screen-waveform {
            width: 140px;
            height: 60px;
        }

        /* Floating icons */
        .floating-icon {
            position: absolute;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            animation: floatIcon 3s infinite ease-in-out;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .icon-1 {
            top: 8%;
            left: 18%;
            width: 90px;
            height: 90px;
            font-size: 2.2rem;
            color: #e74c3c;
            animation-delay: 0s;
        }

        .icon-2 {
            top: 15%;
            right: 8%;
            width: 85px;
            height: 85px;
            font-size: 2rem;
            color: #27ae60;
            animation-delay: 1s;
        }

        .icon-3 {
            bottom: 15%;
            left: 8%;
            width: 88px;
            height: 88px;
            font-size: 2.1rem;
            color: #3498db;
            animation-delay: 2s;
        }

        .icon-4 {
            bottom: 25%;
            right: 18%;
            width: 82px;
            height: 82px;
            font-size: 1.9rem;
            color: #f39c12;
            animation-delay: 1.5s;
        }


       
        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.05); }
            100% { transform: translate(-50%, -50%) scale(1); }
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes waveformPulse {
            0% { 
                opacity: 0.6; 
                filter: drop-shadow(0 0 10px #00bcd4);
            }
            50% { 
                opacity: 1; 
                filter: drop-shadow(0 0 20px #00bcd4) drop-shadow(0 0 30px #4dd0e1);
            }
            100% { 
                opacity: 0.6; 
                filter: drop-shadow(0 0 10px #00bcd4);
            }
        }

        @keyframes waveFlow {
            0% { 
                opacity: 0.4; 
                filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
            }
            50% { 
                opacity: 1; 
                filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
            }
            100% { 
                opacity: 0.4; 
                filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
            }
        }


/* Banner Section Style Ends */

/* Intro and Service Section Style Starts */

        .intro {
            background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
            padding: 2rem 2rem;
            text-align: center;
            border-top: 1px solid #dbe9ff;
            border-bottom: 1px solid #dbe9ff;
            animation: fadeIn 1s ease;
        }

        .intro h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 500;
            color: #012b55;;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .intro h2::after {
            content: '';
            width: 60%;
            height: 4px;
            background-color: #00c6ff;
            display: block;
            margin: 0.5rem auto 0;
            border-radius: 2px;
        }

        .intro p {
            font-size: 18px;
            color: #333;
            line-height: 1.9;
            max-width: 1204px;
            margin: 1rem auto;
            font-weight: 500;
            font-family: 'Poppins',sans-serif;
        }

        [data-animate] {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            will-change: opacity, transform;
        }

        [data-animate].animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Optional delay using data attribute */
        [data-animate][data-animate-delay="1"] {
            transition-delay: 0.1s;
        }

        .overview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 2rem;
        }

        .overview div {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .overview div:hover {
            transform: translateY(-5px);
        }

        .overview i {
            color: #009dcb;
            margin-bottom: 0.75rem;
        }

        .overview p{
            font-size: 15px;
            font-weight: 500;
        }
        .overheading{
            font-size: 20px;
            font-family: 'Poppins',sans-serif;
            color: #0e1f35;
        }

        /* Initial hidden state */
        [data-animate] {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        /* When element comes into view */
        [data-animate].animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Optional delay */
        [data-animate-delay="1"] {
            transition-delay: 0.2s;
        }
        [data-animate-delay="2"] {
            transition-delay: 0.4s;
        }
        [data-animate-delay="3"] {
            transition-delay: 0.6s;
        }
        [data-animate-delay="4"] {
            transition-delay: 0.8s;
        }
        [data-animate] {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            will-change: opacity, transform;
        }

        [data-animate].animated {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

/* Intro and Service Section Style Ends*/

/* Call to Action Section Style Starts */

    .cta {
      background-color: #02203e;
      color: white;
      text-align: center;
      padding: 3rem 2rem;
    }

    .cta h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: white;
    }

    .cta-btn {
        background: #0077b6;
        color: #fff;
        font-weight: bold;
        font-size: 15px;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .cta-btn:hover {
      background-color: #f9f9ff;
      color: #0077b6;
    }

/* Call to Action Section Style Ends */

/* Why Choose Us Section Style Starts  */

        .why-choose-glass {
          padding: 50px 20px;
          background: linear-gradient(to right, #f3f7fd, #e7f0ff);
          text-align: center;
        }

        .section-title {
          font-size: 2.5rem;
          font-weight: 700;
          color: #053068;
          margin-bottom: 50px;
        }

        .features-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
          justify-items: center;
        }

        .feature-card {
          background: rgba(255, 255, 255, 0.25);
          backdrop-filter: blur(10px);
          border-radius: 16px;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
          padding: 30px 25px;
          max-width: 360px;
          transition: all 0.4s ease;
          border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .feature-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .feature-card h3 {
          font-size: 20px;
          font-family: 'Poppins',sans-serif;
          color: #0e1f35;
        }

        .feature-card p {
          font-size: 17px;
          font-weight: 400;
          /* font-size: 0.95rem; */
          color: #333;
        }

        .feature-card .icon {
          font-size: 2.5rem;
          color: #009dcb;
        }
        [data-animate] {
          opacity: 0;
          transform: translateY(40px);
          transition: all 0.8s ease;
        }
        [data-animate].animated {
          opacity: 1;
          transform: translateY(0);
        }

/* Why Choose Us Section Style Ends  */

/* Industries Empower Section Style Starts */ 

        .industries-rich-dark {
          background: #02203e;
          padding: 50px 30px;
          color: #fff;
          text-align: center;
          position: relative;
        }

        .industries-rich-dark .section-heading {
          font-size: 2.5rem;
          margin-bottom: 50px;
          font-weight: 700;
          color: #38bdf8;
        }

        .industries-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 30px;
          max-width: 1200px;
          margin: 0 auto;
        }

        .industry-tile {
          background: rgba(255, 255, 255, 0.06);
          border: 1px solid rgba(255, 255, 255, 0.12);
          border-radius: 20px;
          padding: 30px 20px;
          backdrop-filter: blur(12px);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
          transition: all 0.3s ease;
          transform: translateY(50px);
          opacity: 0;
        }

        .industry-tile:hover {
          transform: translateY(-8px);
          box-shadow: 0 20px 45px rgba(56, 189, 248, 0.4);
        }

        .icon-circle {
          background: #38bdf8;
          color: #0f172a;
          width: 64px;
          height: 64px;
          border-radius: 50%;
          font-size: 26px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 20px;
          box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
        }

        .industry-tile h3 {
          font-size: 1.3rem;
          color: #fff;
          margin-bottom: 10px;
        }

        .industry-tile p {
          color: #cbd5e1;
          font-size: 0.95rem;
        }

/* Industries Empower Section Style Ends */

/* Client Testimonials Section Style Starts */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
    font-family: "Poppins", sans-serif;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b4c7a; /* Premium orange accent */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #00c6ff;;
    margin: 8px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}


.testimonials-scroll {
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    animation: scroll-left 40s linear infinite;
}

.scroll-track:hover {
    animation-play-state: paused; /* Pause on hover */
}

.testimonial-card {
    flex: 0 0 auto;
    width: 320px;
    margin: 0 10px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 24px;
    color: #1e67f8;
    margin-bottom: 10px;
}

.rating {
    color: gold;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.4;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-avatar {
    background: #2c23d5;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-details h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.client-details .company {
    font-size: 0.85rem;
    color: #777;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Client Testimonials Section Style Ends */

/* Trainig Section Style Starts */

.aspin-section {
    padding: 30px 0px;
    overflow: hidden;
    width: 100%;
  }

  .aspin-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
  }

  .aspin-text-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #d1d5db;
    border-radius: 20px;
    padding: 30px;
    flex: 1 1 500px;
    min-width: 300px;
  }

  .aspin-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .aspin-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(to right, #2563eb, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-break: break-word;
  }

  .aspin-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .aspin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
  }

  .aspin-stat-card {
    background: white;
    border: 1px solid #d1d5db;
    padding: 16px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .aspin-stat-card:hover {
    transform: scale(1.05);
  }

  .aspin-stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2563eb;
  }

  .aspin-stat-number.green {
    color: #059669;
  }

  .aspin-stat-number.purple {
    color: #8b5cf6;
  }
  .puple-font{
    font-size: 25px;
  }

  .aspin-stat-label {
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
  }

  /* Team Section */
  .team-container {
    position: relative;
    display: inline-block;
    max-width: 500px;
    flex: 1 1 400px;
  }

  .team-image {
    width: 590px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    height: 510px;
    }

  .team-container:hover .team-image {
    transform: scale(1.02);
  }

  .team-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .team-button:hover {
    background-color: #021640;
    color: #fff;
  }

  .team-button .icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
  }

  .with-background {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #fdfdfd, #f0fdf4);
  }

  /* Floating Blurred Circle - Left */
  .with-background::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -120px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(66, 153, 225, 0.2), transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
  }

  /* Floating Blurred Circle - Right */
  .with-background::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.2), transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
  }



  /* Ensure inner content is above background */
  .aspin-container {
    position: relative;
    z-index: 2;
  }

/* Trainig Section Style Starts */

 /* Index Portfolio Section Starts */

        .projects-certifications {
          background: linear-gradient(to bottom right, #f5fbff, #e8f4ff);
          padding: 2rem 1rem;
          text-align: center;
        }

        .projects-certifications .section-title {
          font-size: 2rem;
          font-weight: 700;
          color: #102a43;
          margin-bottom: 2rem;
        }

        .project-home {
          display: flex;
          /* flex-wrap: wrap; */
          justify-content: center;
          gap: 2rem;
          margin-bottom: 20px;
        }

        .project-card {
          background: #fff;
          border-radius: 1rem;
          padding: 2rem 1.5rem;
          width: 100%;
          max-width: 320px;
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
          transition: transform 0.3s ease;
        }

        .project-card:hover {
          transform: translateY(-6px);
        }

        .icon-wrap {
          margin-bottom: 1rem;
        }

        .icon-wrap i {
          font-size: 40px;
          color: #009dcb;
        }

        .project-card h4 {
          font-size: 1.1rem;
          color: #0b213b;
          margin-bottom: 0.5rem;
        }

        .project-card p {
          font-size: 0.95rem;
          color: #495867;
          line-height: 1.5;
        }
        .cta-bttn {
          background-color: #0077b6;
          color: white;
          font-weight: bold;
          margin-top: 18px;
          font-size: 15px;
        }

        .cta-bttn:hover {
          background-color: #e0e0e0;
        }

/* Index Portfolio Section Ends */

/* CTA Section For Consultation and Booking Style Starts */

        .alt-cta-section {
          background: linear-gradient(to right, #f0f7ff, #e8f0ff);
          padding: 60px 20px;
          text-align: center;
          border-radius: 20px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .alt-cta-section h2 {
          font-size: 2rem;
          font-weight: 600;
          margin-bottom: 20px;
          color: #1a237e;
        }

        .highlight-gradient {
          background: linear-gradient(90deg, #3f51b5, #00bcd4);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          font-weight: 700;
        }

        .cta-subtext {
          font-size: 1rem;
          color: #333;
          margin-bottom: 16px;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
        }

        .cta-button-group {
          display: flex;
          flex-wrap: wrap; /* ensures buttons wrap on small screens */
          justify-content: center;
          gap: 12px;
          margin-top: 24px;
        }

        .primary-btn,
        .secondary-btn {
          padding: 12px 28px;
          border-radius: 8px;
          font-weight: 600;
          font-size: 1rem;
          text-decoration: none;
          transition: 0.3s ease;
        }

        .primary-btn {
          background-color: #3f51b5;
          color: white;
          margin-right: 12px;
        }

        .primary-btn:hover {
          background-color: #2c3d99;
        }

        .secondary-btn {
          background-color: #e3f2fd;
          color: #1a237e;
          border: 2px solid #3f51b5;
        }

        .secondary-btn:hover {
          background-color: #d0e3fc;
        }

/* CTA Section For Consultation and Booking Style Starts */


/* About Page Style Starts */

    /* Banner Section Style Starts */

        .about-banner{
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        .about-banner {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #0c1229 0%, #1e2a47 25%, #2a3f66 50%, #3b5998 75%, #4c70c4 100%);
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .banner-container-about {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .banner-content-about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .banner-text-about {
            color: white;
        }

        .banner-subtitle-about {
            font-size: 14px;
            font-weight: 500;
            color: #e1f5fe;
            margin-bottom: 30px;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            /* padding-left: 70px; */
        }

        .banner-subtitle-about::before {
            content: '';
            position: absolute;
            left: 0;
            top: 115%;
            transform: translateY(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #2196f3, #64b5f6);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
        }

        .banner-title-about {
            font-size: clamp(2.5rem, 3vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 40px;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .banner-description-about {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 50px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            max-width: 90%;
        }

        .cta-buttons-about {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 18px 35px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #2196f3, #64b5f6);
            color: white;
            box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(33, 150, 243, 0.5);
            background: linear-gradient(135deg, #1976d2, #42a5f5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(15px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }

        .banner-visual-about {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 500px;
        }

        .main-device-about {
            position: relative;
            width: 350px;
            height: 420px;
            background: linear-gradient(145deg, #e3f2fd, #bbdefb);
            border-radius: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 25px 80px rgba(33, 150, 243, 0.3);
            z-index: 5;
            border: 3px solid rgba(255, 255, 255, 0.9);
            overflow: hidden;
        }

        .device-header-about {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(135deg, #1565c0, #2196f3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
        }

        .company-timeline-about {
            margin-top: 80px;
            padding: 30px;
            width: 100%;
            max-height: 260px;
            overflow-y: auto;
        }

        .company-timeline-about::-webkit-scrollbar {
            width: 4px;
        }

        .company-timeline-about::-webkit-scrollbar-track {
            background: rgba(33, 150, 243, 0.1);
            border-radius: 2px;
        }

        .company-timeline-about::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #2196f3, #64b5f6);
            border-radius: 2px;
        }

        .timeline-item-about {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            position: relative;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .timeline-item-about:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item-about:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item-about:nth-child(3) { animation-delay: 0.6s; }
        .timeline-item-about:nth-child(4) { animation-delay: 0.8s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .timeline-year {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2196f3, #64b5f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 14px;
            margin-right: 20px;
            box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .timeline-content-about {
            flex: 1;
        }

        .timeline-title-about {
            font-size: 14px;
            font-weight: 600;
            color: #0d47a1;
            margin-bottom: 5px;
        }

        .timeline-desc-about {
            font-size: 12px;
            color: #37474f;
            line-height: 1.4;
        }

        .stats-display-about {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(21, 101, 192, 0.9);
            border-radius: 15px;
            padding: 15px;
            display: flex;
            justify-content: space-around;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-item-device-about {
            text-align: center;
        }

        .stat-number-device-about {
            font-size: 20px;
            font-weight: 700;
            color: #64b5f6;
            display: block;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .stat-label-device-about {
            font-size: 10px;
            color: #e3f2fd;
            margin-top: 2px;
        }

        .floating-icon-about {
            position: absolute;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
            animation: float 4s ease-in-out infinite;
            border: 3px solid rgba(33, 150, 243, 0.2);
            backdrop-filter: blur(10px);
        }

        .icon-team-about {
            top: 15px;
            right: 29px;
            color: #1565c0;
            animation-delay: 0s;
        }

        .icon-mission-about {
            top: 140px;
            right: 30px;
            color: #2196f3;
            animation-delay: 1s;
        }

        .icon-vision-about {
            bottom: 140px;
            right: 90px;
            color: #1976d2;
            animation-delay: 2s;
        }

        .icon-values-about {
            bottom: 200px;
            left: 30px;
            color: #0d47a1;
            animation-delay: 1.5s;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg);
            }
            50% { 
                transform: translateY(-15px) rotate(5deg);
            }
        }

        

        /* Background decoration */
        .bg-decoration-about {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }

        .bg-circle-about {
            position: absolute;
            border-radius: 50%;
            background: rgba(33, 150, 243, 0.1);
            box-shadow: 0 0 50px rgba(33, 150, 243, 0.2);
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
            animation: float 8s ease-in-out infinite;
        }

        .circle-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation: float 6s ease-in-out infinite reverse;
        }

        .circle-3 {
            width: 150px;
            height: 150px;
            top: 30%;
            left: 10%;
            animation: float 10s ease-in-out infinite;
        }


    /* Banner Section Style Starts */

    /* Vision and Mission Style Starts */

      .vision-mission-section {
        padding: 50px 20px;
        background: linear-gradient(145deg, #e9f0f7, #f8fbff);
        position: relative;
        overflow: hidden;
      }

      .vision-mission-section::before {
        content: '';
        position: absolute;
        top: -20%;
        left: -20%;
        width: 200%;
        height: 200%;
        /* background: url('https://www.transparenttextures.com/patterns/geometry2.png'); */
        opacity: 0.05;
        z-index: 0;
      }

      .vision-mission-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #003c74;
      }

      .vision-mission-blocks {
        display: flex;
        flex-direction: column;
        gap: 60px;
      }

      .blocking {
        display: flex;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
      }

      .blocking.reverse {
        flex-direction: row-reverse;
      }

      .icon {
        flex-shrink: 0;
        font-size: 60px;
        color: #0066cc;
        background: #e0f0ff;
        padding: 30px;
        border-radius: 50%;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      }

      .text {
        max-width: 700px;
      }

      .text h3 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #003c74;
      }

      .text p {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.7;
        color: #05090ced;
      }
  /* Vision and Mission Style Ends */

  /* Why Choose Us Section Style Starts */

    .why-choose-section {
      padding: 20px 20px;
      text-align: center;
      position: relative;
      background: linear-gradient(145deg, #f0faff, #e5f0ff);
      z-index: 1;
      overflow: hidden;
    }

    /* Optional: Decorative background circles or overlays */
    .why-choose-section::before,
    .why-choose-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, #cde9ff 0%, transparent 70%);
      z-index: 0;
    }

    .why-choose-section::before {
      width: 400px;
      height: 400px;
      top: -100px;
      left: -100px;
    }

    .why-choose-section::after {
      width: 300px;
      height: 300px;
      bottom: -80px;
      right: -80px;
    }

    .section-title-why {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 50px;
      color: #1a1a1a;
      position: relative;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 30px;
    }

    .choose-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 30px 20px;
      position: relative;
      transition: all 0.4s ease;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
      border: 2px solid transparent;
    }

    .choose-card:hover {
      transform: translateY(-10px);
      border: 2px solid transparent;
      background-clip: padding-box;
      box-shadow: 0 0 20px rgba(0, 120, 212, 0.2);
      border-image: linear-gradient(45deg, #0078d4, #00c6ff) 1;
    }

    .choose-card .icon {
      font-size: 2.2rem;
      color: #fff;
      background: linear-gradient(135deg, #0078d4, #00c6ff);
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .choose-card h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: #1f1f1f;
      font-weight: 600;
    }

    .choose-card p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* View More Button */
    .view-more {
      margin-top: 50px;
    }

    .btn-view-more {
      background: linear-gradient(135deg, #0078d4, #00c6ff);
      color: #fff;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 120, 212, 0.25);
    }

    .btn-view-more:hover {
      background: linear-gradient(135deg, #005fa3, #00aaff);
      box-shadow: 0 8px 25px rgba(0, 120, 212, 0.35);
    }

  /* Why Choose Us Section Style Ends */

  /* Medical Service Style Starts */

    .services-section {
      background-color: #f3f4f6;
      padding: 3rem 1.5rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background-color: #ffffff;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      font-size: 1rem;
      font-family: 'Poppins', sans-serif;
    }

    .training-info {
      margin-top: 3rem;
      font-size: 1.125rem;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      font-family: 'Poppins', sans-serif;
    }

    .training-info h3 {
      font-weight: 600;
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

  /* Medical Service Style Ends */

  /* Testing Section Style Starts */

    .testing-section {
      padding: 1rem 2rem 4rem 2rem;
      background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 100%);
    }

    .container-testing{
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .betten{
      margin-top: 12px;
    }
    .testing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }

    .testing-item {
      background: white;
      padding: 1.5rem;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-size: 1rem;
      font-weight: 500;
      color: #0f172a;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .testing-item i {
      font-size: 1.8rem;
      color: #3b82f6;
    }

    .testing-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    }

    .view-more-btn {
      margin-top: 4rem;
      display: inline-block;
      padding: 0.75rem 2rem;
      background-color: #2563eb;
      color: #fff;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .view-more-btn:hover {
      background-color: #1d4ed8;
    }

  /* Testing Section Style Ends */

  /* Textile Electronics Services Style Starts */

    .textile-modern-section {
      background: #f8fafc;
      padding: 4rem 1.5rem;
    }

    .container {
      max-width: 1100px;
      margin: auto;
    }

    .aspin-title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 1rem;
    }

    .textile-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.8rem;
    }

    .textile-tile {
      background: white;
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .textile-tile:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .tile-badge {
      display: inline-block;
      background: #0a316f;
      color: white;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 0.3rem 0.8rem;
      border-radius: 999px;
      margin-bottom: 0.6rem;
    }

    .textile-tile p {
      font-size: 0.95rem;
      color: #475569;
      line-height: 1.4;
    }

    .btn-center {
      text-align: center;
      margin-top: 3rem;
    }

    .butten{
      margin-top: 15px;
    }

  /* Textile Electronics Services Style Starts */


  /* Training Section style starts */

      /* Banner Style Starts */
  
            .internship-banner-training {
            background: linear-gradient(165deg, #0f172a 0%, #1e293b 25%, #0369a1 50%, #0284c7 75%, #0ea5e9 100%);
            position: relative;
            padding: 80px 0;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
            line-height: 1.6;
            
        }

        .internship-banner-training::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.4) 0%, transparent 40%),
                radial-gradient(ellipse at 70% 80%, rgba(14, 165, 233, 0.3) 0%, transparent 35%),
                radial-gradient(ellipse at 90% 10%, rgba(37, 99, 235, 0.25) 0%, transparent 30%),
                conic-gradient(from 45deg at 20% 70%, rgba(56, 189, 248, 0.2) 0deg, transparent 60deg);
            animation: auroraMove 15s ease-in-out infinite alternate;
        }

        .internship-banner-training::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 100px,
                    rgba(59, 130, 246, 0.02) 102px,
                    rgba(59, 130, 246, 0.02) 104px
                );
            animation: diagonalShift 20s linear infinite;
        }

        @keyframes auroraMove {
            0% { 
                opacity: 0.7; 
                transform: scale(1) rotate(0deg); 
            }
            50% { 
                opacity: 1; 
                transform: scale(1.1) rotate(2deg); 
            }
            100% { 
                opacity: 0.8; 
                transform: scale(1.05) rotate(-1deg); 
            }
        }

        @keyframes diagonalShift {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 15px 40px;
            position: relative;
            z-index: 3;
        }

        .banner-grid-training {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .content-section-training {
            max-width: 700px;
        }

        .breadcrumb-training {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 28px;
            font-size: 14px;
            padding: 12px 24px;
            background: rgba(30, 41, 59, 0.8);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 50px;
            backdrop-filter: blur(20px);
            box-shadow: 0 6px 24px rgba(59, 130, 246, 0.15);
            animation: slideInLeft 1s ease-out;
        }

        .breadcrumb-training a {
            color: #93c5fd;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 6px 12px;
            border-radius: 10px;
            font-weight: 600;
            position: relative;
        }

        .breadcrumb-training a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 197, 253, 0.2));
            border-radius: 10px;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.4s ease;
        }

        .breadcrumb-training a:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        .breadcrumb a:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }

        .breadcrumb-separator-training {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: linear-gradient(45deg, #3b82f6, #60a5fa);
            animation: pulseGlow 2s infinite;
        }

        .breadcrumb-training span:last-child {
            color: #ffffff;
            font-weight: 700;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            padding: 6px 16px;
            border-radius: 14px;
            box-shadow: 0 3px 12px rgba(59, 130, 246, 0.4);
        }

        .banner-title-training {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 24px;
            color: #ffffff;
            letter-spacing: -0.03em;
            animation: slideInLeft 1s ease-out 0.4s both;
            text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
        }

        .highlight-text-training {
            background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 30%, #06b6d4 60%, #0891b2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .highlight-text-training::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
            border-radius: 2px;
            animation: underlineGlow 3s ease-in-out infinite;
        }

        @keyframes underlineGlow {
            0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
            50% { opacity: 1; transform: scaleX(1); }
        }

        .banner-subtitle-training {
            font-size: 1.2rem;
            color: #cbd5e1;
            margin-bottom: 36px;
            line-height: 1.6;
            font-weight: 400;
            animation: slideInLeft 1s ease-out 0.6s both;
            max-width: 550px;
        }

        .program-features-training {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            margin-bottom: 40px;
            animation: slideInLeft 1s ease-out 0.8s both;
        }

        .feature-item-training {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.6));
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 16px;
            color: #e2e8f0;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
        }

        .feature-item-training::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .feature-item-training:hover {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(30, 41, 59, 0.9));
            border-color: rgba(59, 130, 246, 0.6);
            transform: translateY(-3px) translateX(6px);
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
        }

        .feature-item-training:hover::before {
            left: 100%;
        }

        .feature-icon-training {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0ea5e9, #3b82f6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
            transition: all 0.3s ease;
        }

        .feature-item-training:hover .feature-icon {
            transform: scale(1.1) rotate(8deg);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
        }

        .action-buttons-training {
            display: flex;
            gap: 20px;
            align-items: center;
            animation: slideInLeft 1s ease-out 1s both;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0ea5e9, #3b82f6, #1d4ed8);
            color: white;
            box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 45px rgba(59, 130, 246, 0.6);
            background: linear-gradient(135deg, #0284c7, #2563eb, #1e40af);
        }

        .btn-secondary {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(51, 65, 85, 0.8));
            color: #ffffff;
            border: 2px solid rgba(59, 130, 246, 0.4);
            backdrop-filter: blur(20px);
        }

        .btn-secondary:hover {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(30, 41, 59, 0.95));
            border-color: rgba(59, 130, 246, 0.7);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }

        .visual-section-training {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        .visual-section-training .program-tag-training {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(34, 211, 238, 0.15));
            border: 2px solid rgba(6, 182, 212, 0.4);
            padding: 10px 20px;
            border-radius: 40px;
            color: #67e8f9;
            font-size: 14px;
            font-weight: 700;
            backdrop-filter: blur(10px);
            box-shadow: 0 6px 20px rgba(6, 182, 212, 0.2);
            animation: slideInRight 1s ease-out 0.3s both;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .visual-section-training .program-tag-training::before {
            content: '🚀';
            font-size: 16px;
            animation: rocket 3s ease-in-out infinite;
        }

        @keyframes rocket {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-4px) rotate(4deg); }
        }

        .learning-showcase-training {
            position: relative;
            width: 100%;
            max-width: 520px;
            height: 400px;
            background: linear-gradient(145deg, 
                rgba(30, 41, 59, 0.95), 
                rgba(51, 65, 85, 0.9), 
                rgba(30, 64, 175, 0.1)
            );
            border-radius: 24px;
            border: 2px solid rgba(59, 130, 246, 0.3);
            backdrop-filter: blur(25px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            animation: slideInRight 1s ease-out 0.5s both;
            padding: 30px;
            box-shadow: 
                0 20px 45px rgba(59, 130, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .learning-showcase-training::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg at 50% 50%,
                transparent 0deg,
                rgba(59, 130, 246, 0.1) 60deg,
                transparent 120deg,
                rgba(14, 165, 233, 0.1) 180deg,
                transparent 240deg,
                rgba(59, 130, 246, 0.1) 300deg,
                transparent 360deg
            );
            animation: rotate360 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotate360 {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .learning-paths-training {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            width: 100%;
            z-index: 2;
            position: relative;
        }

        .path-item-training {
            background: linear-gradient(145deg, 
                rgba(59, 130, 246, 0.15), 
                rgba(30, 41, 59, 0.9),
                rgba(14, 165, 233, 0.1)
            );
            border-radius: 18px;
            padding: 20px 16px;
            border: 1px solid rgba(59, 130, 246, 0.4);
            backdrop-filter: blur(20px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
            animation: pathSlideIn 0.8s ease-out both;
            position: relative;
            overflow: hidden;
        }

        .path-item-training::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #0ea5e9, #3b82f6, #0ea5e9);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .path-item-training:nth-child(1) { animation-delay: 0.7s; }
        .path-item-training:nth-child(2) { animation-delay: 0.8s; }
        .path-item-training:nth-child(3) { animation-delay: 0.9s; }
        .path-item-training:nth-child(4) { animation-delay: 1.0s; }

        .path-item-training:hover {
            transform: translateY(-12px) scale(1.05);
            background: linear-gradient(145deg, 
                rgba(59, 130, 246, 0.3), 
                rgba(30, 41, 59, 0.95),
                rgba(14, 165, 233, 0.2)
            );
            border-color: rgba(59, 130, 246, 0.7);
            box-shadow: 
                0 18px 35px rgba(59, 130, 246, 0.3),
                0 0 60px rgba(59, 130, 246, 0.1);
        }

        .path-item-training:hover::before {
            transform: scaleX(1);
        }

        .path-icon-training {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #f59e0b, #f97316, #dc2626);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            box-shadow: 
                0 8px 20px rgba(245, 158, 11, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
            position: relative;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
            font-weight: 900;
        }

        .path-icon-training::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, #f59e0b, #f97316, #dc2626);
            border-radius: 18px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .path-item-training:hover .path-icon {
            transform: scale(1.1) rotate(12deg);
            background: linear-gradient(135deg, #fbbf24, #fb923c, #ef4444);
            box-shadow: 
                0 14px 30px rgba(245, 158, 11, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        }

        .path-item-training:hover .path-icon::after {
            opacity: 1;
        }

        .path-name-training {
            font-size: 14px;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        .floating-particles-training {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .particle-training {
            position: absolute;
            width: 3px;
            height: 3px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.8), transparent);
            border-radius: 50%;
            animation: floatParticles 12s ease-in-out infinite;
        }

        .particle-training:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 10s;
        }

        .particle-training:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 3s;
            animation-duration: 14s;
        }

        .particle-training:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 6s;
            animation-duration: 12s;
        }

        .particle-training:nth-child(4) {
            top: 40%;
            right: 30%;
            animation-delay: 9s;
            animation-duration: 16s;
        }

        .particle-training:nth-child(5) {
            bottom: 15%;
            right: 8%;
            animation-delay: 2s;
            animation-duration: 11s;
        }

        .particle-training:nth-child(6) {
            top: 75%;
            left: 35%;
            animation-delay: 5s;
            animation-duration: 13s;
        }

        @keyframes floatParticles {
            0%, 100% {
                transform: translateY(0px) translateX(0px) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-25px) translateX(15px) scale(1.1);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-40px) translateX(-12px) scale(1.3);
                opacity: 1;
            }
            75% {
                transform: translateY(-20px) translateX(-25px) scale(1.05);
                opacity: 0.5;
            }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes pathSlideIn {
            from { opacity: 0; transform: translateY(30px) scale(0.85); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes pulseGlow {
            0%, 100% { 
                opacity: 0.6; 
                box-shadow: 0 0 4px rgba(59, 130, 246, 0.3);
            }
            50% { 
                opacity: 1; 
                box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
            }
        }


    /* Banner Style Ends */
  
    .about-training-mention {
      background-color: #f9f9f9;
      padding: 40px 20px;
      margin: 40px auto;
      max-width: 900px;
      border-left: 5px solid #2b7a78; /* Accent color */
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .about-training-mention h3 {
      font-size: 24px;
      color: #17252a;
      margin-bottom: 10px;
    }

    .about-training-mention p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
    }

    .about-training-mention a {
      color: #0077cc;
      text-decoration: none;
      font-weight: 500;
    }

    .about-training-mention a:hover {
      text-decoration: underline;
    }
    .internship-programs {
      padding: 60px 20px;
      background: #f6f9fc;
      text-align: center;
    }

    .internship-programs h2 {
      font-size: 32px;
      color: #003b5c;
      margin-bottom: 10px;
    }

    .section-intro {
      font-size: 16px;
      color: #555;
      max-width: 700px;
      margin: 0 auto 40px;
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .program-card {
      background: #fff;
      border: 1px solid #ddd;
      border-left: 4px solid #2b7a78;
      padding: 25px 20px;
      border-radius: 10px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .program-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .program-card h3 {
      font-size: 20px;
      color: #1d3557;
      margin-bottom: 10px;
    }

    .program-card p {
      font-size: 15px;
      color: #444;
      line-height: 1.6;
    }

    .btn-gradient {
      display: inline-block;
      padding: 10px 20px;
      background: linear-gradient(135deg, #2b7a78, #0077cc);
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .btn-gradient:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

  /* Training Section style starts */

/* About Page Style Starts */

/* Product Page Style Starts */

    /* Banner Page Style Starts */
      .product-banner-product {
            background: linear-gradient(135deg, #0a0f1c 0%, #1e293b 30%, #334155 60%, #475569 100%);
            position: relative;
            padding: 80px 25px;
            overflow: hidden;
        }

        .product-banner-product::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.4) 0%, transparent 25%),
                radial-gradient(circle at 85% 75%, rgba(147, 197, 253, 0.3) 0%, transparent 25%),
                radial-gradient(circle at 45% 10%, rgba(16, 185, 129, 0.2) 0%, transparent 20%),
                linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.05) 50%, transparent 100%);
            pointer-events: none;
            animation: backgroundShift 8s ease-in-out infinite alternate;
        }

        .product-banner-product::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
            animation: patternMove 20s linear infinite;
        }

        @keyframes backgroundShift {
            0% {
                background: 
                    radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.4) 0%, transparent 25%),
                    radial-gradient(circle at 85% 75%, rgba(147, 197, 253, 0.3) 0%, transparent 25%),
                    radial-gradient(circle at 45% 10%, rgba(16, 185, 129, 0.2) 0%, transparent 20%),
                    linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.05) 50%, transparent 100%);
            }
            100% {
                background: 
                    radial-gradient(circle at 25% 35%, rgba(147, 197, 253, 0.4) 0%, transparent 30%),
                    radial-gradient(circle at 75% 65%, rgba(59, 130, 246, 0.3) 0%, transparent 25%),
                    radial-gradient(circle at 55% 20%, rgba(16, 185, 129, 0.25) 0%, transparent 22%),
                    linear-gradient(135deg, transparent 0%, rgba(147, 197, 253, 0.08) 50%, transparent 100%);
            }
        }

        @keyframes patternMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        .container-product {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .banner-grid-product {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            min-height: 60vh;
        }

        .content-section-product {
            max-width: 580px;
        }

        .breadcrumb-product {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
            font-size: 14px;
            padding: 12px 20px;
            background: rgba(59, 130, 246, 0.08);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            width: fit-content;
            animation: slideInUp 0.8s ease-out;
        }

        .breadcrumb-product a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 4px 8px;
            border-radius: 6px;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .breadcrumb-product a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .breadcrumb-product a:hover {
            color: #3b82f6;
            background: rgba(59, 130, 246, 0.1);
            transform: translateY(-1px);
        }

        .breadcrumb-product a:hover::before {
            left: 100%;
        }

        .breadcrumb-separator-product {
            color: #64748b;
            font-weight: 600;
            animation: pulse 2s infinite;
        }

        .breadcrumb-product span:last-child {
            color: #e2e8f0;
            font-weight: 600;
            background: rgba(59, 130, 246, 0.15);
            padding: 4px 12px;
            border-radius: 8px;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .banner-title-product {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: #ffffff;
            letter-spacing: -0.02em;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .banner-subtitle-product {
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 40px;
            line-height: 1.6;
            font-weight: 400;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .feature-list-product {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 48px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .feature-item-product {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 50px;
            color: #e2e8f0;
            font-size: 14px;
            font-weight: 500;
        }

        .feature-icon-product {
            width: 16px;
            height: 16px;
            background: #3b82f6;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .action-buttons-product {
            display: flex;
            gap: 16px;
            align-items: center;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: #e2e8f0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .visual-section-product {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .product-showcase-product {
            position: relative;
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 32px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            animation: scaleIn 1s ease-out 0.5s both;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .product-grid-product {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 40px;
            width: 100%;
        }

        .product-item-product {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.05));
            border-radius: 20px;
            padding: 24px 16px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            backdrop-filter: blur(15px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            min-height: 120px;
            position: relative;
            overflow: hidden;
            animation: slideInStagger 0.8s ease-out both;
        }

        .product-item-product:nth-child(1) { animation-delay: 0.7s; }
        .product-item-product:nth-child(2) { animation-delay: 0.8s; }
        .product-item-product:nth-child(3) { animation-delay: 0.9s; }
        .product-item-product:nth-child(4) { animation-delay: 1.0s; }
        .product-item-product:nth-child(5) { animation-delay: 1.1s; }
        .product-item-product:nth-child(6) { animation-delay: 1.2s; }

        @keyframes slideInStagger {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .product-item-product::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-item-product:hover {
            transform: translateY(-12px) scale(1.05);
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 197, 253, 0.15));
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
        }

        .product-item-product:hover::before {
            opacity: 1;
        }

        .product-icon-product {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
        }

        .product-item-product:hover .product-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
        }

        .product-name-product {
            font-size: 14px;
            color: #e2e8f0;
            text-align: center;
            font-weight: 600;
            letter-spacing: 0.025em;
        }

        .floating-elements-product {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .float-dot-product {
            position: absolute;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .float-dot-product:nth-child(1) { 
            top: 15%; 
            left: 8%; 
            width: 12px;
            height: 12px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent);
            animation-delay: 0s; 
        }

        .float-dot-product:nth-child(2) { 
            top: 55%; 
            right: 12%; 
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, rgba(147, 197, 253, 0.5), transparent);
            animation-delay: 2s; 
        }

        .float-dot-product:nth-child(3) { 
            bottom: 25%; 
            left: 15%; 
            width: 10px;
            height: 10px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent);
            animation-delay: 4s; 
        }

        .float-dot-product:nth-child(4) { 
            top: 30%; 
            right: 25%; 
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
            animation-delay: 1s; 
        }

        .float-dot-product:nth-child(5) { 
            bottom: 45%; 
            right: 8%; 
            width: 14px;
            height: 14px;
            background: radial-gradient(circle, rgba(147, 197, 253, 0.4), transparent);
            animation-delay: 3s; 
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) scale(1); 
                opacity: 0.4; 
            }
            25% { 
                transform: translateY(-15px) translateX(10px) scale(1.1); 
                opacity: 0.7; 
            }
            50% { 
                transform: translateY(-25px) translateX(-5px) scale(1.2); 
                opacity: 0.9; 
            }
            75% { 
                transform: translateY(-10px) translateX(-15px) scale(1.1); 
                opacity: 0.6; 
            }
        }

    /* Banner Page style Ends */

    /* Animated Background Style Starts*/

        .bg-animation-productpro {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #ffffff 0%, #dbeafe 25%, #bfdbfe 50%, #93c5fd 75%, #ffffff 100%);
            background-size: 400% 400%;
            animation: gradientFlow 20s ease infinite;
        }

        .bg-animation-productpro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(147, 197, 253, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(219, 234, 254, 0.25) 0%, transparent 50%);
            animation: floatPattern 25s ease-in-out infinite;
        }

        .bg-animation-productpro::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="rgba(59,130,246,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
            animation: slideHex 30s linear infinite;
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes floatPattern {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(1deg); }
            66% { transform: translateY(15px) rotate(-1deg); }
        }

        @keyframes slideHex {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(50px) translateY(43.4px); }
        }

      /* Animated Background Style Ends*/

      /* Overview Section Style Starts */
          .categories-overview-alt {
            padding: 12px 0px 38px 0px;
            background: linear-gradient(to bottom, #f4f7fb, #e8f0ff);
            font-family: 'Poppins', sans-serif;
          }

          .section-title-alt {
            text-align: center;
            font-size: 32px;
            margin-bottom: 50px;
            color: #003366;
            font-weight: 700;
            position: relative;
          }

          .categories-grid-alt {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: auto;
          }

          .category-card-alt {
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid #cce0f7;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
          }

          .category-card-alt:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 30px rgba(0, 123, 255, 0.2);
          }

          .category-icon-alt {
            font-size: 36px;
            color: #0066cc;
            margin-bottom: 20px;
          }

          .category-card-alt h3 {
            font-size: 20px;
            font-weight: 600;
            color: #002244;
            margin-bottom: 10px;
          }

          .category-card-alt p {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
          }

      /* Overview Section style Ends */

            /* Stats Style Starts */

            .modern-stats {
                background: linear-gradient(135deg, #f4faff, #eaf6ff);
                padding: 60px 20px;
                font-family: 'Poppins', sans-serif;
            }

            .stats-wrapper {
                display: flex;
                justify-content: center;
                gap: 30px;
                flex-wrap: wrap;
                max-width: 1170px;
                margin: auto;
            }

            .stat-box {
                background: #ffffff;
                padding: 25px 20px;
                border-radius: 15px;
                text-align: center;
                width: 230px;
                box-shadow: 0 5px 20px rgba(0,0,0,0.08);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .stat-box:hover {
                transform: translateY(-8px);
                box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            }

            .stat-icon {
                background: #e3f2fd;
                color: #007bff;
                font-size: 2rem;
                border-radius: 50%;
                padding: 18px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 15px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            }

            .stat-box h3 {
                font-size: 2rem;
                font-weight: bold;
                margin: 0;
                color: #007bff;
            }

            .stat-box p {
                font-size: 1rem;
                color: #555;
                margin-top: 5px;
            }

      /* Stats Style Ends */

      /* Call To Product Enquiry Style Starts */

        .product-cta {
          background: linear-gradient(90deg, #050021, #3b469e, #56ccf2);
          color: white;
          text-align: center;
          padding: 60px 20px;
          font-family: 'Poppins', sans-serif;
        }

        .product-cta h2 {
          font-size: 2.5rem;
          margin-bottom: 15px;
          font-weight: 700;
        }

        .product-cta h2 span {
          color: #7af0d8;
        }

        .product-cta p {
          font-size: 1.1rem;
          margin-bottom: 30px;
        }

        .cta-buttons {
          display: flex;
          justify-content: center;
          gap: 20px;
          flex-wrap: wrap;
        }

        .cta-buttons a {
          text-decoration: none;
          font-size: 1rem;
          padding: 14px 28px;
          border-radius: 30px;
          font-weight: 600;
          display: flex;
          align-items: center;
          gap: 10px;
          transition: 0.3s;
        }

        /* Button Styles */
        .whatsapp-btn {
          background: #ffffff;
          color: #25d366;
          border: 2px solid #25d366;
        }

        .whatsapp-btn:hover {
          background: #25d366;
          color: white;
        }

        .call-btn {
          background: #ffffff;
          color: #1a1a1a;
          border: 2px solid #1a1a1a;
        }

        .call-btn:hover {
          background: #1a1a1a;
          color: white;
        }

        .download-btn {
          background: #ffffff;
          color: #007bff;
          border: 2px solid #007bff;
        }

        .download-btn:hover {
          background: #007bff;
          color: white;
        }

      /* Call To Product Enquiry Style Ends */


/* Product Page Style Ends */

/* Training Page Style starts */

/* Intro style Starts */

        .section-internship {
          padding: 40px 20px;
          text-align: center;
          position: relative;
          /* background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQv7LM2s5emuPeU0mi8fideLakCkhDB28ndLM913AEFxf5vcWAz3Y-ygMacZ-K5bOlUROI&usqp=CAU'); */

          background: linear-gradient(to bottom right, rgba(10, 50, 120, 0.75), rgba(10, 50, 120, 0.75)),
                      url('assets/images/internshipintro11.png');
          background-size: cover;
          background-position: center;
          color: white;
          overflow: hidden;
        }

        .fade-in {
          opacity: 0;
          transform: translateY(40px);
          transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
          opacity: 1;
          transform: translateY(0);
        }

        .section-internship h1 {
          font-size: 34px;
          font-weight: 700;
          margin-bottom: 20px;
        }

        .section-internship p {
          font-size: 16px;
          max-width: 800px;
          margin: 0 auto 50px;
          line-height: 1.6;
          color: #dce6f8;
        }

        .card-container {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 30px;
        }

        .card-internship {
          background: rgba(255, 255, 255, 0.96);
          border-radius: 20px;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
          padding: 30px 25px;
          width: 300px;
          text-align: left;
          transition: transform 0.3s ease;
          color: #1a2b4f;
        }

        .card-internship:hover {
          transform: translateY(-6px);
        }

        .card-internship h3 {
          font-size: 18px;
          font-weight: 600;
          margin-bottom: 10px;
          display: flex;
          align-items: center;
          color: #144fc6;
        }

        .card-internship h3 i {
          margin-right: 10px;
          color: #3a77ff;
          font-size: 20px;
        }

        .card-internship p {
          font-size: 14px;
          color: #4a5e91;
        }

    /* Intro style Ends */

    /* Roadmap or timeline style starts */

      .internship-roadmaps {
        padding: 0px 20px 14px 0px;
        background: linear-gradient(to bottom, #ffffff, #f4f7fc);
        text-align: center;
        font-family: 'Poppins', sans-serif;
      }

      .internship-roadmaps h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: #222831; /* Dark gray with slight blue tone for elegance */
      }


      .internship-roadmaps .subtext {
        font-size: 1.05rem;
        color: #5c5f66; /* Soft slate gray, readable and modern */
        margin-bottom: 50px;
      }

      .roadmap-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 40px;
        justify-content: center;
      }

      .roadmap-card {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 20px;
        padding: 30px 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
        backdrop-filter: blur(4px);
        position: relative;
        overflow: hidden;
      }

      .roadmap-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      }

      .roadmap-card .icon2 {
        font-size: 2.8rem;
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f0f0f0;
      }

      .icon2 .blue { background: #e0efff; color: #2f80ed; }
      .icon2 .green { background: #d4f8e8; color: #27ae60; }
      .icon2 .orange { background: #fff3e0; color: #f39c12; }
      .icon2 .red { background: #ffe2e2; color: #e74c3c; }


      .roadmap-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #2d4059; /* Slightly deeper blue for headers */
      }

      .roadmap-card p {
        font-size: 0.95rem;
        color: #444b54; /* Neutral dark gray for paragraph text */
        min-height: 48px;
        margin-bottom: 18px;
        line-height: 1.6;
      }

      .download-btnbt {
        display: inline-block;
        background: #3a4697;
        color: #dadada;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: background 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      }

      .download-btnbt:hover {
        background: #6678ed;
      }

    /* Roadmap or timeline style ends */

        /* Internship Detail Starts */

         /* Modal Styles */
          
          .internsmodal {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 999;
          }

          .internsmodal-content {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 600px;
            position: relative;
          }

          .internsmodal-content h3 {
            margin-top: 0;
            color: #4d007a;
          }

          .internsmodal-content input, .internsmodal-content select {
            width: 100%;
            margin: 10px 0;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
          }

          .internsmodal-content button[type="submit"] {
            background: #4d007a;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 10px;
            margin-top: 10px;
            cursor: pointer;
          }

          .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #888;
          }
    /* Internship Detail Starts */

    /* Gallery Section Style Starts */

      .gallery-section {
        position: relative;
        padding: 60px 20px;
        background: linear-gradient(135deg, #020024, #3a3a98, #00d4ff);
        overflow: hidden;
        z-index: 1;
      }

      .section-subtitle-gallery {
        text-align: center;
        font-size: 18px;
        color: #00ffd5;
        margin-bottom: 10px;
        animation: fadeInUp 0.8s ease;
      }

      .section-title-gallery {
        text-align: center;
        font-size: 40px;
        font-weight: 700;
        color: #009bff;;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
        animation: fadeInUp 1s ease;
      }

      /* Blob Animation */
      .blob {
        position: absolute;
        top: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle at 50% 50%, #6db2ff 0%, #a8d0ff 100%);
        border-radius: 50%;
        opacity: 0.3;
        animation: blobMotion 12s infinite ease-in-out;
        z-index: 0;
      }

      @keyframes blobMotion {
        0%   { transform: scale(1) translate(0, 0); }
        50%  { transform: scale(1.2) translate(30px, 20px); }
        100% { transform: scale(1) translate(0, 0); }
      }

      /* Gallery Grid */
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        z-index: 2;
        position: relative;
      }

      .gallery-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeInUp 1.2s ease;
      }

      .gallery-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      }

      .gallery-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
      }

      .caption {
        padding: 15px;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        text-align: center;
      }

      /* Animations */
      @keyframes fadeInUp {
        0%   { opacity: 0; transform: translateY(20px); }
        100% { opacity: 1; transform: translateY(0); }
      }

    /* Gallery Section Style Ends */

    /* Internship benefit style Starts */

        /* Section Title */
        .section-title-internship {
          text-align: center;
          font-size: 2.2rem;
          font-weight: 700;
          color: #4a63f2;
          margin-bottom: 40px;
        }

        /* Grid Layout */
        .benefits-grid {
          display: grid;
          gap: 20px;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          max-width: 1200px;
          margin: 0 auto;
          margin-bottom: 25px;
        }

        /* Card Style */
        .benefit-card {
          background: white;
          padding: 30px 20px;
          border-radius: 16px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          text-align: center;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefit-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }

        /* Icon Style */
        .icon-benefit {
          font-size: 2.5rem;
          margin-bottom: 15px;
        }

        /* Text */
        .benefit-card p {
          font-size: 1.1rem;
          line-height: 1.4;
          color: #333;
        }

    /* Internship benefit style Ends */

        /* FAQ Style Starts */

      .faq-container {
        padding: 20px 20px;
        max-width: 800px;
        margin: auto;
        font-family: 'Segoe UI', sans-serif;
      }

      .faq-heading {
        text-align: center;
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 40px;
        font-weight: bold;
      }

      .faq-box {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .faq-item {
        border: 1px solid #d0d7e2;
        border-radius: 12px;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: all 0.3s ease;
      }

      .faq-toggle {
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        padding: 18px 24px;
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .faq-toggle .chevron {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
      }

      .faq-item.active .chevron {
        transform: rotate(180deg);
      }

      .faq-content {
        max-height: 0;
        overflow: hidden;
        padding: 0 24px;
        color: #4a4a4a;
        font-size: 0.95rem;
        transition: max-height 0.4s ease, padding 0.3s ease;
      }

      .faq-item.active .faq-content {
        max-height: 200px;
        padding-bottom: 18px;
      }

    /* FAQ Style Ends */

    /* Call to Action Style Starts */

      .cta1-section {
        background: linear-gradient(135deg, #020024, #3a3a98, #00d4ff);
        color: #fff;
        padding: 60px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta1-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }
      .cta1-section h2 span {
        color: #00ffd5;
      }
      .cta3-buttons {
        display: inline-block;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
      }
      .cta3-btn {
        background: #fff;
        color: #111;
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
      }
      .cta3-btn:hover {
        background-color: #00ffd5;
        color: #111;
      }
      .cta3-btn i {
        font-size: 1.2rem;
      }

    /* Call to Action Style Ends */

/* Training Page Style Ends */

/* Contact Page Style Starts */

    /* Banner Section Style Starts */
      
              .contact-banner-contact {
            position: relative;
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #4facfe 70%, #00f2fe 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .banner-background-contact {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .floating-elements-contact {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-icon-contact {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .floating-icon-contact svg {
            width: 40px;
            height: 40px;
            fill: rgba(255, 255, 255, 0.8);
        }

        .icon-1-contact {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .icon-2-contact {
            top: 25%;
            right: 15%;
            animation-delay: 2s;
        }

        .icon-3-contact {
            bottom: 30%;
            left: 8%;
            animation-delay: 4s;
        }

        .icon-4-contact {
            bottom: 20%;
            right: 12%;
            animation-delay: 1s;
        }

        .icon-5-contact {
            top: 60%;
            right: 25%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(2deg);
            }
            50% {
                transform: translateY(-15px) rotate(-1deg);
            }
            75% {
                transform: translateY(-25px) rotate(1deg);
            }
        }

        .banner-content-contact {
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
            z-index: 10;
            position: relative;
            color: white;
        }

        .banner-title-contact {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #b3e5fc 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            animation: titleSlide 1s ease-out;
        }

        .banner-subtitle-contact {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            font-weight: 400;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            animation: subtitleSlide 1s ease-out 0.3s both;
        }

        .banner-description-contact {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: descriptionSlide 1s ease-out 0.6s both;
        }

        .cta-button-contact {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
            color: white;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            animation: buttonSlide 1s ease-out 0.9s both;
            position: relative;
            overflow: hidden;
        }

        .cta-button-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .cta-button-contact:hover::before {
            left: 100%;
        }

        .cta-button-contact:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .cta-button-contact svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        @keyframes titleSlide {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes subtitleSlide {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes descriptionSlide {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes buttonSlide {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

    /* Banner Section Style Ends */

    /* Contact Style Stats */

      .contact-sectioncont {
        background: #eaf3fb;
        padding: 2rem 0rem 2rem 0rem;
        /* text-align: center; */
      }

      .contact-wrapper-cost {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
      }

      .officecoul {
        background: #fff;
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        width: 100%;
        max-width: 500px;
      }

      .officecoul h2 {
        font-size: 1.5rem;
        color: #003366;
        margin-bottom: 1rem;
      }

      .officecoul ul {
        list-style: none;
        padding: 0;
        margin-bottom: 1rem;
        text-align: left;
      }

      .officecoul ul li {
        margin-bottom: 10px;
        font-size: 1rem;
      }

      .officecoul ul li i {
        margin-right: 10px;
        color: #007acc;
        width: 20px;
      }

      .officecoul a {
        color: #004b99;
        text-decoration: none;
      }
      
      .officecoul iframe {
        width: 100%;
        height: 200px;
        border: 0;
        border-radius: 10px;
        margin-top: 1rem;
      }
 
      .contact-socials {
        margin-top: 2rem;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
      }

      .contact-socials .iconi {
        width: 50px;
        height: 50px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #fff;
        font-size: 20px;
        background-color: #999;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
      }

      .contact-socials .icon:hover {
        transform: scale(1.2) rotate(5deg);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
      }

      .iconi.whatsapp { background-color: #25d366; }
      .iconi.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
      .iconi.youtube { background-color: #FF0000; }
      .iconi.linkedin { background-color: #0077b5; }

    /* Contact Style Ends */

  /* Send a Message Section Style Starts */

      .contact-form-section {
        padding: 5px 20px;
        background: #f6fbff;
        border-radius: 10px;
        max-width: 900px;
        margin: 0 auto;
      }

      .contact-form-section h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #1b3b66;
      }

      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }

      .form-group {
        display: flex;
        flex-direction: column;
      }

      .form-group label {
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
      }

      .form-group input,
      .form-group select,
      .form-group textarea {
        padding: 10px 14px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
        background: #fff;
      }

      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: #497df0;
        box-shadow: 0 0 0 2px rgba(73, 125, 240, 0.2);
      }

      .full-width {
        grid-column: 1 / -1;
      }

      .submit-btn {
        padding: 12px 20px;
        background: #497df0;
        color: white;
        font-size: 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s ease;
        width: fit-content;
        align-self: center;
      }

      .submit-btn:hover {
        background: #2b5edb;
      }

  /* Send a Message Section Style Ends */

/* Contact Page Style Ends */

/* Calibration Page Style Starts */

  /* Banner Section Style Starts */
/*Service Banner Style Starts */
        .service-banner-ser {
            position: relative;
            height: 60vh;
            min-height: 400px;
            background: linear-gradient(135deg, #87ceeb 0%, #1a82e8 50%, #046e8a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: #2c5282;
        }

        .banner-content-ser {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            width: 100%;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .banner-text-ser {
            flex: 1;
        }

        .banner-visual-ser {
            flex: 0 0 250px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .service-icon-container {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(135, 206, 235, 0.4) 0%, rgba(173, 216, 230, 0.3) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(135, 206, 235, 0.5);
            box-shadow: 
                0 8px 25px rgba(135, 206, 235, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-icon-container:hover {
            border: 2px solid rgba(135, 206, 235, 0.8);
            box-shadow: 
                0 12px 35px rgba(135, 206, 235, 0.5),
                0 0 0 4px rgba(135, 206, 235, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            transform: translateY(-5px);
        }

        .main-service-icon-ser {
            font-size: 3rem;
            color: #2c5282;
            transition: transform 0.3s ease;
        }

        /* Fixed Breadcrumb */
        .breadcrumb-ser {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .breadcrumb-ser a {
            color: rgba(44, 82, 130, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-ser a:hover {
            color: #2c5282;
        }

        .breadcrumb-ser i {
            font-size: 0.7rem;
            color: rgba(44, 82, 130, 0.6);
        }

        .breadcrumb-ser span {
            color: #2c5282;
            font-weight: 500;
        }

        .banner-title-ser {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #2c5282;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .banner-subtitle-ser {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 400;
            opacity: 0.9;
            line-height: 1.7;
            color: #333;
            letter-spacing: 0.5px;
            margin-bottom: 2rem;
        }

        /* Highlighted keywords */
        .highlight-blue-ser {
            color: #4a90e2;
            font-weight: 600;
            background: linear-gradient(50deg, #f0f2f4, #eff0f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* CTA Button */
        .cta-button-ser {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #4a90e2 0%, #2c5282 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

        .cta-button-ser:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 8px 25px rgba(74, 144, 226, 0.4),
                0 0 0 3px rgba(74, 144, 226, 0.2);
            background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
        }

        .cta-button-ser i {
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .cta-button-ser:hover i {
            transform: translateX(3px);
        }

                /* Simple fade-in animation */
        .banner-content-ser > * {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .banner-text-ser { animation-delay: 0.2s; }
        .banner-visual-ser { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
  /* Banner Section Style Ends */

  /* Calibration Page Style Starts */

  #calibration-services {
      background: linear-gradient(to bottom, #f0f4f8, #ffffff);
      padding: 5rem 1rem;
    }

  #calibration-services h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 3rem;
    position: relative;
  }

  .biomedical-calibration-section {
    padding: 60px 20px;
    transition: background 0.3s ease-in-out;
  }

  .section-bg1 {
    background: linear-gradient(to right, #e0f7ff, #f4fcff);
  }

  .section-bg1-alt {
    background: linear-gradient(to left, #fff8f0, #fdf5e6);
  }

  .calibration-containerit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
  }

  .calibration-imgtoo img {
    width: 100%;
    max-width: 350px;
    height: auto;
    transition: transform 0.3s ease;
  }

  .calibration-imgtoo img:hover {
    transform: scale(1.05);
  }

  .calibration-texttex {
    flex: 1 1 500px;
  }

  .calibration-texttex h2 {
    font-size: 28px;
    color: #1c3d5a;
    margin-bottom: 15px;
  }

  .calibration-texttex p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
  }

  .view-more-btn22 {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: white;
    background-color: #0077b6;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 119, 182, 0.2);
  }

  .view-more-btn22:hover {
    background-color: #005f8e;
    transform: translateY(-2px);
  }

  /* Style for Why choose calibration */

    .why-aspin-calibrationcal {
      background: linear-gradient(to right, #f4f7fb, #e9f0f9);
      padding: 25px 20px;
      font-family: 'Poppins', sans-serif;
    }

    .why-aspin-containercolu {
      max-width: 1200px;
      margin: auto;
    }

    .reasons-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .why-cardcar {
      display: flex;
      align-items: center;
      background: #ffffff;
      padding: 20px 30px;
      border-radius: 16px;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
      margin-bottom: 24px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .why-cardcar:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .why-icon {
      width: 130px;
      height: 110px;
      object-fit: cover;
      border-radius: 14px;
      margin-right: 24px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .why-cardcar:hover .why-icon {
      transform: scale(1.05);
    }

    .why-texttes h3 {
      font-size: 1.2rem;
      color: #19335C;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .why-texttes p {
      font-size: 0.96rem;
      color: #444;
      line-height: 1.5;
    }

  /* Style for Why choose calibration */

  /* Timeline Style Starts */

    .calibration-timeline {
      background: #f9fbfd;
      padding: 60px 20px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .calibration-timeline .section-title {
      font-size: 28px;
      font-weight: 600;
      color: #1a237e;
      margin-bottom: 40px;
    }

    .timeline-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .timeline-step {
      background: white;
      padding: 30px 20px;
      border-radius: 16px;
      width: 220px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .timeline-step:hover {
      transform: translateY(-5px);
    }
    .sectio-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 60px;
      color: #1a3d6d;
      position: relative;
    }
    .icon-boxwe {
      font-size: 32px;
      color: #0066cc;
      margin-bottom: 15px;
    }

    .timeline-step h3 {
      font-size: 18px;
      font-weight: 600;
      color: #222;
      margin-bottom: 10px;
    }

    .timeline-step p {
      font-size: 15px;
      color: #555;
    }

    .calibration-timeline {
      background: #f9fbfd;
      padding: 21px 0px 43px 0px;
      text-align: center;
      border-radius: 12px;
    }

    .sectio-title {
      font-size: 28px;
      font-weight: 700;
      color: #1a237e;
      margin-bottom: 30px;
    }

    .sectio-subtitle {
      font-size: 16px;
      color: #444;
      margin-bottom: 50px;
      max-width: 700px;
      margin-inline: auto;
    }

    .timeline-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      position: relative;
    }

    .timeline-step {
      background: white;
      padding: 25px 20px;
      border-radius: 16px;
      width: 220px;
      margin: 0 15px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
      z-index: 2;
      position: relative;
      transition: transform 0.3s ease;
    }

    .timeline-step:hover {
      transform: translateY(-6px);
    }

    .icon-boxwe {
      font-size: 32px;
      color: #0066cc;
      margin-bottom: 15px;
    }

    .timeline-step h3 {
      font-size: 18px;
      font-weight: 600;
      color: #222;
      margin-bottom: 10px;
    }

    .timeline-step p {
      font-size: 15px;
      color: #555;
    }

  /* Timeline Style Ends */

  /* Style for CTA Starts */

    .cta-request-sectionsec {
      background: linear-gradient(135deg, #f4f8fb, #e9f1f7);
      padding: 60px 20px;
    }

    .cta-request-containersec {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      align-items: flex-start;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      padding: 40px;
    }

    .cta-request-textsec {
      flex: 1 1 45%;
    }

    .cta-request-textsec h2 {
      font-size: 32px;
      color: #173b6c;
      margin-bottom: 15px;
    }

    .cta-request-textsec p {
      font-size: 16px;
      color: #444;
      margin-bottom: 20px;
    }

    .cta-request-textsec ul {
      list-style: none;
      padding: 0;
    }

    .cta-request-textsec li {
      margin-bottom: 10px;
      font-size: 15px;
      color: #333;
    }

    .cta-request-textsec i {
      color: #00bfa6;
      margin-right: 8px;
    }

    .cta-request-formsec {
      flex: 1 1 45%;
    }

    .cta-request-formsec form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .cta-request-formsec input,
    .cta-request-formsec textarea {
      padding: 12px 15px;
      font-size: 15px;
      border: 1px solid #ccc;
      border-radius: 10px;
      width: 100%;
    }

    .cta-request-formsec textarea {
      min-height: 100px;
      resize: vertical;
    }

    .submit-btnsec {
      background: #173b6c;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 10px;
      cursor: pointer;
      transition: 0.3s;
    }

    .submit-btnsec:hover {
      background: #0d2b52;
    }

  /* Style for CTA Starts */

  /* Floating Request Button for Calibration */

    .floating-request-btn11 {
      position: fixed;
      bottom: 30px;
      left: 30px;
      background: #173b6c;
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      font-size: 16px;
      text-decoration: none;
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .floating-request-btn11:hover {
      background: #0d2b52;
      transform: scale(1.05);
    }

    .floating-request-btn11 i {
      font-size: 18px;
    }

  /* Floating Request Button for Calibration */
 
/* Calibration Page Style Starts */

/* Breadcrumb Style Starts */

.breadcrumb-section {
    background: linear-gradient(to right, #0a335c, #1464a0);
    padding: 12px 0;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.breadcrumb-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 15px;
}

.breadcrumb li {
    color: #fff;
    display: flex;
    align-items: center;
}

.breadcrumb li a {
    color: #f1f1f1;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.breadcrumb li a i {
    margin-right: 6px;
}

.breadcrumb li a:hover {
    color: #ffd700; /* Gold hover effect */
}

.breadcrumb li + li::before {
    content: "›";
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
}

.breadcrumb li.active {
    color: #ffd700; /* Active item gold color */
    font-weight: 500;
}


/* Breadcrumb Style Ends */

/* Style for Medical Device, Textile and Electronic Calibration Starts */

  /* What is Medical Device and Textile,Electronics Calibration Section Style Starts */

    .calibration-section {
      padding: 80px 20px;
      background: #f8fbff;
      font-family: 'Poppins', sans-serif;
    }

    .calibration-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .calibration-image {
      flex: 1 1 400px;
      text-align: center;
    }

    .calibration-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .calibration-content {
      flex: 1 1 500px;
      color: #333;
    }

    .calibration-content h2 {
      font-size: 32px;
      color: #0c4c8a;
      margin-bottom: 20px;
    }

    .calibration-content p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .calibration-content ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .calibration-content li {
      margin-bottom: 10px;
      font-size: 16px;
    }

    .calibration-content li i {
      color: #0c4c8a;
      margin-right: 10px;
    }
    .calibration-section {
      background: linear-gradient(135deg, #f9f9fb 0%, #e6f0ff 100%);
      position: relative;
      padding: 60px 0;
      overflow: hidden;
    }

    .calibration-section::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, #d1e0ff 0%, transparent 70%);
      z-index: 0;
    }

    .calibration-section::after {
      content: "";
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, #d1e0ff 0%, transparent 70%);
      z-index: 0;
    }

    .calibration-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      z-index: 1;
    }

    .calibration-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .calibration-content h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #003366;
    }

    .calibration-content p {
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 15px;
      color: #333;
    }

    .calibration-content ul {
      list-style: none;
      padding: 0;
      margin: 15px 0;
    }

    .calibration-content ul li {
      margin-bottom: 10px;
      font-size: 1rem;
      color: #0056b3;
    }

    .calibration-content ul li i {
      color: #2c82e0;
      margin-right: 8px;
    }

  /* What is Medical Device and Textile,Electronics Calibration Section Style Ends */

  /* Calibration Device Section Style Starts */

    .device-category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .device-card {
      background: #f9fbfd;
      border-radius: 14px;
      padding: 20px;
      border-left: 5px solid #0077b6;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }

    .device-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

    .device-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 12px;
    }

    .device-header img {
      width: 48px;
      height: 48px;
    }

    .device-header h3 {
      font-size: 1.1rem;
      color: #003366;
      margin: 0;
    }

    .device-details {
      margin: 0 0 15px 0;
      padding-left: 18px;
      list-style-type: disc;
      color: #333;
      font-size: 0.95rem;
    }

    .cta-btn {
      display: inline-block;
      background: #0077b6;
      color: #fff;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.3s;
    }

    .cta-btn:hover {
      background: #023e8a;
    }

  /* Calibration Device Section Style Starts */

    .services-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .services-title {
      text-align: center;
      color: #1f45ff;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 3rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 2rem;
    }

    .service-item {
      background: white;
      border-radius: 20px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    }

    .service-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
      width: 64px;
      height: 64px;
      background: #e9f0ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto 1rem;
      color: #306bff;
    }

    .service-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1c1c1c;
      margin-bottom: 0.5rem;
    }

    .service-description {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.5;
    }


        .container-calibration {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .category-section {
            margin-bottom: 4rem;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid #e5e7eb;
            transition: all 0.4s ease;
            margin-top: 2rem;
        }

        .category-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        }

        .category-header {
            display: grid;
            grid-template-columns: 400px 1fr;
            align-items: center;
            gap: 0;
            min-height: 250px;
        }

        .category-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .category-section:hover .category-image img {
            transform: scale(1.1);
        }

        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .laboratory-icon { background: linear-gradient(135deg, rgba(5, 150, 105, 0.9), rgba(16, 185, 129, 0.9)); }
        .diagnostic-icon { background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(239, 68, 68, 0.9)); }
        .critical-icon { background: linear-gradient(135deg, rgba(124, 45, 146, 0.9), rgba(168, 85, 247, 0.9)); }
        .therapeutic-icon { background: linear-gradient(135deg, rgba(234, 88, 12, 0.9), rgba(249, 115, 22, 0.9)); }

        .category-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        .category-info {
            padding: 2.5rem;
        }

        .category-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .category-description {
            font-size: 1.1rem;
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1rem;
            padding: 2rem;
            border-top: 1px solid #f3f4f6;
            background: #fafbfc;
        }

        .equipment-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .equipment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .equipment-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .equipment-card:hover::before {
            transform: scaleY(1);
        }

        .equipment-icon {
            display: none;
        }

        .equipment-card span {
            font-weight: 600;
            color: #374151;
            font-size: 0.95rem;
        }

        .cta-section {
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #1f2937;
            transform: translateY(-2px);
        }

        .btn svg {
            width: 20px;
            height: 20px;
            margin-left: 0.5rem;
        }

        .stats-section {
            background: white;
            padding: 3rem 0;
            border-top: 1px solid #e5e7eb;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #3b82f6;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: #6b7280;
            margin-top: 0.5rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


  /* Calibration Device Section Style Ends */


  /* Need more info and Textile Calbration style starts */

      .download-section {
        background: #f3f7ff;
        padding: 3rem 1.5rem;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        margin: 3rem auto;
      }

      .download-heading {
        font-size: 1.9rem;
        font-weight: 700;
        color: #1f3fff;
        margin-bottom: 1rem;
      }

      .download-text {
        font-size: 1.05rem;
        color: #444;
        margin-bottom: 2rem;
        line-height: 1.6;
      }

      .download-btndown {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #3366ff, #5e8bff);
        color: #fff;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
      }

      .download-btndown .icondown {
        margin-right: 10px;
        font-size: 1.2rem;
      }

      .download-btndown:hover {
        background: linear-gradient(135deg, #264de4, #4e70ff);
        transform: translateY(-2px);
      }

  /* Need more info and Textile Calibration style ends */

/* Style for Medical Device, Textile Electronic Page Calibration Ends  */

/* Calibration Page Style Ends */


/* Portfolio style */

    /* Hero Section Style Starts*/

        .portfolio-hero-port {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a0f1c 0%, #1e3a8a 30%, #2563eb 70%, #3b82f6 100%);
            overflow: hidden;
        }

        .hero-background-port {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(147, 197, 253, 0.2) 0%, transparent 50%);
        }

        .hero-content-port {
            text-align: center;
            z-index: 10;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-badge-port {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(59, 130, 246, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(59, 130, 246, 0.4);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 30px;
            color: #bfdbfe;
        }

        .hero-title-port {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 50%, #93c5fd 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
        }

        .hero-subtitle-port {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: rgba(191, 219, 254, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta-port {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 16px 32px;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary {
            padding: 16px 32px;
            background: rgba(59, 130, 246, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border: 1px solid rgba(59, 130, 246, 0.4);
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
        }

        .btn-secondary:hover {
            background: rgba(59, 130, 246, 0.3);
            transform: translateY(-2px);
        }

    /* Hero Section Style Ends*/

    /* CTA Section Style Starts */

        /* .portfolio-cta {
            background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
            text-align: center;
            padding: 100px 0;
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-description {
            font-size: 1.2rem;
            color: rgba(191, 219, 254, 0.8);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        } */

      /* CTA Section Style Ends */

      /* Portfolio Grid */
        .project-portfolio {
            background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 60px;
        }

        .portfolio-item {
            aspect-ratio: 4/3;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .portfolio-item:hover {
            transform: scale(1.05);
            border-color: rgba(37, 99, 235, 0.4);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(59, 130, 246, 0.8) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-title {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
        }












/* Responsive Style Starts */

     @media (max-width: 1366px) {
       .banner-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 39px;
            /* height: 100%; */
            z-index: 10;
        }
     }

    @media (max-width: 1024px) {
            .banner-content {
                flex-direction: column;
                text-align: center;
                padding: 20px 30px;
            }

            .hero-content {
                margin-bottom: 50px;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .visual-container {
                width: 400px;
                height: 400px;
            }
            .banner-content-about {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .banner-visual-about {
                order: -1;
                height: 400px;
            }

            .main-device-about {
                width: 300px;
                height: 360px;
            }

            .banner-subtitle-about {
                padding-left: 0;
                display: inline-block;
                position: relative;
            }

            .banner-subtitle-about::before {
                left: 50%;
                transform: translateX(-50%) translateY(-50%);
                top: -20px;
                width: 50px;
            }

            .floating-icon-about {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .banner-grid-product {
                gap: 60px;
            }
            
            .banner-title-product {
                font-size: 3.5rem;
            }
            .banner-grid-training {
                gap: 60px;
            }
            
            .banner-title-training {
                font-size: 2.2rem;
            }

            .container {
                padding: 0 30px;
            }
        }
    
    @media (max-width: 992px) {

    /* Style For Navbar Starts */

        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            padding: 10px 0;
            
        }

        .nav-links.active {
            display: flex;
            
        }

        .menu-toggle {
            display: block;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background-color: #00c6ff;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        .request-btn-wrapper {
            display: none;
        }

        /* Style For Navbar Ends */

    }

    @media (max-width: 1255px) {

        .request-btn-wrapper {
            display: none;
        }
       
      }

     @media (max-width: 768px) {
            .banner-content {
                padding: 4px 6px;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .btn-primary, .btn-secondary {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .visual-container {
                width: 300px;
                height: 300px;
            }

            .main-device {
                width: 150px;
                height: 150px;
            }

            .device-screen {
                width: 120px;
                height: 80px;
            }
               .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer {
                padding: 40px 15px 15px;
            }
            
            .footer-column h4 {
                font-size: 16px;
            }
            
            .footer-links li,
            .footer-contact li {
                font-size: 14px;
            }
            .banner-container-about {
                padding: 40px 15px;
            }

            .banner-content-about {
                gap: 40px;
            }

            .banner-visual-about {
                height: 350px;
            }

            .main-device-about {
                width: 260px;
                height: 320px;
            }

            .company-timeline-about {
                padding: 20px;
                max-height: 200px;
            }

            .timeline-year {
                width: 50px;
                height: 50px;
                font-size: 12px;
                margin-right: 15px;
            }

            .timeline-title-about {
                font-size: 13px;
            }

            .timeline-desc-about {
                font-size: 11px;
            }

            .floating-icon-about {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }

            .cta-buttons-about {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }

            
            .banner-subtitle-about {
                font-size: 12px;
                letter-spacing: 2px;
            }

            .banner-subtitle-about::before {
                width: 40px;
                height: 2px;
                top: -15px;
            }
             .product-banner-product {
                padding: 60px 0;
            }

            .banner-grid-product {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .banner-title-product {
                font-size: 3rem;
                text-align: center;
            }

            .banner-subtitle-product {
                text-align: center;
            }

            .feature-list-product {
                justify-content: center;
            }

            .action-buttons-product {
                justify-content: center;
            }

            .container-product {
                padding: 0 20px;
            }

            .stat-box {
                    width: 100%;
                    max-width: 300px;
            }
            .internship-banner-training {
                padding: 60px 0;
                min-height: auto;
            }

            .banner-grid-training {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .banner-title-training {
                font-size: 2rem;
                text-align: center;
            }

            .banner-subtitle-training {
                text-align: center;
                font-size: 1.1rem;
            }

            .program-features-training {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .action-buttons-training {
                justify-content: center;
                flex-wrap: wrap;
            }

            .learning-showcase-training {
                max-width: 100%;
                height: auto;
                padding: 25px 20px;
            }

            .learning-paths-training {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .container {
                padding: 0 20px;
            }
                        .contact-banner-contact {
                height: 100vh;
                min-height: 500px;
            }

            .banner-content-contact {
                padding: 0 20px;
            }

            .floating-icon-contact {
                padding: 15px;
            }

            .floating-icon-contact svg {
                width: 30px;
                height: 30px;
            }

            .icon-1-contact, .icon-3-contact {
                left: 5%;
            }

            .icon-2-contact, .icon-4-contact, .icon-5-contact {
                right: 5%;
            }

            .cta-button-contact {
                padding: 14px 28px;
                font-size: 1rem;
            }
            .service-banner-ser {
                height: 70vh;
                min-height: 500px;
            }

            .banner-content-ser {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
                padding: 1.5rem;
            }

            .banner-text-ser {
                order: 2;
            }

            .banner-visual-ser {
                flex: none;
                order: 1;
            }

            .service-icon-container-ser {
                width: 120px;
                height: 120px;
            }

            .main-service-icon-ser {
                font-size: 2.5rem;
            }

            .breadcrumb-ser {
                justify-content: center;
            }

           
        }

        @media (max-width: 640px) {
           .banner-section {
                position: relative;
                height: 100vh;
                min-height: 990px;
           }
            .icon-1 {
                top: 8%;
                left: 10%;
                width: 70px;
                height: 70px;
                font-size: 2.2rem;
                color: #e74c3c;
                animation-delay: 0s;
            }
           .icon-2 {
                top: 3%;
                right: 0%;
                width: 70px;
                height: 70px;
                font-size: 2rem;
                color: #27ae60;
                animation-delay: 1s;
            }
            .icon-3{
                bottom: 15%;
                left: 8%;
                width: 70px;
                height: 70px;
                font-size: 2.1rem;
                color: #3498db;
                animation-delay: 2s;
            }

            .icon-4 {
                bottom: 13%;
                right: 1%;
                width: 70px;
                height: 70px;
                font-size: 1.9rem;
                color: #f39c12;
                animation-delay: 1.5s;
            }
         }

        @media (max-width: 480px) {
          .banner-section-home {
            position: relative;
            height: 100vh;
            min-height: 985px;
            overflow: hidden;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 25%, #4a90e2 75%, #7bb3f0 100%);
          }

          
        .intro {
            background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
            padding: 2rem 2rem;
            text-align: center;
            border-top: 1px solid #dbe9ff;
            border-bottom: 1px solid #dbe9ff;
            animation: fadeIn 1s ease;
        }

          .banner-container-about {
                padding: 30px 10px;
            }

            .banner-title-about {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .banner-description-about {
                font-size: 16px;
                max-width: 100%;
                margin-bottom: 40px;
            }

            .banner-visual-about {
                height: 300px;
            }

            .main-device-about {
                width: 220px;
                height: 280px;
            }

            .device-header-abou {
                height: 60px;
                font-size: 16px;
            }

            .company-timeline-about {
                margin-top: 60px;
                padding: 15px;
                max-height: 160px;
            }

            .timeline-item-about {
                margin-bottom: 20px;
            }

            .timeline-year {
                width: 45px;
                height: 45px;
                font-size: 11px;
                margin-right: 12px;
            }

            .stats-display-about {
                bottom: 15px;
                left: 15px;
                right: 15px;
                padding: 12px;
            }

            .stat-number-device-about {
                font-size: 18px;
            }

            .stat-label-device-about {
                font-size: 9px;
            }

            .floating-icon-about {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .banner-subtitle-about {
                font-size: 11px;
                letter-spacing: 1px;
            }

            .banner-subtitle-about::before {
                width: 86px;
                top: 22px;
            }
            .btn-primary, .btn-secondary {
                padding: 15px 25px;
                font-size: 14px;
            }
            .banner-title-product {
                font-size: 2.5rem;
            }

            .action-buttons-product {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .product-grid-product {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                padding: 30px;
            }

            .stats-bar-product {
                margin: 0 20px;
            }

            .stats-bar-product {
                margin: 0 20px;
            }
            .banner-title-training {
                font-size: 1.8rem;
            }

            .action-buttons-training {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
                padding: 16px 5px;
                font-size: 15px;
            }

            .learning-showcase-training {
                padding: 20px 16px;
                height: auto;
            }

            .path-icon-training {
                width: 44px;
                height: 44px;
                font-size: 20px;
            }

            .breadcrumb-training {
                padding: 10px 18px;
                font-size: 13px;
            }

            .program-tag-training {
                font-size: 13px;
                padding: 8px 16px;
            }

            .visual-section-training .program-tag-training {
                font-size: 13px;
                padding: 8px 16px;
            }
            .contact-banner-contact {
                min-height: 450px;
            }

            .floating-icon-contact {
                display: none;
            }

            .banner-content-contact {
                padding: 0 15px;
            }
            .project-home {
              /* display: flex;  */
              /* flex-wrap: wrap; */
              /* justify-content: center;
              gap: 2rem; */
              margin-bottom: 20px;
            }
            .team-image {
                width: 360px;
                border-radius: 20px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
                transition: transform 0.3s ease;
                height: 345px;
            }
            .service-banner-ser {
                height: 60vh;
                min-height: 555px;
            }

            .banner-content-ser {
                padding: 1rem;
            }

            .service-icon-container {
                width: 100px;
                height: 100px;
            }

            .main-service-icon-ser {
                font-size: 2rem;
            }

            .breadcrumb-ser {
                font-size: 0.8rem;
            }
            .reasons-wrapper {
              /* display: grid; */
              grid-template-columns: 0fr ;
            }
           
            .why-cardcar {
                /* display: flex
            ; */
                /* align-items: center; */
                background: #ffffff;
                padding: 8px 82px;
                border-radius: 16px;
                box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
                /* margin-bottom: 24px; */
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                flex-direction: column;
                align-content: stretch;
              }

              .product-item-product{
                    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.05));
                    border-radius: 20px;
                    padding: 11px 13px;
                    border: 1px solid rgba(59, 130, 246, 0.2);
                    backdrop-filter: blur(15px);
                    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 16px;
                    min-height: 20px;
                    position: relative;
                    overflow: hidden;
                    animation: slideInStagger 0.8s ease-out both;
                }
              }

         @media (max-width: 360px) {
            .main-device-about {
                width: 200px;
                height: 300px;
            }

            .company-timeline-about {
                max-height: 140px;
            }

            .floating-icon-about {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .timeline-year {
                width: 40px;
                height: 40px;
                font-size: 10px;
            }
            .icon-vision-about {
                bottom: 32px;
                left: 26px;
                color: #1976d2;
                animation-delay: 2s;
            }
            .product-showcase-product{
                height: 520px;
                width: 300px;
                padding: 20px 20px 20px 20px;
            }
        }

/* Responsive Style Ends */