 .navbar-aryan {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar-aryan.scrolled {
            background-color: #fff;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .logo-nav {
            height: 50px;
            transition: all 0.8s;
        }

        .logo-nav:hover {
            /*transform: rotate(360deg);*/
            transform: scale(2.1);
            margin-top: 1rem;
        }
        
        .nav-container-aryan {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        #heading-h1-navbar {
            color: #003153;
            font-size: 1.3rem;
        }
        
        .logo-aryan {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-text-aryan {
            font-size: 24px;
            font-weight: 700;
            color: #003153;
        }
        
        .logo-text-aryan span {
            color: #ff0000;
        }
        
        .nav-menu-aryan {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .nav-item-aryan {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-link-aryan {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }
        
        .nav-link-aryan:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff0000;
            transition: all 0.3s ease;
        }
        
        .nav-link-aryan:hover {
            color: #003153;
        }
        
        .nav-link-aryan:hover:after {
            width: 100%;
        }
        
        
        .hamburger-aryan {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        
        .bar-aryan {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: #003153;
            transition: all 0.3s ease;
        }
        
        .contact-btn-aryan {
            background-color: #003153;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .contact-btn-aryan:hover {
            background-color: #ff0000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
        }
        
        @media (max-width: 968px) {
            .hamburger-aryan {
                display: block;
            }
            
            .hamburger-aryan.active .bar-aryan:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger-aryan.active .bar-aryan:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            
            .hamburger-aryan.active .bar-aryan:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            
            .nav-menu-aryan {
                position: fixed;
                left: -100%;
                top: 80px;
                gap: 0;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
            }
            
            .nav-item-aryan {
                margin: 15px 0;
            }
            
            .nav-menu-aryan.active {
                left: 0;
            }
            
            .contact-btn-aryan {
                margin-top: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text-aryan {
                font-size: 20px;
            }
            
            .nav-container-aryan {
                padding: 12px 4%;
            }

            #heading-h1-navbar {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 350px) {
            .logo-text-aryan {
                font-size: 18px;
            }
            
            .nav-container-aryan {
                padding: 10px 3%;
            }
        }


        .nav-item-aryan {
    position: relative;
    list-style: none;
}

.nav-link-aryan {
    text-decoration: none;
    color: #000;
    padding: 10px;
    display: inline-block;
}

.dropdown-aryan {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.dropdown-aryan li {
    border-bottom: 1px solid #eee;
}

.dropdown-aryan li:last-child {
    border-bottom: none;
}

.dropdown-aryan li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #213544;
    transition: all 0.3s ease;
}

.nav-item-aryan:hover .dropdown-aryan {
    display: block;
}

.dropdown-aryan li a:hover {
    background-color: #be0057;
    color: #fff;
}











        /*footer*/
          /* Global Styles */
        :root {
            --primary-dark: rgb(0, 49, 83);
            --primary-light: #0078D7;
            --accent: #FF9D00;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --light-text: #fff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            margin-top: 100px;
        }
        
        
        /* Footer */
        footer {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }







        /*hero section*/

            .hero-aryan {
            position: relative;
            height: 100vh;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .hero-slideshow-aryan {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-slide-aryan {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-slide-aryan.active {
            opacity: 1;
        }
        
        .hero-slide-aryan::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 49, 83, 0.8), rgba(0, 49, 83, 0.5));
            z-index: 2;
        }
        
        .hero-content-aryan {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 100%;
            color: white;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero-title-aryan {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeInDown 1s ease;
        }
        
        .hero-subtitle-aryan {
            font-size: 1.5rem;
            margin-bottom: 40px;
            max-width: 800px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-buttons-aryan {
            display: flex;
            gap: 20px;
            animation: fadeIn 1.5s ease;
        }
        
        .hero-btn-aryan {
            padding: 15px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-primary-aryan {
            background-color: #ff0000;
            color: white;
            border: 2px solid #ff0000;
        }
        
        .btn-primary-aryan:hover {
            background-color: transparent;
            color: white;
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-secondary-aryan {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-secondary-aryan:hover {
            background-color: white;
            color: #003153;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .hero-indicators-aryan {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }
        
        .indicator-aryan {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator-aryan.active {
            background-color: #ff0000;
            transform: scale(1.2);
        }
        
        .hero-nav-aryan {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 3;
        }
        
        .hero-nav-btn-aryan {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1.2rem;
        }
        
        .hero-nav-btn-aryan:hover {
            background-color: #ff0000;
            transform: scale(1.1);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 968px) {
            .hero-title-aryan {
                font-size: 2.8rem;
            }
            
            .hero-subtitle-aryan {
                font-size: 1.3rem;
            }
            
            .hero-nav-btn-aryan {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title-aryan {
                font-size: 2.2rem;
            }
            
            .hero-subtitle-aryan {
                font-size: 1.1rem;
            }
            
            .hero-buttons-aryan {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-btn-aryan {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .hero-nav-aryan {
                padding: 0 15px;
            }
            
            .hero-nav-btn-aryan {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title-aryan {
                font-size: 1.8rem;
            }
            
            .hero-subtitle-aryan {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            
            .hero-btn-aryan {
                padding: 10px 20px;
            }
            
            .hero-indicators-aryan {
                bottom: 20px;
            }
        }
        
        @media (max-width: 350px) {
            .hero-title-aryan {
                font-size: 1.6rem;
            }
            
            .hero-subtitle-aryan {
                font-size: 0.9rem;
            }
            
            .hero-content-aryan {
                padding: 0 15px;
            }
        }




        /*About us section*/

         .about-aryan-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            font-family: 'Roboto', sans-serif;
            position: relative;
            overflow: hidden;
        }
        
        .about-aryan-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .about-aryan-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .about-aryan-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .about-aryan-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ff0000;
        }
        
        .about-aryan-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .about-aryan-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .about-aryan-text {
            flex: 1;
            min-width: 300px;
            padding-right: 20px;
        }
        
        .about-aryan-highlight {
            color: #ff0000;
            font-weight: 600;
        }
        
        .about-aryan-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
        }
        
        .about-aryan-btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #003153;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .about-aryan-btn:hover {
            background-color: #ff0000;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .about-aryan-media {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .about-aryan-image {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .about-aryan-image.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .about-aryan-video-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: #ff0000;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.8);
        }
        
        .about-aryan-video-btn.animated {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        .about-aryan-video-btn:hover {
            background-color: #003153;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .about-aryan-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 30px;
            margin-top: 60px;
        }
        
        .about-aryan-stat {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            flex: 1;
            min-width: 200px;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .about-aryan-stat.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .about-aryan-stat:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .about-aryan-stat-icon {
            font-size: 40px;
            color: #ff0000;
            margin-bottom: 20px;
        }
        
        .about-aryan-stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 10px;
        }
        
        .about-aryan-stat-text {
            font-size: 1rem;
            color: #6c757d;
        }
        
        .about-aryan-pattern {
            position: absolute;
            z-index: 1;
            opacity: 0.03;
        }
        
        .about-aryan-pattern-1 {
            top: 50px;
            right: -100px;
            font-size: 300px;
            color: #003153;
            transform: rotate(45deg);
        }
        
        .about-aryan-pattern-2 {
            bottom: 50px;
            left: -100px;
            font-size: 250px;
            color: #ff0000;
            transform: rotate(-30deg);
        }
        
        @media (max-width: 968px) {
            .about-aryan-content {
                flex-direction: column;
            }
            
            .about-aryan-text {
                padding-right: 0;
                order: 2;
            }
            
            .about-aryan-media {
                order: 1;
            }
            
            .about-aryan-title {
                font-size: 2.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .about-aryan-section {
                padding: 70px 0;
            }
            
            .about-aryan-title {
                font-size: 2rem;
            }
            
            .about-aryan-description {
                font-size: 1rem;
            }
            
            .about-aryan-stat {
                min-width: 150px;
                padding: 20px;
            }
            
            .about-aryan-stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .about-aryan-title {
                font-size: 1.8rem;
            }
            
            .about-aryan-subtitle {
                font-size: 1rem;
            }
            
            .about-aryan-btn {
                padding: 12px 25px;
                font-size: 0.8rem;
            }
            
            .about-aryan-stat {
                min-width: 100%;
            }
            
            .about-aryan-video-btn {
                width: 60px;
                height: 60px;
                font-size: 18px;
            }
        }
        
        @media (max-width: 350px) {
            .about-aryan-title {
                font-size: 1.6rem;
            }
            
            .about-aryan-container {
                padding: 0 15px;
            }
            
            .about-aryan-stat {
                padding: 15px;
            }
            
            .about-aryan-stat-number {
                font-size: 1.8rem;
            }
        }


        /*about section*/

           .about-aryan-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Section */
        .about-aryan-header-section {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #003153 0%, #00243f 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-aryan-header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .about-aryan-header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-aryan-main-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-aryan-main-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .about-aryan-tagline {
            font-size: 1.2rem;
            font-weight: 500;
            max-width: 700px;
            margin: 0 auto;
            padding: 15px 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* About Intro Section */
        .about-aryan-intro-section {
            padding: 100px 0;
            background-color: white;
        }

        .about-aryan-intro-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }

        .about-aryan-intro-text {
            flex: 1;
            min-width: 300px;
        }

        .about-aryan-intro-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 25px;
            position: relative;
        }

        .about-aryan-intro-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: #ff0000;
        }

        .about-aryan-intro-desc {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }

        .about-aryan-intro-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .about-aryan-intro-list-item {
            padding: 10px 0;
            padding-left: 35px;
            position: relative;
            color: #333;
            font-size: 1.05rem;
        }

        .about-aryan-intro-list-item::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #ff0000;
            font-size: 1.2rem;
        }

        .about-aryan-intro-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about-aryan-intro-img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Board of Directors Section */
        .about-aryan-directors-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .about-aryan-section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .about-aryan-section-heading {
            font-size: 2.8rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .about-aryan-section-heading::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ff0000;
        }

        .about-aryan-directors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .about-aryan-director-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            padding: 30px;
        }

        .about-aryan-director-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .about-aryan-director-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 10px;
        }

        .about-aryan-director-role {
            font-size: 1rem;
            color: #ff0000;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .about-aryan-director-desc {
            color: #555;
            line-height: 1.6;
        }

        /* Strengths Section */
        .about-aryan-strengths-section {
            padding: 100px 0;
            background-color: white;
        }

        .about-aryan-strengths-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .about-aryan-strength-item {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border-top: 4px solid #ff0000;
        }

        .about-aryan-strength-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .about-aryan-strength-icon {
            width: 80px;
            height: 80px;
            background: #003153;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            margin: 0 auto 25px;
        }

        .about-aryan-strength-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 15px;
        }

        .about-aryan-strength-desc {
            color: #555;
            line-height: 1.6;
        }

        /* Quality Section */
        .about-aryan-quality-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .about-aryan-quality-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: flex-start;
        }

        .about-aryan-quality-text {
            flex: 1;
            min-width: 300px;
        }

        .about-aryan-quality-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 25px;
        }

        .about-aryan-quality-desc {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
        }

        .about-aryan-quality-box {
            background: #003153;
            color: white;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 25px;
        }

        .about-aryan-quality-box-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ff0000;
        }

        .about-aryan-quality-box-desc {
            line-height: 1.6;
        }

        .about-aryan-quality-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about-aryan-quality-img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Commitment Section */
        .about-aryan-commitment-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #003153 0%, #00243f 100%);
            color: white;
        }

        .about-aryan-commitment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .about-aryan-commitment-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .about-aryan-commitment-icon {
            font-size: 40px;
            color: #ff0000;
            margin-bottom: 25px;
        }

        .about-aryan-commitment-item-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .about-aryan-commitment-item-desc {
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Infrastructure Section */
        .about-aryan-infrastructure-section {
            padding: 100px 0;
            background-color: white;
        }

        .about-aryan-infrastructure-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }

        .about-aryan-infrastructure-text {
            flex: 1;
            min-width: 300px;
        }

        .about-aryan-infrastructure-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 25px;
        }

        .about-aryan-infrastructure-desc {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
        }

        .about-aryan-infrastructure-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .about-aryan-infrastructure-list-item {
            padding: 10px 0;
            padding-left: 35px;
            position: relative;
            color: #333;
            font-size: 1.05rem;
        }

        .about-aryan-infrastructure-list-item::before {
            content: '\f0a9';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #ff0000;
            font-size: 1.2rem;
        }

        .about-aryan-infrastructure-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about-aryan-infrastructure-img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Contact Section */
        .about-aryan-contact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .about-aryan-contact-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-aryan-contact-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 40px;
        }

        .about-aryan-contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-bottom: 50px;
        }

        .about-aryan-contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .about-aryan-contact-icon {
            width: 70px;
            height: 70px;
            background: #003153;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
        }

        .about-aryan-contact-details {
            text-align: center;
        }

        .about-aryan-contact-label {
            font-weight: 600;
            color: #003153;
            margin-bottom: 5px;
        }

        .about-aryan-contact-value {
            color: #555;
        }

        .about-aryan-address {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            max-width: 500px;
            margin: 0 auto;
        }

        .about-aryan-address-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 15px;
        }

        .about-aryan-address-text {
            color: #555;
            line-height: 1.6;
        }

        /* Responsive Styles */
        @media (max-width: 968px) {
            .about-aryan-main-title {
                font-size: 2.8rem;
            }
            
            .about-aryan-section-heading {
                font-size: 2.3rem;
            }
            
            .about-aryan-intro-title {
                font-size: 2rem;
            }
            
            .about-aryan-quality-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .about-aryan-header-section,
            .about-aryan-intro-section,
            .about-aryan-directors-section,
            .about-aryan-strengths-section,
            .about-aryan-quality-section,
            .about-aryan-commitment-section,
            .about-aryan-infrastructure-section,
            .about-aryan-contact-section {
                padding: 70px 0;
            }
            
            .about-aryan-main-title {
                font-size: 2.2rem;
            }
            
            .about-aryan-main-subtitle {
                font-size: 1.3rem;
            }
            
            .about-aryan-section-heading {
                font-size: 2rem;
            }
            
            .about-aryan-intro-title {
                font-size: 1.8rem;
            }
            
            .about-aryan-quality-title {
                font-size: 1.6rem;
            }
            
            .about-aryan-contact-title {
                font-size: 2rem;
            }
            
            .about-aryan-directors-grid,
            .about-aryan-strengths-grid,
            .about-aryan-commitment-grid {
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .about-aryan-main-title {
                font-size: 1.8rem;
            }
            
            .about-aryan-main-subtitle {
                font-size: 1.1rem;
            }
            
            .about-aryan-section-heading {
                font-size: 1.8rem;
            }
            
            .about-aryan-intro-title {
                font-size: 1.6rem;
            }
            
            .about-aryan-quality-title {
                font-size: 1.4rem;
            }
            
            .about-aryan-contact-title {
                font-size: 1.8rem;
            }
            
            .about-aryan-director-card,
            .about-aryan-strength-item,
            .about-aryan-commitment-item {
                padding: 25px 20px;
            }
            
            .about-aryan-strength-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .about-aryan-contact-icon {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
        }
        
        @media (max-width: 350px) {
            .about-aryan-container {
                padding: 0 10px;
            }
            
            .about-aryan-main-title {
                font-size: 1.6rem;
            }
            
            .about-aryan-section-heading {
                font-size: 1.6rem;
            }
            
            .about-aryan-intro-title {
                font-size: 1.4rem;
            }
            
            .about-aryan-quality-title {
                font-size: 1.3rem;
            }
            
            .about-aryan-contact-title {
                font-size: 1.6rem;
            }
        }



        /*services section*/
  /* Unique Services Section */
        .aryan-services-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }
        
        .aryan-services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="%23003153" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
            z-index: 1;
        }
        
        .aryan-services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .aryan-services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        #services-heading-h2 {
            color: #003153;
        }
        
        .aryan-services-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .aryan-services-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff0000, #ff6b6b);
            border-radius: 2px;
        }
        
        .aryan-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .aryan-services-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .aryan-services-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #003153, #ff0000);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .aryan-services-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .aryan-services-card:hover::before {
            transform: scaleX(1);
        }
        
        .aryan-services-icon {
            height: 120px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #003153 0%, #00243f 100%);
            color: white;
            font-size: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .aryan-services-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .aryan-services-card:hover .aryan-services-icon::after {
            transform: translateX(100%);
        }
        
        .aryan-services-content {
            padding: 30px;
        }
        
        .aryan-services-card-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 15px;
        }
        
        .aryan-services-card-desc {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .aryan-services-list {
            padding: 0;
            margin: 0;
            list-style: none;
        }
        
        .aryan-services-list-item {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #333;
            transition: color 0.3s ease;
        }
        
        .aryan-services-list-item:hover {
            color: #ff0000;
        }
        
        .aryan-services-list-item::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #ff0000;
        }
        
        /* Unique Strengths Section */
        .aryan-strengths-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #003153 0%, #00243f 100%);
            position: relative;
            overflow: hidden;
        }
        
        .aryan-strengths-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }
        
        .aryan-strengths-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }
        
        .aryan-strengths-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .aryan-strengths-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .aryan-strengths-item {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .aryan-strengths-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.7s ease;
        }
        
        .aryan-strengths-item:hover::before {
            left: 100%;
        }
        
        .aryan-strengths-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .aryan-strengths-icon {
            width: 80px;
            height: 80px;
            background: #ff0000;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }
        
        .aryan-strengths-item:hover .aryan-strengths-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
        }
        
        .aryan-strengths-item-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .aryan-strengths-item-desc {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }
        
        /* Unique Quality Section */
        .aryan-quality-section {
            padding: 80px 0;
            background: #fff;
            position: relative;
        }
        
        .aryan-quality-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }
        
        .aryan-quality-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }
        
        .aryan-quality-text {
            flex: 1;
            min-width: 300px;
        }
        
        .aryan-quality-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 25px;
        }
        
        .aryan-quality-desc {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
        }
        
        .aryan-quality-box {
            background: linear-gradient(135deg, #003153 0%, #00243f 100%);
            color: white;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        
        .aryan-quality-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: #ff0000;
        }
        
        .aryan-quality-box-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ff0000;
        }
        
        .aryan-quality-box-desc {
            line-height: 1.6;
        }
        
        .aryan-quality-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
            position: relative;
        }
        
        .aryan-quality-image::before {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background: #003153;
            border-radius: 12px;
            z-index: -1;
        }
        
        .aryan-quality-img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: transform 0.4s ease;
        }
        
        .aryan-quality-image:hover .aryan-quality-img {
            transform: scale(1.03);
        }
        
        /* Unique Commitment Section */
        .aryan-commitment-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .aryan-commitment-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .aryan-commitment-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .aryan-commitment-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .aryan-commitment-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff0000, #ff6b6b);
            border-radius: 2px;
        }
        
        .aryan-commitment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .aryan-commitment-item {
            background: #fff;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .aryan-commitment-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #003153, #ff0000);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .aryan-commitment-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .aryan-commitment-item:hover::before {
            transform: scaleX(1);
        }
        
        .aryan-commitment-icon {
            font-size: 40px;
            color: #ff0000;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }
        
        .aryan-commitment-item:hover .aryan-commitment-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .aryan-commitment-item-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 15px;
        }
        
        .aryan-commitment-item-desc {
            line-height: 1.6;
            color: #6c757d;
        }
        
        /* Unique Responsive Design */
        @media (max-width: 1024px) {
            .aryan-services-title,
            .aryan-commitment-title {
                font-size: 2.2rem;
            }
            
            .aryan-quality-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .aryan-services-section,
            .aryan-strengths-section,
            .aryan-quality-section,
            .aryan-commitment-section {
                padding: 60px 0;
            }
            
            .aryan-services-title,
            .aryan-commitment-title {
                font-size: 2rem;
            }
            
            .aryan-quality-title {
                font-size: 1.8rem;
            }
            
            .aryan-services-grid,
            .aryan-strengths-grid,
            .aryan-commitment-grid {
                gap: 20px;
            }
            
            .aryan-quality-content {
                flex-direction: column;
            }
            
            .aryan-quality-text {
                order: 2;
            }
            
            .aryan-quality-image {
                order: 1;
            }
            
            .aryan-quality-image::before {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .aryan-services-title,
            .aryan-commitment-title {
                font-size: 1.8rem;
            }
            
            .aryan-quality-title {
                font-size: 1.6rem;
            }
            
            .aryan-services-card,
            .aryan-strengths-item,
            .aryan-commitment-item {
                padding: 25px 20px;
            }
            
            .aryan-services-icon {
                height: 100px;
                font-size: 30px;
            }
            
            .aryan-strengths-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .aryan-quality-box {
                padding: 20px;
            }
        }
        
        @media (max-width: 400px) {

            .about-aryan-header-section {
                margin-top: 2rem;
            }

            .aryan-services-title,
            .aryan-commitment-title {
                font-size: 1.6rem;
            }
            
            .aryan-quality-title {
                font-size: 1.4rem;
            }
            
            .aryan-services-grid,
            .aryan-strengths-grid,
            .aryan-commitment-grid {
                grid-template-columns: 1fr;
            }
            
            .aryan-services-card,
            .aryan-strengths-item,
            .aryan-commitment-item {
                padding: 20px 15px;
            }
            
            .aryan-services-content {
                padding: 20px;
            }
        }
        
        @media (max-width: 350px) {
            .aryan-services-container,
            .aryan-strengths-container,
            .aryan-quality-container,
            .aryan-commitment-container {
                padding: 0 10px;
            }
            
            .aryan-services-title,
            .aryan-commitment-title {
                font-size: 1.5rem;
            }
            
            .aryan-quality-title {
                font-size: 1.3rem;
            }
            
            .aryan-services-card-title,
            .aryan-strengths-item-title,
            .aryan-commitment-item-title {
                font-size: 1.2rem;
            }
            
            .aryan-services-card-desc,
            .aryan-strengths-item-desc,
            .aryan-commitment-item-desc,
            .aryan-quality-desc,
            .aryan-quality-box-desc {
                font-size: 0.9rem;
            }
        }

          /* Base Styles */
        .projects-aryan-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */
        .projects-aryan-header-section {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #003153 0%, #00243f 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
        }

        .projects-aryan-header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .projects-aryan-header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .projects-aryan-main-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .projects-aryan-main-subtitle {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.4;
        }

        .projects-aryan-tagline {
            font-size: clamp(0.95rem, 2.5vw, 1.2rem);
            font-weight: 500;
            max-width: 700px;
            margin: 0 auto;
            padding: 15px 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Active Projects Section */
        .projects-aryan-active-section {
            padding: 100px 0;
            background-color: white;
        }

        .projects-aryan-section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .projects-aryan-section-heading {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: #003153;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .projects-aryan-section-heading::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ff0000;
        }

        .projects-aryan-projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .projects-aryan-project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .projects-aryan-project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .projects-aryan-project-image {
            height: 200px;
            background: linear-gradient(135deg, #003153 0%, #00243f 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 40px;
        }

        .projects-aryan-project-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .projects-aryan-project-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .projects-aryan-project-desc {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .projects-aryan-project-status {
            display: inline-block;
            padding: 6px 15px;
            background: #ff0000;
            color: white;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            align-self: flex-start;
        }

        /* Featured Projects Section */
        .projects-aryan-featured-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .projects-aryan-featured-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }

        .projects-aryan-featured-text {
            flex: 1;
            min-width: 300px;
        }

        .projects-aryan-featured-title {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 700;
            color: #003153;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .projects-aryan-featured-desc {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
        }

        .projects-aryan-featured-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .projects-aryan-featured-list-item {
            padding: 10px 0;
            padding-left: 35px;
            position: relative;
            color: #333;
            font-size: 1.05rem;
            line-height: 1.5;
        }

        .projects-aryan-featured-list-item::before {
            content: '\f0a9';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #ff0000;
            font-size: 1.2rem;
        }

        .projects-aryan-featured-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .projects-aryan-featured-img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Infrastructure Projects Section */
        .projects-aryan-infrastructure-section {
            padding: 100px 0;
            background-color: white;
        }

        .projects-aryan-infrastructure-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: 30px;
        }

        .projects-aryan-infrastructure-item {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border-top: 4px solid #ff0000;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .projects-aryan-infrastructure-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .projects-aryan-infrastructure-icon {
            width: 80px;
            height: 80px;
            background: #003153;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            margin: 0 auto 25px;
        }

        .projects-aryan-infrastructure-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .projects-aryan-infrastructure-desc {
            color: #555;
            line-height: 1.6;
            flex-grow: 1;
        }

        /* Project Statistics Section */
        .projects-aryan-stats-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #003153 0%, #00243f 100%);
            color: white;
            margin-top: 2rem;
        }

        .projects-aryan-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
            gap: 30px;
        }

        .projects-aryan-stat-item {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .projects-aryan-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #ff0000;
        }

        .projects-aryan-stat-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Contact Section */
        .projects-aryan-contact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .projects-aryan-contact-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .projects-aryan-contact-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #003153;
            margin-bottom: 40px;
            line-height: 1.3;
        }

        .projects-aryan-contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .projects-aryan-contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .projects-aryan-contact-icon {
            width: 70px;
            height: 70px;
            background: #003153;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
        }

        .projects-aryan-contact-details {
            text-align: center;
        }

        .projects-aryan-contact-label {
            font-weight: 600;
            color: #003153;
            margin-bottom: 5px;
        }

        .projects-aryan-contact-value {
            color: #555;
        }

        .projects-aryan-address {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            max-width: 500px;
            margin: 0 auto;
        }

        .projects-aryan-address-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 15px;
        }

        .projects-aryan-address-text {
            color: #555;
            line-height: 1.6;
        }

        /* Enhanced Responsive Styles */
        @media (max-width: 968px) {
            .projects-aryan-featured-content {
                flex-direction: column;
                text-align: center;
            }
            
            .projects-aryan-featured-text {
                order: 2;
            }
            
            .projects-aryan-featured-image {
                order: 1;
            }
        }
        
        @media (max-width: 768px) {
            .projects-aryan-header-section,
            .projects-aryan-active-section,
            .projects-aryan-featured-section,
            .projects-aryan-infrastructure-section,
            .projects-aryan-stats-section,
            .projects-aryan-contact-section {
                padding: 70px 0;
            }
            
            .projects-aryan-projects-grid,
            .projects-aryan-infrastructure-grid,
            .projects-aryan-stats-grid {
                gap: 20px;
            }
            
            .projects-aryan-project-content,
            .projects-aryan-infrastructure-item {
                padding: 25px 20px;
            }
            
            .projects-aryan-featured-list-item {
                padding-left: 30px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .projects-aryan-container {
                padding: 0 15px;
            }
            
            .projects-aryan-project-image {
                height: 150px;
                font-size: 30px;
            }
            
            .projects-aryan-infrastructure-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .projects-aryan-contact-icon {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
            
            .projects-aryan-stat-number {
                font-size: 2rem;
            }
            
            .projects-aryan-stat-text {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 350px) {
            .projects-aryan-container {
                padding: 0 10px;
            }
            
            .projects-aryan-header-section {
                padding: 120px 0 60px;
            }
            
            .projects-aryan-main-title {
                letter-spacing: 1px;
            }
            
            .projects-aryan-tagline {
                padding: 12px 15px;
            }
            
            .projects-aryan-project-image {
                height: 120px;
                font-size: 25px;
            }
            
            .projects-aryan-project-content {
                padding: 20px 15px;
            }
            
            .projects-aryan-infrastructure-item {
                padding: 25px 15px;
            }
            
            .projects-aryan-infrastructure-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .projects-aryan-infrastructure-title {
                font-size: 1.1rem;
            }
            
            .projects-aryan-infrastructure-desc {
                font-size: 0.9rem;
            }
            
            .projects-aryan-stat-item {
                padding: 25px 15px;
            }
            
            .projects-aryan-stat-number {
                font-size: 1.8rem;
            }
            
            .projects-aryan-stat-text {
                font-size: 0.9rem;
            }
            
            .projects-aryan-contact-info {
                gap: 25px;
            }
            
            .projects-aryan-contact-icon {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
            
            .projects-aryan-address {
                padding: 20px 15px;
            }
        }

          .partners-aryan-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .partners-aryan-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 49, 83, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.03) 0%, transparent 50%);
        }

        .partners-aryan-container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .partners-aryan-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .partners-aryan-title {
            font-size: 3rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .partners-aryan-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #003153, #ff0000);
            border-radius: 2px;
        }

        .partners-aryan-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .partners-aryan-slider-container {
            position: relative;
            padding: 40px 0;
            margin: 0 auto;
            overflow: hidden;
        }

        .partners-aryan-slider-track {
            display: flex;
            gap: 60px;
            animation: partners-aryan-slide 40s linear infinite;
            padding: 20px 0;
        }

        .partners-aryan-slider-track:hover {
            animation-play-state: paused;
        }

        .partners-aryan-partner-item {
            flex: 0 0 auto;
            width: 180px;
            height: 120px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px;
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.08),
                0 1px 0 rgba(255, 255, 255, 0.8) inset;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(0, 49, 83, 0.1);
            position: relative;
            overflow: hidden;
        }

        .partners-aryan-partner-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 49, 83, 0.05) 0%, rgba(255, 0, 0, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .partners-aryan-partner-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.15),
                0 15px 30px rgba(0, 49, 83, 0.1);
        }

        .partners-aryan-partner-item:hover::before {
            opacity: 1;
        }

        .partners-aryan-partner-logo {
            max-width: 100%;
            max-height: 100%;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
            object-fit: contain;
        }

        .partners-aryan-partner-item:hover .partners-aryan-partner-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        .partners-aryan-slider-track-reverse {
            animation: partners-aryan-slide-reverse 35s linear infinite;
            margin-top: 30px;
        }

        .partners-aryan-slider-track-reverse .partners-aryan-partner-item {
            width: 160px;
            height: 100px;
        }

        @keyframes partners-aryan-slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-180px * 10 - 60px * 10));
            }
        }

        @keyframes partners-aryan-slide-reverse {
            0% {
                transform: translateX(calc(-180px * 10 - 60px * 10));
            }
            100% {
                transform: translateX(0);
            }
        }

        .partners-aryan-gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                rgba(248, 250, 252, 1) 0%,
                rgba(248, 250, 252, 0) 10%,
                rgba(248, 250, 252, 0) 90%,
                rgba(248, 250, 252, 1) 100%
            );
            pointer-events: none;
            z-index: 3;
        }

        .partners-aryan-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
        }

        .partners-aryan-control-btn {
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid #003153;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #003153;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .partners-aryan-control-btn:hover {
            background: #003153;
            color: white;
            transform: scale(1.1);
        }

        .partners-aryan-control-btn:active {
            transform: scale(0.95);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .partners-aryan-partner-item {
                width: 160px;
                height: 110px;
            }
            
            .partners-aryan-slider-track-reverse .partners-aryan-partner-item {
                width: 140px;
                height: 90px;
            }
        }

        @media (max-width: 968px) {
            .partners-aryan-section {
                padding: 80px 0;
            }
            
            .partners-aryan-title {
                font-size: 2.5rem;
            }
            
            .partners-aryan-subtitle {
                font-size: 1.2rem;
            }
            
            .partners-aryan-partner-item {
                width: 140px;
                height: 100px;
                padding: 20px;
            }
            
            .partners-aryan-slider-track-reverse .partners-aryan-partner-item {
                width: 120px;
                height: 80px;
            }
            
            .partners-aryan-slider-track {
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .partners-aryan-title {
                font-size: 2.2rem;
            }
            
            .partners-aryan-subtitle {
                font-size: 1.1rem;
            }
            
            .partners-aryan-partner-item {
                width: 120px;
                height: 85px;
                padding: 15px;
            }
            
            .partners-aryan-slider-track-reverse .partners-aryan-partner-item {
                width: 100px;
                height: 70px;
            }
            
            .partners-aryan-slider-track {
                gap: 30px;
            }
            
            .partners-aryan-control-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .partners-aryan-section {
                padding: 60px 0;
            }
            
            .partners-aryan-title {
                font-size: 1.8rem;
            }
            
            .partners-aryan-subtitle {
                font-size: 1rem;
            }
            
            .partners-aryan-partner-item {
                width: 100px;
                height: 70px;
                padding: 12px;
                border-radius: 10px;
            }
            
            .partners-aryan-slider-track-reverse .partners-aryan-partner-item {
                width: 90px;
                height: 60px;
            }
            
            .partners-aryan-slider-track {
                gap: 25px;
            }
            
            .partners-aryan-controls {
                gap: 15px;
            }
            
            .partners-aryan-control-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

          .contact-aryan-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
        }

        .contact-aryan-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 49, 83, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
        }

        .contact-aryan-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .contact-aryan-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
        }

        .contact-aryan-info {
            padding: 40px 0;
        }

        .contact-aryan-title {
            font-size: 3.2rem;
            font-weight: 800;
            color: #003153;
            margin-bottom: 20px;
            line-height: 1.2;
            position: relative;
        }

        .contact-aryan-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #003153, #ff0000);
            border-radius: 2px;
        }

        .contact-aryan-subtitle {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .contact-aryan-info-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-aryan-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            border-left: 4px solid #003153;
        }

        .contact-aryan-info-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-left-color: #ff0000;
        }

        .contact-aryan-info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #003153, #001f3a);
            color: white;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .contact-aryan-info-item:hover .contact-aryan-info-icon {
            transform: rotate(15deg) scale(1.1);
            background: linear-gradient(135deg, #ff0000, #cc0000);
        }

        .contact-aryan-info-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 8px;
        }

        .contact-aryan-info-content p {
            color: #666;
            line-height: 1.5;
            margin: 0;
        }

        .contact-aryan-form-container {
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-aryan-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #003153, #ff0000);
        }

        .contact-aryan-form-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 30px;
            text-align: center;
        }

        .contact-aryan-form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .contact-aryan-form-input {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            background: #f8fafc;
            color: #333;
        }

        .contact-aryan-form-input:focus {
            outline: none;
            border-color: #003153;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 49, 83, 0.1);
            transform: translateY(-2px);
        }

        .contact-aryan-form-input:valid {
            border-color: #28a745;
        }

        .contact-aryan-form-input:invalid:not(:focus):not(:placeholder-shown) {
            border-color: #dc3545;
        }

        .contact-aryan-form-label {
            position: absolute;
            top: 18px;
            left: 20px;
            color: #666;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            pointer-events: none;
            background: #f8fafc;
            padding: 0 8px;
        }

        .contact-aryan-form-input:focus + .contact-aryan-form-label,
        .contact-aryan-form-input:not(:placeholder-shown) + .contact-aryan-form-label {
            top: -10px;
            left: 15px;
            font-size: 0.85rem;
            color: #003153;
            background: white;
            font-weight: 600;
        }

        .contact-aryan-form-textarea {
            min-height: 140px;
            resize: vertical;
            font-family: inherit;
        }

        .contact-aryan-form-submit {
            width: 100%;
            padding: 18px 30px;
            background: linear-gradient(135deg, #003153, #001f3a);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-aryan-form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ff0000, #cc0000);
            transition: left 0.4s ease;
        }

        .contact-aryan-form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 49, 83, 0.2);
        }

        .contact-aryan-form-submit:hover::before {
            left: 0;
        }

        .contact-aryan-form-submit span {
            position: relative;
            z-index: 2;
        }

        .contact-aryan-form-submit i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .contact-aryan-form-submit:hover i {
            transform: translateX(5px);
        }

        /* Responsive Styles */
        @media (max-width: 968px) {
            .contact-aryan-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .contact-aryan-title {
                font-size: 2.8rem;
            }
            
            .contact-aryan-form-container {
                padding: 40px 30px;
            }
            
            .contact-aryan-form-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .contact-aryan-section {
                padding: 80px 0;
            }
            
            .contact-aryan-title {
                font-size: 2.4rem;
            }
            
            .contact-aryan-subtitle {
                font-size: 1.2rem;
            }
            
            .contact-aryan-info-item {
                padding: 20px;
            }
            
            .contact-aryan-info-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .contact-aryan-form-container {
                padding: 35px 25px;
            }
            
            .contact-aryan-form-title {
                font-size: 1.8rem;
            }
            
            .contact-aryan-form-input {
                padding: 16px 18px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .contact-aryan-section {
                padding: 60px 0;
            }
            
            .contact-aryan-container {
                width: 95%;
                padding: 0 15px;
            }
            
            .contact-aryan-title {
                font-size: 2rem;
            }
            
            .contact-aryan-subtitle {
                font-size: 1.1rem;
            }
            
            .contact-aryan-info-item {
                padding: 18px 15px;
                gap: 15px;
            }
            
            .contact-aryan-info-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .contact-aryan-info-content h4 {
                font-size: 1.2rem;
            }
            
            .contact-aryan-form-container {
                padding: 30px 20px;
                border-radius: 15px;
            }
            
            .contact-aryan-form-title {
                font-size: 1.6rem;
                margin-bottom: 25px;
            }
            
            .contact-aryan-form-input {
                padding: 14px 16px;
                font-size: 0.95rem;
            }
            
            .contact-aryan-form-label {
                top: 14px;
                left: 16px;
                font-size: 1rem;
            }
            
            .contact-aryan-form-submit {
                padding: 16px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 380px) {
            .contact-aryan-section {
                padding: 50px 0;
            }
            
            .contact-aryan-title {
                font-size: 1.8rem;
            }
            
            .contact-aryan-subtitle {
                font-size: 1rem;
            }
            
            .contact-aryan-info-item {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .contact-aryan-info-icon {
                align-self: center;
            }
            
            .contact-aryan-form-container {
                padding: 25px 18px;
            }
            
            .contact-aryan-form-title {
                font-size: 1.4rem;
            }
            
            .contact-aryan-form-input {
                padding: 12px 14px;
                font-size: 0.9rem;
            }
            
            .contact-aryan-form-label {
                top: 12px;
                left: 14px;
                font-size: 0.9rem;
            }
            
            .contact-aryan-form-input:focus + .contact-aryan-form-label,
            .contact-aryan-form-input:not(:placeholder-shown) + .contact-aryan-form-label {
                top: -8px;
                left: 12px;
                font-size: 0.8rem;
            }
        }





         .clients-aryan-container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            margin-top: 2rem;
        }

        /* Header Section */
        .clients-aryan-header-section {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #003153 0%, #001f3a 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .clients-aryan-header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
        }

        .clients-aryan-header-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .clients-aryan-main-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, #ffffff, #ffcccc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .clients-aryan-main-subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Clients List Section */
        .clients-aryan-list-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .clients-aryan-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .clients-aryan-section-heading {
            font-size: 2.8rem;
            font-weight: 700;
            color: #003153;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .clients-aryan-section-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #ff0000;
            border-radius: 2px;
        }

        .clients-aryan-category-container {
            margin-bottom: 60px;
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .clients-aryan-category-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .clients-aryan-category-header {
            background: linear-gradient(135deg, #003153, #001f3a);
            color: white;
            padding: 25px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .clients-aryan-category-icon {
            font-size: 28px;
            color: #ff0000;
        }

        .clients-aryan-category-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0;
        }

        .clients-aryan-clients-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 0;
        }

        .clients-aryan-client-item {
            padding: 20px 30px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .clients-aryan-client-item:nth-child(odd) {
            background: #fafafa;
        }

        .clients-aryan-client-item:hover {
            background: #f0f7ff;
            transform: translateX(5px);
        }

        .clients-aryan-client-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #ff0000;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .clients-aryan-client-item:hover::before {
            transform: scaleY(1);
        }

        .clients-aryan-client-badge {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #003153, #001f3a);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .clients-aryan-client-item:hover .clients-aryan-client-badge {
            transform: rotate(15deg) scale(1.1);
            background: linear-gradient(135deg, #ff0000, #cc0000);
        }

        .clients-aryan-client-info {
            flex: 1;
        }

        .clients-aryan-client-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 5px;
        }

        .clients-aryan-client-location {
            font-size: 0.95rem;
            color: #666;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .clients-aryan-client-location i {
            color: #ff0000;
            font-size: 0.9rem;
        }

        /* Compact List Section */
        .clients-aryan-compact-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .clients-aryan-compact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .clients-aryan-compact-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            border-top: 4px solid #003153;
            position: relative;
            overflow: hidden;
        }

        .clients-aryan-compact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-top-color: #ff0000;
        }

        .clients-aryan-compact-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 40px 40px 0;
            border-color: transparent #003153 transparent transparent;
            transition: all 0.3s ease;
        }

        .clients-aryan-compact-card:hover::before {
            border-color: transparent #ff0000 transparent transparent;
        }

        .clients-aryan-compact-icon {
            font-size: 24px;
            color: #003153;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .clients-aryan-compact-card:hover .clients-aryan-compact-icon {
            color: #ff0000;
            transform: scale(1.2);
        }

        .clients-aryan-compact-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #003153;
            margin-bottom: 15px;
        }

        .clients-aryan-compact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .clients-aryan-compact-item {
            padding: 8px 0;
            padding-left: 20px;
            position: relative;
            color: #555;
            font-size: 0.95rem;
            border-bottom: 1px dashed #f0f0f0;
        }

        .clients-aryan-compact-item:last-child {
            border-bottom: none;
        }

        .clients-aryan-compact-item::before {
            content: '\f058';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #ff0000;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 1100px) {
            .clients-aryan-main-title {
                font-size: 2.8rem;
            }
            
            .clients-aryan-section-heading {
                font-size: 2.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .clients-aryan-header-section,
            .clients-aryan-list-section,
            .clients-aryan-compact-section {
                padding: 60px 0;
            }
            
            .clients-aryan-main-title {
                font-size: 2.2rem;
            }
            
            .clients-aryan-main-subtitle {
                font-size: 1.2rem;
            }
            
            .clients-aryan-section-heading {
                font-size: 2rem;
            }
            
            .clients-aryan-category-title {
                font-size: 1.5rem;
            }
            
            .clients-aryan-clients-list {
                grid-template-columns: 1fr;
            }
            
            .clients-aryan-compact-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .clients-aryan-main-title {
                font-size: 1.8rem;
            }
            
            .clients-aryan-main-subtitle {
                font-size: 1rem;
            }
            
            .clients-aryan-section-heading {
                font-size: 1.7rem;
            }
            
            .clients-aryan-category-title {
                font-size: 1.3rem;
            }
            
            .clients-aryan-client-item {
                padding: 15px 20px;
            }
            
            .clients-aryan-client-badge {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .clients-aryan-client-name {
                font-size: 1.1rem;
            }
            
            .clients-aryan-compact-card {
                padding: 20px;
            }

            .clients-aryan-header-section {
                margin-top: 2rem;
            }
        }

        .clients-aryan-compact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .clients-aryan-compact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(0, 49, 83, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 0, 0.03) 0%, transparent 50%);
        }

        .clients-aryan-container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .clients-aryan-compact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            perspective: 1000px;
        }

        .clients-aryan-compact-card {
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            border-radius: 20px;
            padding: 40px 35px;
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.08),
                0 1px 0 rgba(255, 255, 255, 0.8) inset;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transform-style: preserve-3d;
            opacity: 0;
            transform: translateY(50px) rotateX(10deg);
        }

        .clients-aryan-compact-card.animated {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }

        .clients-aryan-compact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 49, 83, 0.05) 0%, rgba(255, 0, 0, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .clients-aryan-compact-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 15px 30px rgba(0, 49, 83, 0.1),
                0 1px 0 rgba(255, 255, 255, 0.8) inset;
        }

        .clients-aryan-compact-card:hover::before {
            opacity: 1;
        }

        .clients-aryan-compact-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #003153, #ff0000);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
        }

        .clients-aryan-compact-card:hover::after {
            transform: scaleX(1);
        }

        .clients-aryan-card-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .clients-aryan-compact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #003153, #001f3a);
            color: white;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 10px 25px rgba(0, 49, 83, 0.2);
            position: relative;
            overflow: hidden;
        }

        .clients-aryan-compact-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .clients-aryan-compact-card:hover .clients-aryan-compact-icon {
            transform: rotate(15deg) scale(1.1);
            background: linear-gradient(135deg, #ff0000, #cc0000);
        }

        .clients-aryan-compact-card:hover .clients-aryan-compact-icon::before {
            opacity: 1;
        }

        .clients-aryan-compact-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #003153;
            margin: 0;
            position: relative;
            padding-bottom: 10px;
        }

        .clients-aryan-compact-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #ff0000;
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .clients-aryan-compact-card:hover .clients-aryan-compact-title::after {
            width: 80px;
        }

        .clients-aryan-compact-list {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .clients-aryan-compact-item {
            padding: 15px 0;
            padding-left: 35px;
            position: relative;
            color: #444;
            font-size: 1.05rem;
            line-height: 1.5;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            transform: translateX(-10px);
            opacity: 0;
        }

        .clients-aryan-compact-item.animated {
            transform: translateX(0);
            opacity: 1;
        }

        .clients-aryan-compact-item:last-child {
            border-bottom: none;
        }

        .clients-aryan-compact-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background: rgba(255, 0, 0, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .clients-aryan-compact-item::after {
            content: '\f058';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            color: #ff0000;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .clients-aryan-compact-item:hover {
            color: #003153;
            transform: translateX(5px);
        }

        .clients-aryan-compact-item:hover::before {
            background: rgba(255, 0, 0, 0.2);
            transform: translateY(-50%) scale(1.2);
        }

        .clients-aryan-compact-item:hover::after {
            color: #003153;
            transform: translateY(-50%) scale(1.2);
        }

        /* Card-specific accent colors */
        .clients-aryan-compact-card:nth-child(1) .clients-aryan-compact-title::after,
        .clients-aryan-compact-card:nth-child(1) .clients-aryan-compact-item::after {
            background: #003153;
            color: #003153;
        }

        .clients-aryan-compact-card:nth-child(2) .clients-aryan-compact-title::after,
        .clients-aryan-compact-card:nth-child(2) .clients-aryan-compact-item::after {
            background: #ff0000;
            color: #ff0000;
        }

        .clients-aryan-compact-card:nth-child(3) .clients-aryan-compact-title::after,
        .clients-aryan-compact-card:nth-child(3) .clients-aryan-compact-item::after {
            background: linear-gradient(to right, #003153, #ff0000);
            color: #ff0000;
        }

        /* Responsive Styles */
        @media (max-width: 968px) {
            .clients-aryan-compact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .clients-aryan-compact-card {
                padding: 30px 25px;
            }
            
            .clients-aryan-card-header {
                gap: 15px;
            }
            
            .clients-aryan-compact-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
            
            .clients-aryan-compact-title {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 480px) {
            .clients-aryan-compact-section {
                padding: 70px 0;
            }
            
            .clients-aryan-compact-card {
                padding: 25px 20px;
            }
            
            .clients-aryan-compact-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .clients-aryan-compact-title {
                font-size: 1.4rem;
            }
            
            .clients-aryan-compact-item {
                font-size: 1rem;
                padding: 12px 0 12px 30px;
            }
        }
        
        
        /* Add to your existing CSS */
.g-recaptcha {
    margin: 15px 0;
    min-height: 78px;
    display: flex;
    justify-content: center;
}

.g-recaptcha > div {
    width: 100% !important;
}

.g-recaptcha iframe {
    width: 100% !important;
}

/* Style for form message */
#form-message {
    transition: all 0.3s ease;
}

/* Make sure reCAPTCHA container is responsive */
@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
}