   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #c61d3c;
            --primary-dark: #9B1B2D;
            --secondary: #2E2F3E;
            --accent: #F2CC8F;
            --accent-hover: #E07A5F;
            --bg-light: #F9F6F2;
            --text-dark: #1C1C1C;
            --text-gray: #555555;
            --white: #ffffff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--white);
            }

            /* ✅ Optional: hide scrollbar visuals for WebKit browsers (Chrome, Edge, Safari) */
            ::-webkit-scrollbar {
                display: none;
            }

            /* ✅ Optional: ensure body doesn't shift due to scrollbar space */
            html {
                scrollbar-width: none; /* for Firefox */
            }


        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.87);
            backdrop-filter: blur(10px);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            padding: 10px 5%;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            height: 80px;
            width: 130px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .logo img {
            height: 60px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--accent);
            color: var(--text-dark);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(224, 122, 95, 0.3);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #8a236bff 0%, #aa2347ff 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 56px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .animated-text {
            display: inline-block;
            color: var(--accent);
            animation: fadeInUp 1s ease;
        }

        .hero-text p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--text-dark);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(242, 204, 143, 0.4);
        }

        .btn-secondary {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            padding: 16px 40px;
            border: 2px solid var(--white);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
        }

        .hero-video {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .hero-video:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .hero-video iframe {
            width: 100%;
            aspect-ratio: 16/9;
            border: none;
        }

        /* About Section */
        .about-section {
            padding: 70px 5%;
            background: var(--white);
        }

        .cab-services{
            padding: 35px 5%;
            background-color: #edd7d725;
        }

        .about-us{
            padding: 70px 5%;
            background-color: #edd7e125;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-text p {
            font-size: 18px;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .about-text strong {
            color: var(--primary);
        }

        .team-members {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .member-card {
            background: var(--bg-light);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .member-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .member-card:hover .member-image {
            transform: scale(1.1);
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-info h4 {
            font-size: 22px;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .member-info p {
            color: var(--text-gray);
            font-size: 16px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 15px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            position: relative;
        }

        .newsletter-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 60px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .newsletter-content h2 {
            font-size: 36px;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .newsletter-content p {
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 24px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            border-color: var(--primary);
        }

        .newsletter-form button {
            padding: 16px 40px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Membership Section */
        .membership-section {
            padding: 120px 5%;
            background: var(--white);
        }

        .membership-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
        }

        .pricing-table {
            background: var(--bg-light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .pricing-table h4 {
            padding: 30px;
            background: var(--secondary);
            color: var(--white);
            font-size: 24px;
        }

        .table-wrapper {
            padding: 30px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        table th {
            background: var(--secondary);
            color: var(--white);
            padding: 15px;
            text-align: center;
            font-weight: 600;
        }

        table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }

        table tr:hover {
            background: rgba(198, 29, 60, 0.05);
        }

        .membership-form-wrapper {
            background: var(--secondary);
            border-radius: 20px;
            padding: 40px;
            color: var(--white);
        }

        .membership-form-wrapper h4 {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--accent);
            color: var(--text-dark);
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        /* Events Section */
        .events-section {
            padding: 120px 5%;
            background: var(--bg-light);
        }

        .events-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            gap: 40px;
        }

        .event-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            display: grid;
            grid-template-columns: auto 1fr 2fr;
            gap: 30px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }

        .event-date {
            background: var(--primary);
            color: var(--white);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            min-width: 100px;
        }

        .event-date h3 {
            font-size: 36px;
            margin-bottom: 5px;
        }

        .event-date span {
            font-size: 14px;
        }

        .event-image {
            border-radius: 15px;
            overflow: hidden;
            width: 300px;
            height: 200px;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .event-card:hover .event-image img {
            transform: scale(1.1);
        }

        .event-info h3 {
            font-size: 24px;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .event-info p {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .event-details {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
        }

        .event-detail-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .event-detail-item span:first-child {
            font-weight: 600;
            color: var(--secondary);
        }

        .event-btn {
            background: var(--accent);
            color: var(--text-dark);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .event-btn:hover {
            background: var(--accent-hover);
            transform: translateX(5px);
        }

        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 650px) {
                .hero-content {
                    margin-top:  100px !important;
                }
        }

        @media (max-width: 244px) {
            .hero-content,
            .about-content,
            .membership-content {
                grid-template-columns: 1fr;
                margin-top:25%;
                margin-bottom:10%;
            }
        }
        @media (max-width: 1024px) {
            .hero-content,
            .about-content,
            .membership-content {
                grid-template-columns: 1fr;
                margin-top:10%;
                margin-bottom:10%;
            }

            .hero-text h1 {
                font-size: 42px;
            }

            .event-card {
                grid-template-columns: 1fr;
            }

            .event-image {
                width: 100%;
            }
        }

        @media (max-width: 1100px) {
            .nav-links {
                position: fixed;
                top: 120px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(249, 202, 210, 0.98);
                flex-direction: column;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -8px);
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 36px;
            }

            .team-members {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

       /* ===== Custom Events Section ===== */
.custom-events-section {
  padding: 60px 20px;
  background: #f9fafc;
  text-align: center;
}

.custom-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

/* ===== Grid Layout ===== */
.custom-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* ===== Event Card ===== */
.custom-event-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 480px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.custom-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

/* ===== Event Date ===== */
.custom-event-date {
  color: #fff;
  padding: 20px;
  text-align: center;
  background: var(--date-color, #007bff);
}

.custom-event-date h3 {
  font-size: 2rem;
  margin: 0;
}

.custom-event-date span {
  display: block;
  font-size: 1rem;
  margin-top: 4px;
}

/* ===== Event Image ===== */
.custom-event-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ===== Event Info ===== */
.custom-event-info {
  padding: 20px;
  text-align: left;
}

.custom-event-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.custom-event-info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ===== Event Details ===== */
.custom-event-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.custom-event-detail-item span:first-child {
  font-weight: 600;
  color: #444;
}

/* ===== Button ===== */
.custom-event-btn {
  display: inline-block;
  background: var(--date-color, #007bff);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.custom-event-btn:hover {
  background: var(--btn-hover, #0056b3);
}

/* ===== Theme Variations ===== */
.theme-blue { --date-color: #007bff; --btn-hover: #0056b3; }
.theme-purple { --date-color: #6f42c1; --btn-hover: #563d7c; }
.theme-green { --date-color: #28a745; --btn-hover: #1e7e34; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .custom-events-grid {
    grid-template-columns: 1fr;
  }
}
