/* nav bar */
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        nav {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            /* background: linear-gradient(to right, #97055a50, #eaf3ff); */
            background: rgba(198, 235, 250, 0.692);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
        }
        .logo-img {
    width: 220px;      /* adjust size */
    height: auto;
}

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            color: #f3f6fc;
            background: #012452;
        }

        .services-dropdown {
            position: relative;
        }

        .services-btn {
            background: none;
            border: none;
            color: #374151;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .services-btn:hover {
            color: #f5f7fa;
            background: #012452;
        }

        .chevron {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .chevron.rotate {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border: 1px solid #e5e7eb;
            padding: 8px 0;
            min-width: 224px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
        }

        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 16px;
            color: #374151;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .dropdown-menu a:hover {
            background: linear-gradient(90deg, #eff6ff, #faf5ff);
            color: #2563eb;
        }

        .contact-section {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .contact-btn:hover {
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }

        .phone-btn {
            background: linear-gradient(135deg, #2563eb, #1e40af);
        }

        .phone-btn:hover {
            background: linear-gradient(135deg, #1e40af, #1e3a8a);
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, #16a34a, #15803d);
        }

        .whatsapp-btn:hover {
            background: linear-gradient(135deg, #15803d, #166534);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .mobile-toggle:hover {
            background: #f3f4f6;
        }

        .mobile-toggle svg {
            width: 24px;
            height: 24px;
            color: #374151;
        }

        .mobile-menu {
            display: none;
            background: white;
            border-top: 1px solid #e5e7eb;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu-content {
            padding: 12px 16px;
        }

        .mobile-menu-content a,
        .mobile-menu-content button {
            display: block;
            width: 100%;
            text-align: left;
            padding: 12px 16px;
            margin: 4px 0;
            color: #374151;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
        }

        .mobile-menu-content a:hover,
        .mobile-menu-content button:hover {
            background: #eff6ff;
            color: #2563eb;
        }

        .mobile-services-dropdown {
            margin: 4px 0;
        }

        .mobile-services-btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-left: 16px;
            background: linear-gradient(90deg, rgba(239, 246, 255, 0.5), rgba(250, 245, 255, 0.5));
            border-radius: 8px;
            margin-top: 4px;
        }

        .mobile-dropdown-content.active {
            max-height: 400px;
            padding: 8px;
        }

        .mobile-dropdown-content a {
            padding: 8px 16px;
            color: #4b5563;
            font-size: 15px;
        }

        .mobile-contact-section {
            padding-top: 12px;
            border-top: 1px solid #e5e7eb;
            margin-top: 8px;
        }

        .demo-content {
            height: 100vh;
            background: linear-gradient(135deg, #eff6ff, #faf5ff, #fce7f3);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .demo-text {
            text-align: center;
        }

        .demo-text h1 {
            font-size: 4rem;
            font-weight: bold;
            background: linear-gradient(135deg, #2563eb, #9333ea, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
        }

        .demo-text p {
            font-size: 1.5rem;
            color: #4b5563;
            max-width: 700px;
            margin: 0 auto;
        }

        @media (max-width: 1280px) {
            .contact-section {
                display: none;
            }
        }

        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .logo-text {
                display: none;
            }
            .logo-img{
                width: 200px;      /* adjust size */
                height: auto;

            }
        }

        @media (max-width: 640px) {
            .demo-text h1 {
                font-size: 2.5rem;
            }

            .demo-text p {
                font-size: 1.2rem;
            }

            .logo-text {
                display: block;
                font-size: 20px;
            }
              .logo-img{
                width: 170px;      /* adjust size */
                height: auto;

            }
        }

        /* hero section */
        .hero-section {
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            color: #0f172a;
        }

        .badge {
            display: inline-block;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            margin-top: 25px;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-heading {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #0f172a 0%, #1e40af 70%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 35px;
            color: #475569;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .btn {
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
        }

        .btn-secondary {
            background: white;
            color: #0f172a;
            border: 2px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .btn-secondary:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 0.8s ease-out 0.4s both;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
            /* background: white; */
            max-width: 380px;
            width: 100%;
        }

        .placeholder-image {
            width: 120%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 968px) {
            .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .badge{
                margin-top: 80px;
            }

            .hero-content {
                order: 1;
            }

            .hero-image {
                display: none;
            }

            .hero-heading {
                font-size: 42px;
            }
            
            .hero-section {
                padding: 30px 20px;
                min-height: auto;
            }
        }

        @media (max-width: 768px) {
            .hero-heading {
                font-size: 36px;
            }
             .badge{
                margin-top: 70px;
            }

            .hero-description {
                font-size: 16px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                text-align: center;
                width: 100%;
            }
            
            .hero-section {
                padding: 25px 20px;
            }
        }

        /* about */
         /* About Section Styles */
        .about-section {
            background: linear-gradient(180deg, #fefefe 0%, #f0fdf4 50%, #ecfdf5 100%);
            padding: 100px 20px;
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-section .container {
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            width: fit-content;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
        }

        .about-heading {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            color: #0f172a;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #0f172a 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text {
            font-size: 20px;
            line-height: 1.8;
            color: #01060e;
            margin-bottom: 20px;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 15px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            color: #1e293b;
            font-weight: 500;
        }

        .feature-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            align-content: center;
        }

        .stat-card {
            background: white;
            padding: 35px 25px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid #e0f2fe;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-icon {
            font-size: 36px;
            margin-bottom: 15px;
            filter: grayscale(0.2);
        }

        .stat-number {
            font-size: 40px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #0f172a 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 15px;
            color: #64748b;
            font-weight: 500;
        }

        @media (max-width: 968px) {
            .about-section .container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-heading {
                font-size: 36px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .about-section {
                padding: 60px 20px;
            }
        }

        @media (max-width: 640px) {
            .about-heading {
                font-size: 32px;
            }

            .about-text {
                font-size: 16px;
            }

            .stats-grid {
                grid-template-columns: repeat(4, 280px);
                gap: 15px;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 10px;
            }

            .stat-card {
                padding: 30px 20px;
                scroll-snap-align: center;
                min-width: 280px;
            }

            .stat-number {
                font-size: 36px;
            }

            .about-section {
                padding: 50px 20px;
            }
        }
        /* Services Section Styles */
        .services-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            padding: 50px 20px;
            position: relative;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .services-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .services-heading {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.2;
            color: #0f172a;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #0f172a 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-description {
            font-size: 18px;
            line-height: 1.7;
            color: #64748b;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            transition: all 0.4s ease;
        }

        .service-card[data-color="primary"] {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-color: #bae6fd;
        }

        .service-card[data-color="primary"]::before {
            background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
        }

        .service-card[data-color="secondary"] {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border-color: #bbf7d0;
        }

        .service-card[data-color="secondary"]::before {
            background: linear-gradient(90deg, #10b981 0%, #059669 100%);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .service-card[data-color="primary"]:hover {
            border-color: #3b82f6;
        }

        .service-card[data-color="secondary"]:hover {
            border-color: #10b981;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .service-card[data-color="primary"] .service-icon {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }

        .service-card[data-color="secondary"] .service-icon {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-title {
            font-size: 22px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .service-text {
            font-size: 15px;
            line-height: 1.7;
            color: #475569;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .service-btn {
            background: transparent;
            border: none;
            color: #3b82f6;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            padding: 12px 0;
            text-align: left;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-card[data-color="secondary"] .service-btn {
            color: #10b981;
        }

        .service-btn:hover {
            gap: 12px;
        }

        .service-card[data-color="primary"] .service-btn:hover {
            color: #2563eb;
        }

        .service-card[data-color="secondary"] .service-btn:hover {
            color: #059669;
        }

        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 60px 20px;
            }

            .services-heading {
                font-size: 32px;
            }

            .services-description {
                font-size: 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 30px 25px;
            }

            .service-icon {
                width: 70px;
                height: 70px;
            }

            .service-title {
                font-size: 20px;
            }

            .service-text {
                font-size: 14px;
            }
        }
        /* strip for the CTA */
         /* CTA Strip Styles */
        .cta-strip {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-strip::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-strip::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
            pointer-events: none;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .cta-content {
            flex: 1;
        }

        .cta-heading {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.3;
            color: white;
            margin: 0;
        }

        .cta-highlight {
            background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .cta-highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
            border-radius: 2px;
        }

        .cta-action {
            flex-shrink: 0;
        }

        .cta-button {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 17px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
            gap: 15px;
        }

        .cta-button svg {
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        @media (max-width: 968px) {
            .cta-strip {
                padding: 60px 20px;
            }

            .cta-container {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .cta-heading {
                font-size: 32px;
            }

            .cta-button {
                padding: 16px 35px;
                font-size: 16px;
            }
        }

        @media (max-width: 640px) {
            .cta-strip {
                padding: 50px 20px;
            }

            .cta-heading {
                font-size: 26px;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
                padding: 16px 30px;
            }
        }

        /* testimonial start */
     /* Unique container class to avoid conflicts */
        .testimonials-unique-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 60px 20px;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .testimonials-unique-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            color: #1e293b;
            font-weight: 700;
        }

        .testimonials-unique-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonials-unique-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 40px 0;
        }

        .testimonials-unique-slider-wrapper {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .testimonials-unique-card {
            flex: 0 0 calc(100% / 3);
            padding: 15px;
            transition: all 0.4s ease;
        }

        .testimonials-unique-card-inner {
            background-color: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .testimonials-unique-card.testimonials-unique-active .testimonials-unique-card-inner {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .testimonials-unique-quote-icon {
            font-size: 2.5rem;
            color: #e2e8f0;
            margin-bottom: 15px;
            position: absolute;
            top: 15px;
            right: 25px;
            z-index: 0;
        }

        .testimonials-unique-review-text {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .testimonials-unique-star-rating {
            display: flex;
            margin-bottom: 20px;
        }

        .testimonials-unique-star-rating i {
            color: #fbbf24;
            font-size: 1.2rem;
            margin-right: 3px;
        }

        .testimonials-unique-reviewer-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1e293b;
            margin-top: auto;
        }

        /* Navigation buttons */
        .testimonials-unique-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #3b82f6;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .testimonials-unique-nav-btn:hover {
            background-color: #3b82f6;
            color: white;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        .testimonials-unique-prev-btn {
            left: 0;
        }

        .testimonials-unique-next-btn {
            right: 0;
        }

        /* Dots indicator */
        .testimonials-unique-dots-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .testimonials-unique-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonials-unique-dot.testimonials-unique-active {
            background-color: #3b82f6;
            transform: scale(1.3);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .testimonials-unique-card {
                flex: 0 0 50%;
            }
            
            .testimonials-unique-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .testimonials-unique-card {
                flex: 0 0 100%;
            }
            
            .testimonials-unique-nav-btn {
                width: 42px;
                height: 42px;
                font-size: 1rem;
            }
            
            .testimonials-unique-title {
                font-size: 1.8rem;
            }
            
            .testimonials-unique-subtitle {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .testimonials-unique-container {
                padding: 40px 15px;
            }
            
            .testimonials-unique-card-inner {
                padding: 25px 20px;
            }
            
            .testimonials-unique-review-text {
                font-size: 1rem;
            }
        }

        /* Focus animation for center card */
        @keyframes testimonials-unique-pulse {
            0% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); }
            50% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2); }
            100% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); }
        }

        .testimonials-unique-card.testimonials-unique-active .testimonials-unique-card-inner {
            animation: testimonials-unique-pulse 4s infinite;
        }
/* testimonial end */

/* form Section Layout */
.service-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 7%;
    gap: 50px;
    background: linear-gradient(135deg, #f6f9fc, #eaf1ff);
    font-family: "Segoe UI", sans-serif;
}

/* Left Content */
.service-content {
    flex: 1;
}

.small-title {
    color: #0056d6;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.main-title {
    margin: 10px 0 20px;
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.description {
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.points {
    display: flex;
    gap: 50px;
}

.point-block h4 {
    color: #003e94;
    font-size: 18px;
    margin-bottom: 10px;
}

.point-block ul {
    padding-left: 20px;
    color: #333;
}

.point-block ul li {
    margin-bottom: 8px;
}

/* WhatsApp Button */
.whatsapp-btn-2 {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 25px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn-2:hover {
    background: #1eb85c;
}

/* Right Side Form */
.service-form {
    width: 380px;
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-form h2 {
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    transition: 0.25s;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    border-color: #0056d6;
}

.service-form textarea {
    height: 100px;
}

/* Submit Button */
.service-form button {
    width: 100%;
    padding: 12px;
    background: #f9b825;
    color: #000;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.service-form button:hover {
    background: #dca319;
}

/* Responsive */
@media(max-width: 900px) {
    .service-hero {
        flex-direction: column;
    }
    .service-form {
        width: 100%;
    }
    .points {
        flex-direction: column;
    }
}
/* footer */
.main-footer {
    background: #f5f9ff;
    padding: 60px 7% 25px;
    font-family: "Segoe UI", sans-serif;
    color: #333;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #003e94;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #0056d6;
}

.footer-col p a {
    color: #0056d6;
    text-decoration: none;
}

.social-icons a {
    margin-top: 10px;
    display: inline-block;
    margin-right:12px;
    font-size: 20px;
    color: #0056d6;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #003e94;
}

/* Map Column */
.map-col .map-img {
    width: 350px;
    height: 250px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.map-col .map-img:hover {
    transform: scale(1.03);
}
.footer-icon {
    margin-top: 12px;
    margin-right: 8px;
    color: #0056d6;
    font-size: 16px;
}

/* Bottom Footer */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #d9e6ff;
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .map-col .map-img {
        max-height: 220px;
    }
}
/* why too chose */
/* Why Choose Us Section Styles */
        .why-choose-section {
            background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .why-choose-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .why-choose-content {
            display: flex;
            flex-direction: column;
        }

        .why-choose-heading {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.2;
            color: #0f172a;
            margin-bottom: 40px;
        }

        .highlight-text {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .feature-item-large {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .feature-icon-large {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
            transition: all 0.3s ease;
        }

        .feature-item-large:hover .feature-icon-large {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-content-large {
            flex: 1;
        }

        .feature-title-large {
            font-size: 20px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .feature-desc-large {
            font-size: 16px;
            line-height: 1.7;
            color: #64748b;
        }

        .why-choose-images {
            position: relative;
            height: 600px;
        }

        .image-decoration-circle {
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        .image-decoration-dots {
            position: absolute;
            width: 120px;
            height: 120px;
            background-image: radial-gradient(circle, #10b981 2px, transparent 2px);
            background-size: 20px 20px;
            top: -20px;
            right: -20px;
            opacity: 0.3;
            z-index: 0;
        }

        .image-container-1 {
            position: absolute;
            top: 0;
            left: 0;
            width: 320px;
            height: 380px;
            border-radius: 200px 200px 30px 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            z-index: 2;
            border: 6px solid white;
        }

        .image-container-2 {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 280px;
            height: 340px;
            border-radius: 30px 30px 140px 140px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            z-index: 3;
            border: 6px solid white;
        }

        .why-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .image-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
            z-index: 4;
            animation: fadeInUp 0.6s ease-out 0.5s both;
        }

        .stats-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 25px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 4;
            animation: fadeInDown 0.6s ease-out 0.5s both;
        }

        .stat-item-overlay {
            text-align: center;
        }

        .stat-number-overlay {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }

        .stat-label-overlay {
            font-size: 13px;
            color: #64748b;
            font-weight: 600;
        }

        @media (max-width: 1100px) {
            .why-choose-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .why-choose-images {
                height: 500px;
                margin: 0 auto;
                max-width: 600px;
            }

            .why-choose-heading {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .why-choose-section {
                padding: 60px 20px;
            }

            .why-choose-heading {
                font-size: 32px;
            }

            .features-list {
                gap: 25px;
            }

            .feature-icon-large {
                width: 50px;
                height: 50px;
            }

            .feature-icon-large svg {
                width: 26px;
                height: 26px;
            }

            .feature-title-large {
                font-size: 18px;
            }

            .feature-desc-large {
                font-size: 15px;
            }

            .why-choose-images {
                height: 450px;
            }

            .image-container-1 {
                width: 260px;
                height: 320px;
            }

            .image-container-2 {
                width: 230px;
                height: 280px;
            }

            .image-badge {
                padding: 10px 16px;
                font-size: 12px;
            }

            .stats-overlay {
                padding: 15px 20px;
            }

            .stat-number-overlay {
                font-size: 26px;
            }
        }
