@charset "utf-8";
/* CSS Document */

  /* CSS VARIABLES FOR COLOR SCHEME */
        :root {
            --primary-navy: #021B41;
            --primary-navy-light: #0b316d;
            --accent-orange: #FF7B00;
            --accent-gold: #FFA500;
            --gradient-orange: linear-gradient(135deg, #FF7B00 0%, #FFA500 100%);
            --text-dark: #333333;
            --text-light: #FFFFFF;
            --bg-light: #F4F7FC;
            --border-color: #E2E8F0;
            --transition: all 0.3s ease;
        }

        /* RESET & BASE STYLES */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER & NAVIGATION */
        header {
            background-color: var(--text-light);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* CSS generated Logo replicating your image */
        .logo-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--text-light);
            border: 2px solid var(--primary-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-icon::before {
            content: "\f2b5"; /* FontAwesome handshake icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 20px;
            background: var(--gradient-orange);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-text h1 {
            font-size: 20px;
            color: var(--primary-navy);
            font-weight: 800;
            line-height: 1;
        }

        .logo-text span {
            font-size: 11px;
            color: var(--accent-orange);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        nav ul li a {
            font-weight: 500;
            color: var(--primary-navy);
            transition: var(--transition);
        }

        nav ul li a:hover {
            color: var(--accent-orange);
        }

        .btn-call {
            background: var(--gradient-orange);
            color: var(--text-light);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
            transition: var(--transition);
        }

        .btn-call:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
            color: var(--text-light);
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 10px;
            background: var(--gradient-orange);
        }

        .hero h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .hero .subtitle {
            font-size: 22px;
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .hero p.tagline {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 35px;
            opacity: 0.9;
        }

        .hero-hindi {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 20px;
            background: rgba(255, 255, 255, 0.1);
            display: inline-block;
            padding: 8px 25px;
            border-radius: 50px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* TRUST PILLS OVERLAY */
        .trust-pills {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .pill {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 12px 25px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .pill i {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }

        /* SERVICES SECTION */
        .services-section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h3 {
            font-size: 32px;
            color: var(--primary-navy);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .section-header h3::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--gradient-orange);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .section-header p {
            color: #666;
            font-size: 16px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--text-light);
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-orange);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(2, 27, 65, 0.1);
            border-color: rgba(255, 123, 0, 0.3);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(2, 27, 65, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--primary-navy);
        }

        .service-card:hover .service-icon i {
            color: var(--text-light);
        }

        .service-icon i {
            font-size: 30px;
            color: var(--primary-navy);
            transition: var(--transition);
        }

        .service-card h4 {
            font-size: 18px;
            color: var(--primary-navy);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .service-card p {
            font-size: 14px;
            color: #666;
        }

        /* WHY CHOOSE US */
        .why-us {
            background-color: var(--primary-navy);
            color: var(--text-light);
            padding: 80px 0;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .why-item i {
            font-size: 45px;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .why-item h4 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .why-item p {
            font-size: 14px;
            opacity: 0.8;
        }

        /* CALL TO ACTION */
        .cta-section {
            padding: 80px 0;
            background: var(--text-light);
            text-align: center;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--primary-navy) 0%, #002c6c 100%);
            padding: 50px 40px;
            border-radius: 20px;
            color: var(--text-light);
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 15px 35px rgba(2, 27, 65, 0.2);
        }

        .cta-box h3 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .cta-box p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-large {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .btn-large.call {
            background: var(--gradient-orange);
            color: var(--text-light);
        }

        .btn-large.call:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 123, 0, 0.4);
        }

        .btn-large.whatsapp {
            background-color: #25D366;
            color: var(--text-light);
        }

        .btn-large.whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
        }

        /* FOOTER */
        footer {
            background-color: #011129;
            color: rgba(255,255,255,0.7);
            padding: 40px 0 20px;
            font-size: 14px;
            border-top: 4px solid var(--accent-orange);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-logo {
            color: var(--text-light);
            font-size: 22px;
            font-weight: 700;
        }

        .footer-logo span {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
        }

        /* RESPONSIVE STYLES */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero h2 {
                font-size: 32px;
            }

            .hero .subtitle {
                font-size: 18px;
            }

            .cta-box h3 {
                font-size: 26px;
            }
        }