 :root {
            --primary-gradient: linear-gradient(135deg, #ff6b9d 0%, #c06cff 50%, #5ea3ff 100%);
            --secondary-gradient: linear-gradient(135deg, #ffa6c9 0%, #e09fff 50%, #8fc4ff 100%);
            --pink: #ff6b9d;
            --purple: #c06cff;
            --blue: #5ea3ff;
            --light-pink: #fff0f5;
            --light-blue: #e8f4ff;
            --dark-bg: #1a1a2e;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            overflow-x: hidden;
            color: #333;
        }

        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-logo {
    max-height: 60px;      /* adjust as needed */
    width: auto;
    object-fit: contain;
}

/** whatsapp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

        /* Hero Section */
        .hero-section {
            min-height: 55vh;
            background: linear-gradient(135deg, #ffa6c9 0%, #e09fff 30%, #8fc4ff 100%);
            display: flex;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

        .hero-section::after {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            background: rgba(255,255,255,0.12);
            border-radius: 50%;
            top: -140px;
            right: -140px;
        }

        .hero-container {
            max-width: 1200px;
            width: 100%;
            margin: auto;
            padding: 20px 20px 40px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 18px;
            color: #fff;
        }

        .hero-content h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 18px;
            color: #fff;
        }

        .hero-content p {
            font-size: 18px;
            max-width: 520px;
            opacity: 0.95;
            line-height: 1.7;
            margin-bottom: 35px;
            color: #fff;
        }

        .hero-buttons {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .store-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 22px;
            border-radius: 14px;
            background: rgba(255,255,255,0.18);
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .store-btn i {
            font-size: 26px;
        }

        .store-btn span {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .store-btn small {
            font-size: 11px;
            opacity: 0.9;
        }

        .store-btn.primary {
            background: #ffffff;
            color: var(--pink);
            box-shadow: 0 16px 35px rgba(0,0,0,0.15);
        }

        .store-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(0,0,0,0.25);
        }

        /* Modern Buttons */
        .btn-modern {
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            position: relative;
            overflow: hidden;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .btn-modern::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
            transform: translate(-50%, -50%);
        }

        .btn-modern:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-modern span {
            position: relative;
            z-index: 1;
        }

        .btn-primary-modern {
            background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
            color: white;
        }

        .btn-white-modern {
            background: white;
            color: var(--pink);
        }

        .btn-modern:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Section Styling */
        section {
            padding: 100px 0;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 4rem;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(180deg, var(--light-pink), #ffffff);
        }

        .about-header h2 {
            font-size: 40px;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .about-subtitle {
            font-size: 18px;
            color: #666;
        }

        .about-text p {
            font-size: 16.5px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 18px;
        }

        .about-highlights {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .highlight-box {
            background: #fff;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(255, 107, 157, 0.1);
            border-left: 4px solid var(--pink);
        }

        .highlight-box h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #222;
        }

        .highlight-box i {
            color: var(--pink);
        }

        /* Mission & Vision */
        .mission-vision {
            padding: 90px 20px;
            background: #ffffff;
            text-align: center;
        }

        .mission-vision h2 {
            font-size: 36px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 50px;
            font-weight: 700;
        }

        .mv-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            max-width: 1100px;
            margin: auto;
        }

        .mv-card {
            background: linear-gradient(135deg, var(--light-pink), var(--light-blue));
            padding: 35px 30px;
            border-radius: 16px;
            width: 420px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .mv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(255, 107, 157, 0.2);
        }

        .mv-icon {
            font-size: 42px;
            margin-bottom: 15px;
        }

        /* Services Section */
        .services-section {
            padding: 100px 20px;
            background: linear-gradient(180deg, var(--light-blue), #ffffff);
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            max-width: 1150px;
            margin: auto;
        }

        .service-card {
            background: #ffffff;
            padding: 50px 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 18px 40px rgba(0,0,0,0.08);
            transition: all 0.35s ease;
            position: relative;
        }

        .service-card::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 20px;
            border: 2px solid transparent;
            background: var(--primary-gradient) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 28px 55px rgba(255, 107, 157, 0.2);
        }

        .icon-wrap {
            width: 75px;
            height: 75px;
            margin: auto auto 25px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 30px;
            box-shadow: 0 12px 28px rgba(255, 107, 157, 0.3);
        }

        .service-card h4 {
            font-size: 21px;
            margin-bottom: 15px;
            color: #222;
            font-weight: 700;
        }

        .btn-see-more {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 28px;
            background: var(--primary-gradient);
            color: #ffffff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
        }

        .btn-see-more:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
        }

        /* Locations Section */
        .locations-section {
            background: var(--light-pink);
        }

        .location-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 30px rgba(255, 107, 157, 0.15);
            border-left: 5px solid var(--pink);
            transition: all 0.3s;
        }

        .location-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 40px rgba(255, 107, 157, 0.25);
        }

        .location-card h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--pink);
        }

        /* Membership Section */
        .membership-section {
            background: var(--primary-gradient);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .membership-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            top: -150px;
            right: -150px;
        }

        .membership-section h2 {
            color: white !important;
            font-size: 3rem;
            font-weight: 700;
        }

        /* Career Section */
        .career-section {
            background: linear-gradient(135deg, var(--light-blue), var(--light-pink));
        }

        .career-image {
            background: var(--primary-gradient);
            height: 400px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
        }

        /* Contact Section */
        .contact-section {
            background: #ffffff;
            padding: 100px 0;
        }

        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--light-pink), var(--light-blue));
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            display: block;
        }

        .form-control {
            border-radius: 12px;
            border: 2px solid rgba(255, 107, 157, 0.2);
            padding: 12px 18px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--pink);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.15);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 157, 0.3);
        }

        /* Modal Styling */
        .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }

        .modal-header {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 25px 30px;
        }

        .modal-title {
            font-weight: 700;
            font-size: 1.5rem;
        }

        .btn-close {
            filter: brightness(0) invert(1);
        }

        .modal-body {
            padding: 40px 30px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-brand {
            font-size: 2rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary-gradient);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 3rem;
            padding-top: 2rem;
        }

        .visitor-badge {
            display: inline-block;
            background: var(--primary-gradient);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-form-container {
                padding: 30px 20px;
            }
        }