/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik+Dirt&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
  }
  
:root {
 

    /* Core variables */
    --overlay-opacity: 0.5;
    --transition-speed: 0.3s;
    --content-width: min(90%, 1200px);
    
    /* Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --button-bg: rgba(255, 255, 255, 0.9);
    --button-hover-bg: rgba(255, 255, 255, 1);
    
    /* Responsive sizes */
    --dot-sizes: clamp(8px, 1.5vw, 16px);
    --button-width: clamp(160px, 20vw, 240px);
    --button-height: clamp(45px, 5vw, 65px);
    --button-font: clamp(14px, 1.5vw, 18px);
    --title-size: clamp(2rem, 5vw, 4rem);
    --subtitle-size: clamp(1rem, 2vw, 1.5rem);
}

/* Navbar Styles - Light and Dark Themes */
.navbar {
    transition: all 0.3s ease;
    padding: 0;
}

.navbar.light-theme {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(10px);
}

.navbar.dark-theme {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: saturate(180%) blur(10px);
}

.navbar.scrolled.light-theme {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled.dark-theme {
    background: rgba(0, 0, 0, 0.9);
}

/* Logo Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand img {
    width: 40px;
    height: auto;
    transition: all 0.3s ease;
}

.logo {
    font-weight: 500;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    transition: color 0.3s ease, font-size 0.3s ease, letter-spacing 0.3s ease;
}

.navbar.light-theme .logo {
    color: #333;
}

.navbar.dark-theme .logo {
    color: rgb(254, 252, 252);
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar.light-theme .nav-link {
    color: #333 !important;
}

.navbar.dark-theme .nav-link {
    color: white !important;
}

.navbar.light-theme .nav-link:hover {
    color: #fc036b !important;
}

.navbar.dark-theme .nav-link:hover {
    color: #fc036b !important;
}

.navbar.light-theme .nav-link.active {
    border: 2px solid #333;
    color: #fc036b !important;
}

.navbar.dark-theme .nav-link.active {
    border: 2px solid whitesmoke;
    color: #fc036b !important;
}
@media (max-width: 575.98px) {
    .navbar-brand img {
        width: 70px;
    }
    
    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.1rem;
    }
}
/* Logo Theme Switching */
.navbar .light-logo {
    display: none;
}

.navbar .dark-logo {
    display: block;
}

.navbar.light-theme .light-logo {
    display: block;
}

.navbar.light-theme .dark-logo {
    display: none;
}
/* Contact Button Styles */
.btn-contact {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.5rem 1.5rem !important;
    margin: 0 0.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.navbar.light-theme .btn-contact {
    background-color: #fc036b;
    color: white !important;
    border: 2px solid #fc036b;
}

.navbar.dark-theme .btn-contact {
    background-color: #fc036b;
    color: white !important;
    border: 2px solid #fc036b;
}

.navbar.light-theme .btn-contact:hover {
    background-color: transparent;
    color: #fc036b !important;
}

.navbar.dark-theme .btn-contact:hover {
    background-color: transparent;
    color: #fc036b !important;
}

/* Theme Switch Styles */
.theme-switch {
    margin-left: 1rem;
}

.checkbox {
    opacity: 0;
    position: absolute;
}

.label {
    width: 48px;
    height: 22px;
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    position: relative;
    transform: scale(1.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.navbar.light-theme .label {
    background-color: #e0e0e0;
}

.navbar.dark-theme .label {
    background-color: #111;
}

.ball {
    width: 20px;
    height: 18px;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.navbar.light-theme .ball {
    background-color: #333;
}

.navbar.dark-theme .ball {
    background-color: white;
}

.checkbox:checked + .label .ball {
    transform: translateX(24px);
}

.navbar.light-theme .fa-moon-o {
    color: #333;
}

.navbar.dark-theme .fa-moon-o {
    color: white;
}

.navbar.light-theme .fa-sun-o {
    color: orange;
}

.navbar.dark-theme .fa-sun-o {
    color: yellow;
}

/* Body Theme Styles */
body {
    transition: all 0.3s ease;
}

body.light-theme {
    background-color: #f5f5f5;
    color: #333;
}

body.dark-theme {
    background-color: #121212;
    color: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        position: fixed;
        top: 60px; /* Adjust based on your navbar height */
        right: 20px;
        width: 250px;
        max-width: 80vw;
        height: auto;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out, background-color 0.3s ease;
        z-index: 1000;
    }
    
    .navbar.light-theme .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar.dark-theme .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .navbar-toggler {
        display: block;
        z-index: 1001;
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar.light-theme .navbar-toggler {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .navbar.dark-theme .navbar-toggler {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .navbar.light-theme .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar.dark-theme .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .nav-link {
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .btn-contact {
        margin: 0.5rem auto;
        display: inline-block;
        text-align: center;
        width: auto;
    }
    
    .theme-switch {
        margin: 1rem 0;
        display: flex;
        justify-content: center;
    }

    /* Logo adjustments for medium screens */
    .navbar-brand img {
        width: 85px;
    }
    
    .logo {
        font-size: 1.3rem;
        letter-spacing: 0.3rem;
    }
}

/* Extra small devices (phones) */
@media (max-width: 575.98px) {
    .navbar-collapse {
        width: 220px;
        right: 10px;
    }
    
    /* Logo adjustments for extra small screens */
    .navbar-brand img {
        width: 80px;
    }
    
    .logo {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    
    .btn-contact {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem !important;
    }
}

/* Small devices (landscape phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .navbar-collapse {
        width: 240px;
    }
    
    /* Logo adjustments for small screens */
    .navbar-brand img {
        width: 85px;
    }
    
    .logo {
        font-size: 1.1rem;
        letter-spacing: 0.1rem;
    }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-collapse {
        width: 300px;
    }
    
    /* Logo adjustments for medium screens */
    .navbar-brand img {
        width: 87px;
    }
    
    .logo {
        font-size: 2.1rem;
        letter-spacing: 0.3rem;
    }
}

/* Large devices (desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Logo adjustments for large screens */
    .navbar-brand img {
        width: 70px;
    }
    
    .logo {
        font-size: 2rem;
        letter-spacing: 0.3rem;
    }
}

/* Extra large devices */
@media (min-width: 1200px) {
    /* Logo adjustments for extra large screens */
    .navbar-brand img {
        width: 100px;
    }
    
    .logo {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;600;700&display=swap');



/* Main container */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;/* Navbar Styles - Light and Dark Themes */
:root {
    --navbar-transition: all 0.3s ease;
    --navbar-padding: 1rem 0;
    --navbar-bg-light: rgba(255, 255, 255, 0.8);
    --navbar-bg-dark: rgba(0, 0, 0, 0.2);
    --navbar-bg-light-scrolled: rgba(255, 255, 255, 0.95);
    --navbar-bg-dark-scrolled: rgba(0, 0, 0, 0.9);
    --primary-color: #fc036b;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--navbar-transition);
    padding: var(--navbar-padding);
}

.navbar.light-theme {
    background: var(--navbar-bg-light);
    backdrop-filter: saturate(180%) blur(10px);
}

.navbar.dark-theme {
    background: var(--navbar-bg-dark);
    backdrop-filter: saturate(180%) blur(10px);
}

.navbar.scrolled.light-theme {
    background: var(--navbar-bg-light-scrolled);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled.dark-theme {
    background: var(--navbar-bg-dark-scrolled);
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .navbar-brand,
    .nav-link,
    .btn-contact,
    .ball {
        transition: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .navbar.light-theme {
        background: #ffffff;
        backdrop-filter: none;
    }
    
    .navbar.dark-theme {
        background: #000000;
        backdrop-filter: none;
    }
}

/* Rest of the navbar styles remain unchanged *//* Navbar Styles - Light and Dark Themes */
:root {
    --navbar-transition: all 0.3s ease;
    --navbar-padding: 1rem 0;
    --navbar-bg-light: rgba(255, 255, 255, 0.8);
    --navbar-bg-dark: rgba(0, 0, 0, 0.2);
    --navbar-bg-light-scrolled: rgba(255, 255, 255, 0.95);
    --navbar-bg-dark-scrolled: rgba(0, 0, 0, 0.9);
    --primary-color: #fc036b;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--navbar-transition);
    padding: var(--navbar-padding);
}

.navbar.light-theme {
    background: var(--navbar-bg-light);
    backdrop-filter: saturate(180%) blur(10px);
}

.navbar.dark-theme {
    background: var(--navbar-bg-dark);
    backdrop-filter: saturate(180%) blur(10px);
}

.navbar.scrolled.light-theme {
    background: var(--navbar-bg-light-scrolled);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled.dark-theme {
    background: var(--navbar-bg-dark-scrolled);
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .navbar-brand,
    .nav-link,
    .btn-contact,
    .ball {
        transition: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .navbar.light-theme {
        background: #ffffff;
        backdrop-filter: none;
    }
    
    .navbar.dark-theme {
        background: #000000;
        backdrop-filter: none;
    }
}

/* Rest of the navbar styles remain unchanged *//* Navbar Styles - Light and Dark Themes */
:root {
    --navbar-transition: all 0.3s ease;
    --navbar-padding: 1rem 0;
    --navbar-bg-light: rgba(255, 255, 255, 0.8);
    --navbar-bg-dark: rgba(0, 0, 0, 0.2);
    --navbar-bg-light-scrolled: rgba(255, 255, 255, 0.95);
    --navbar-bg-dark-scrolled: rgba(0, 0, 0, 0.9);
    --primary-color: #fc036b;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--navbar-transition);
    padding: var(--navbar-padding);
}

.navbar.light-theme {
    background: var(--navbar-bg-light);
    backdrop-filter: saturate(180%) blur(10px);
}

.navbar.dark-theme {
    background: var(--navbar-bg-dark);
    backdrop-filter: saturate(180%) blur(10px);
}

.navbar.scrolled.light-theme {
    background: var(--navbar-bg-light-scrolled);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled.dark-theme {
    background: var(--navbar-bg-dark-scrolled);
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .navbar-brand,
    .nav-link,
    .btn-contact,
    .ball {
        transition: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .navbar.light-theme {
        background: #ffffff;
        backdrop-filter: none;
    }
    
    .navbar.dark-theme {
        background: #000000;
        backdrop-filter: none;
    }
}

/* Rest of the navbar styles remain unchanged */
    overflow: hidden;
}

/* Video styles */
.video-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
}

.video-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity var(--transition-speed) ease-in-out;
}

.video-slide.active {
    opacity: 1;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, var(--overlay-opacity));
    z-index: 1;
}

/* Content styles */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    height: 100%;
}

.hero-content .container {
    width: var(--content-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    text-align: center;
    color: var(--color-white);
}

.title {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    font-size: var(--subtitle-size);
    opacity: 0.9;
}

/* Button styles */
.button-wrapper {
    margin-top: clamp(1rem, 2vw, 2rem);
}

/* Hero section contact button */
.hero-content .book-btn {
    display: inline-block;
    background-color: #fc036b;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fc036b;
    margin-top: 20px;
}

.hero-content .book-btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 3, 107, 0.3);
}

.book-btn:active {
    transform: translateY(0);
}


/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: clamp(20px, 5vh, 60px);
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 1vw, 1.5rem);
}

.slider-dot {
    width: var(--dot-sizes);
    height: var(--dot-sizes);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-dot.active {
    background-color: var(--color-white);
    transform: scale(1.2);
}


/* events */
/* Filter Buttons */
.filter-container {
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    margin: 0 10px;
    border: 2px solid #fc036b;
    border-radius: 25px;
    background: transparent;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #fc036b;
    color: #fff;
}

/* Dark mode specific styles */
body.dark-theme .filter-btn {
    color: #fff;
    border-color: #fc036b;
}

body.dark-theme .filter-btn:hover,
body.dark-theme .filter-btn.active {
    background: #fc036b;
    color: #fff;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Event Cards */
.event-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Theme-specific card styles */
body.light-theme .event-card {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body.dark-theme .event-card {
    background-color: #2d2d2d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    position: relative;
    height: 200px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fc036b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.event-details {
    padding: 20px;
}
a{
    text-decoration: none;
}
.event-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: inherit;
}

.event-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info-item i {
    margin-right: 10px;
    color: #fc036b;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
}

.book-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    background-color: #fc036b;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.book-btn:hover {
    background-color: #d30259;
    transform: translateY(-2px);
}



/* Responsive Design */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .filter-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .filter-btn {
        margin: 5px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Review Cards Styling */
.review-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dark-theme .review-card {
    background: #2d2d2d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    margin-bottom: 1rem;
}

.review-header h5 {
    margin-bottom: 0.5rem;
    color: #333;
}

.dark-theme .review-header h5 {
    color: var(--color-white);
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
    overflow: hidden;
}

/*.read-more {*/
/*    color: #fc036b;*/
/*    text-decoration: none;*/
/*    font-weight: 500;*/
/*    padding: 0;*/
/*    margin-top: auto;*/
/*    border: none;*/
/*    background: none;*/
/*    cursor: pointer;*/
/*}*/

.read-more:hover {
    text-decoration: underline;
    color: #d30259;
}

.dark-theme .review-text {
    color: #aaa;
}

/* Rating Input Styling */
.rating input[type="radio"] {
    display: none;
}

.rating label {
    color: #ddd;
    font-size: 24px;
    padding: 0 2px;
    cursor: pointer;
}

.rating input[type="radio"]:checked ~ label {
    color: #ffd700;
}

.rating label:hover,
.rating label:hover ~ label {
    color: #ffd700;
}

/* about */
/* About Section Styles */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-gradient-start), var(--bg-gradient-end));
    transition: background 0.3s ease;
}

/* Container */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.divider {
    width: 6rem;
    height: 3px;
    background-color: #fc036b;
    margin: 0 auto 2rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Main Content Grid */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Founder Image Styles */
.founder-image-container {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .founder-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    border-radius: 1rem;
}

.blur-circle {
    position: absolute;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.2;
    z-index: 1;
}

.circle-1 {
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: #fc036b;
}

.circle-2 {
    top: -1.5rem;
    left: -1.5rem;
    background-color: #0066ff;
}

/* Info Cards */
.about-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fc036b;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
}

/* Theme Variables */
:root {
    --bg-gradient-start: #ffffff;
    --bg-gradient-end: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --card-bg: rgba(255, 255, 255, 0.8);
}

/* Dark Theme */
.dark-theme {
    --bg-gradient-start: #121212;
    --bg-gradient-end: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --card-bg: rgba(255, 255, 255, 0.08);
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-image {
        height: 400px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .founder-image {
        height: 350px;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .founder-image {
        height: 300px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .info-card {
        padding: 1rem;
    }
}

/* Safari Fix */
@supports not (backdrop-filter: blur(10px)) {
    .info-card, .stat-card {
        background: var(--card-bg);
    }
}

/* gallery */
/* Gallery Section Styles */
.gallery-section {
    background-color: var(--section-bg);
    padding: 80px 0;
}

.gallery-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transition: bottom 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fc036b;
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* contact */
/* Contact Section Styles */
.contact-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #fc036b;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Form Styles */
.form-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    color: #fc036b;
}

.form-control, .form-select {
    border: 1px solid #ced4da;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #fc036b;
    box-shadow: 0 0 0 0.2rem rgba(252, 3, 107, 0.25);
}

textarea.form-control {
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    background-color: #fc036b;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #fc036b;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: transparent;
    color: #fc036b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 3, 107, 0.3);
}

/* Dark Theme Styles */
.dark-theme .contact-section {
    background-color: #121212;
}

.dark-theme .contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.dark-theme .section-title {
    color: #fff;
}

.dark-theme .section-subtitle {
    color: #ccc;
}

.dark-theme .form-label {
    color: #fff;
}

.dark-theme .form-control,
.dark-theme .form-select,
.dark-theme .input-group-text {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dark-theme .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
}

/* Social Media Section Styles */
.social-section {
    background-color: var(--bg-color);
    transition: all 0.3s ease;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border-radius: 10px;
    color: white;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-card .follower-count {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.facebook { background: linear-gradient(45deg, #3b5998, #1877f2); }
.instagram { background: linear-gradient(45deg, #405de6, #e1306c); }
.twitter { background: linear-gradient(45deg, #1da1f2, #0d8ecf); }
.youtube { background: linear-gradient(45deg, #ff0000, #cc0000); }

/* Feedback Section Styles */
/* Feedback Section Styles with Theme Support */
.feedback-section {
    transition: all 0.3s ease;
}

/* Light Theme */
body.light-theme .feedback-section {
    background-color: #f8f9fa;
    color: #333;
}

/* Dark Theme */
body.dark-theme .feedback-section {
    background-color: #1a1a1a;
    color: #fff;
}

/* Card Styles */
.feedback-card {
    transition: all 0.3s ease;
}

body.light-theme .feedback-card {
    background-color: #fff;
    border: 1px solid #ddd;
}

body.dark-theme .feedback-card {
    background-color: #2d2d2d;
    border: 1px solid #404040;
    color: #fff;
}
/* Contact Form Styles */
.dark-theme .form-select {
    background-color: #333;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .form-select:focus {
    border-color: #fc036b;
    box-shadow: 0 0 0 0.2rem rgba(252, 3, 107, 0.25);
    background-color: #2d2d2d;
}

.dark-theme .form-select option {
    background-color: #333;
    color: #fff;
}

.dark-theme .form-select:hover {
    background-color: #2d2d2d;
}
/* Contact Form Styles */
.dark-theme .form-select {
    background-color: #333;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .form-select:focus {
    border-color: #fc036b;
    box-shadow: 0 0 0 0.2rem rgba(252, 3, 107, 0.25);
    background-color: #2d2d2d;
}

.dark-theme .form-select option {
    background-color: #333;
    color: #fff;
}

.dark-theme .form-select:hover {
    background-color: #2d2d2d;
}

/* Form Input Styles */
.theme-input {
    transition: all 0.3s ease;
}

body.light-theme .theme-input {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
}

body.dark-theme .theme-input {
    background-color: #333;
    border: 1px solid #404040;
    color: #fff;
}

body.dark-theme .theme-input::placeholder {
    color: #aaa;
}

/* Rating Stars */
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    font-size: 30px;
    margin: 0 2px;
    transition: color 0.3s ease;
}

body.light-theme .rating label {
    color: #ddd;
}

body.dark-theme .rating label {
    color: #555;
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
    color: #ffd700;
}

/* Submit Button */
.btn-submit {
    background-color: #fc036b;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid #fc036b;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: transparent;
    color: #fc036b;
}

body.dark-theme .btn-submit:hover {
    color: #fc036b;
}

/* Review Cards */
.review-card {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

body.light-theme .review-card {
    background-color: #fff;
    border: 1px solid #ddd;
}

body.dark-theme .review-card {
    background-color: #2d2d2d;
    border: 1px solid #404040;
    color: #fff;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-stars {
    color: #ffd700;
}

.review-date {
    transition: color 0.3s ease;
}

body.light-theme .review-date {
    color: #6c757d;
}

body.dark-theme .review-date {
    color: #aaa;
}

.review-text {
    line-height: 1.6;
}

body.light-theme .review-text {
    color: #4a4a4a;
}

body.dark-theme .review-text {
    color: #ddd;
}

/* Alert Styles */
.alert {
    transition: all 0.3s ease;
}

body.light-theme .alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

body.dark-theme .alert-success {
    background-color: #1e4a2e;
    border-color: #2a613d;
    color: #fff;
}

/* Animation for new reviews */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.new-review {
    animation: fadeIn 0.5s ease-out;
}

/* Section Title Styles */
.section-title {
    transition: color 0.3s ease;
}

body.light-theme .section-title {
    color: #333;
}

body.dark-theme .section-title {
    color: #fff;
}

.section-subtitle {
    transition: color 0.3s ease;
}

body.light-theme .section-subtitle {
    color: #6c757d;
}

body.dark-theme .section-subtitle {
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .rating label {
        font-size: 24px;
    }
    
    .review-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 1rem;
    }
    
    .rating label {
        font-size: 20px;
    }
}
/* Review Card and Read More Button Styles */
.review-card {
    height: auto;
    min-height: 200px;
    position: relative;
    transition: all 0.3s ease;
}

.review-text-container {
    position: relative;
}

.review-text {
    margin-bottom: 10px;
    line-height: 1.6;
    overflow: hidden;
}

.read-more {
  
    background: none;
    border: none;
    color: #fc036b;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 0;
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: underline;
    opacity: 0.8;
    width: auto;
    text-align: left;
}

.review-text-container.has-overflow .read-more-btn {
    display: block;
}

.read-more:hover {
    opacity: 1;
    color: #d1025a;
    transform: translateX(5px);
}

/* Dark theme support */
.dark-theme .read-more-btn {
    color: #ff4785;
}

.dark-theme .read-more-btn:hover {
    color: #ff6b9d;
}

/* Expanded state styles */
.review-card.expanded {
    height: auto;
}

.review-card.expanded .review-text {
    max-height: none;
}
/* Review Card and Read More Button Styles */
.review-card {
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.review-text-container {
    position: relative;
    padding: 15px 0;
}

.review-text {
    margin-bottom: 10px;
    line-height: 1.5;
    overflow: hidden;
}





.review-text-full {
    margin-top: 10px;
    line-height: 1.6;
}

/* Dark theme support */
.dark-theme .read-more {
    color: #ff4785;
}

.dark-theme .read-more:hover {
    color: #ff6b9d;
}

/* Expanded state */
.review-card.expanded {
    height: auto;
}

.review-card.expanded .review-text-full {
    display: block;
}


/* Footer Styles  */
.footer-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
}

/* Footer Logo */
.footer-logo {
    text-decoration: none;
}

.footer-logo .logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
}

/* Footer Titles */
.footer-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #fc036b;
}

/* Footer Text */
.footer-text {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fc036b;
    padding-left: 20px;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #b0b0b0;
}

.footer-contact li i {
    color: #fc036b;
    margin-right: 15px;
    margin-top: 5px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fc036b;
    color: #fff;
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 30px;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
}

.newsletter-form .form-control::placeholder {
    color: #b0b0b0;
}

.btn-subscribe {
    background: #fc036b;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #d30259;
    color: #fff;
}

/* Copyright */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 20px;
    }
}

@media (max-width: 767px) {
    .footer-about,
    .footer-links,
    .footer-contact,
    .social-links {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

.developer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.dev-name {
    color: #fc036b;
    font-weight: 600;
}

.dev-contact {
    margin-top: 5px;
}

.dev-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-link:hover {
    color: #fc036b;
}

.dev-link i {
    margin-right: 5px;
}

.email-link{
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.email-link:hover{
    color: #fc036b;
}


