
  * {
            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;

            }
        }
/* 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: 100%;
    max-width: 100%;
    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);
    }
    .map-img {
    width: 300px;
    height: 250px;}
    
    
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .map-col .map-img {
        max-height: 220px;
    }
     .map-img {
    width: 300px;
    height: 250px;}
    
}