
:root {
    --primary: #ff69b4;
    --secondary: #fff0f5;
    --dark: #333;
    --light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Navbar Styles */
.navbar {
 position: fixed;
 top: 0;
 width: 100%;
 background: rgba(255, 255, 255, 0.95);
 padding: 1rem;
 z-index: 1000;
 box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navbar Container */
 .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px; /* Keeping navbar height fixed */
}

/* Logo Styling */
.logo img {
 height: 60px; /* Increased size */
 width: auto;
 max-height: 100%; /* Ensures it doesn’t overflow */
}

/* Navigation Links */
.nav-links {
 display: flex;
 gap: 3rem;
}

.nav-links a {
 text-decoration: none;
 color: var(--dark);
 font-weight: 1000;
 transition: color 0.3s;
}

.nav-links a:hover {
 color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Dots Navigation */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}


/* Gradient Overlay */
.hero::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
 z-index: 1;
}

/* Ensuring the text stays above the gradient */
.hero-content {
 position: relative;
 z-index: 2;
 color: black; /* Adjust text color for better readability */
 background: rgba(255, 255, 255, 0.6);
 padding: 20px;
 border-radius: 10px;
}


.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    background: var(--primary);
    color: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(255,105,180,0.3);
}

.countdown-number {
    font-size: 2rem;
    font-weight: bold;
}

@media (max-width: 480px) { 
.countdown {
flex-wrap: nowrap;  /* Prevent wrapping */
gap: 0.5rem; /* Reduce gap between items */
overflow-x: auto; /* Allow scrolling if needed */
padding: 0 1rem;
}

.countdown-item {
min-width: 60px; /* Reduce size further for small screens */
padding: 1rem;
font-size: 0.8rem;
}

.countdown-number {
font-size: 1.5rem;
}
}


/* Button Styling */
.btn {
    background: #ff66b2;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #ff3385;
}

/* Popup Background */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    z-index: 5000;
}

/* Popup Box */
.popup-box {
    background: #ffe6f2;
    color: #ff3385;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: 0.3s ease-in-out;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ff3385;
}

/* Popup Button */
.popup-btn {
    background: #ff66b2;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
    transition: 0.3s;
}

.popup-btn:hover {
    background: #ff3385;
}


.popup-container.active {
    visibility: visible;
    opacity: 1;
}

.popup-container.active .popup-box {
 transform: scale(1);
}

.video-container {
    width: 300px;  
    height: 300px; 
    overflow: hidden; 
    border-radius: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; 
    position: relative;
}

.video-container video {
    width: 500px;  
    height: auto;  
    object-fit: cover;
}


.about-section {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
}

.about-container h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
}



.about-container p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

.about-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 1rem;
    color: #666;
}



/* Features Section */
.features {
    padding: 5rem 1rem;
    background: var(--light);
    text-align: center;  
}

.features h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Card Styling */
.feature-card {
    padding: 2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.3);
}

/* Clip Art Styling */
.feature-image {
    max-width: 80px; /* Adjust the size of the image */
    height: auto;
    margin-bottom: 1rem;
    border-radius: 5px; /* Optional: Make the edges smooth */
}

/* Hidden Content */
.hidden-content {
    display: none;
    font-size: 0.95rem;
    color: #555;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.feature-card.active .hidden-content {
    display: block;
    opacity: 1;
}

/* How It Works Section */
.how-it-works {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef); /* Soft gradient background */
}

.how-it-works h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    
}


/* Steps Container */
.steps {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 2rem;
 max-width: 900px;
 margin: 0 auto;
}

/* Individual Step Card */
.step {
     background: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     max-width: 600px;
     width: 100%;
     position: relative;
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Number Styling */
.step h3 {
    font-size: 1.8rem;
    color: #f508c5;
    margin-bottom: 0.5rem;
}

/* Text Styling */
.step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Progress Bar Effect */
.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background: #fb00ff;
    transition: width 1s ease-in-out;
}

.step:hover::before {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .steps {
        gap: 1.5rem;
}

.step {
    padding: 1.5rem;
}

.step h3 {
  font-size: 1.5rem;
}
}


/* Team Section */
.team {
    padding: 5rem 2rem;
    background: var(--secondary);
    text-align: center;
    font-size: 1.25rem;
}

/* Updated Team Grid */
.team-grid {
display: grid;
grid-template-columns: repeat(2, 1fr); /* Default: 2 members per row */
gap: 2rem;
max-width: 800px;
margin: 0 auto;
}

/* Team Member Styling */
.team-member {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
    }

.team-member:hover {
    transform: translateY(-5px);
}

/* Team Member Image */
.team-member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 3px solid var(--primary);
}

/* Team Member Text */
.team-member h3 {
    font-size: 1.3rem;
    color: var(--dark);
}

.team-member p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-member .intro {
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
.team-grid {
grid-template-columns: 1fr; /* 1 member per row for smaller screens */
max-width: 100%; /* Use full width */
}

.team-member img {
width: 200px; /* Reduce image size */
height: 200px;
}

.team-member {
padding: 1rem;
}
}

@media (max-width: 480px) {
.team {
padding: 3rem 1rem; /* Reduce padding on smaller devices */
}

.team-member img {
width: 150px; /* Even smaller image for very small screens */
height: 150px;
}

.team-member h3 {
font-size: 1.1rem;
}

.team-member p {
font-size: 0.9rem;
}
}


/* Contact Form */
.contact {
    padding: 5rem 2rem;
    background: var(--light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn {
    background: var(--primary);
    color: var(--light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #ff1493;
}

.cta {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-light) 100%);
    color: var(--white);
}

.button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--pink-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s;
    margin: 1rem;
}

.button:hover {
    transform: scale(1.05);
}

/* Chatbot styles */
/* Main container */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Button with image inside */
.chatbot-toggle-btn {
    background-color: #ff69b4;  /* Pink background */
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;  /* Vertical center */
    justify-content: center; /* Horizontal center */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;  /* For absolute positioning inside */
}

/* Hover effect */
.chatbot-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
}

/* Image inside button - now with positioning */
.chatbot-icon {
    width: 35px;  /* Icon size */
    height: 35px;
    object-fit: contain;  /* Keeps aspect ratio */

    position: absolute;   /* This lets you move it around */
    top: 50%;   /* Start from center vertically */
    left: 53%;  /* Start from center horizontally */
    transform: translate(-50%, -50%) translateY(-2px);  
    /* ^ Move it slightly up (you can adjust the -2px) */
}

/* Optional: If you want the icon to appear slightly towards top-left or bottom-right, change translate() values */


/* Chat window */
.chatbot-window {
    display: none;
    width: 320px;
    height: 450px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 70px;
    right: 0;
    flex-direction: column;
    font-family: 'Poppins', Arial, sans-serif;
    border-radius: 12px;
    overflow: hidden;
}

/* Header */
.chatbot-header {
    background-color: #ff69b4;
    color: white;
    padding: 12px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

/* Close button */
.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* Chat body */
.chatbot-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background-color: #fef3f7; /* Light pink background */
    font-size: 14px;
}

/* Chat messages */
.chatbot-body div {
    margin-bottom: 8px;
}

/* Footer input area */
.chatbot-footer {
    display: flex;
    padding: 8px;
    background-color: #fdfdfd;
    border-top: 1px solid #ddd;
}

.chatbot-footer input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

.chatbot-footer button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    margin-left: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.chatbot-footer button:hover {
    background-color: #ff1493;
}

/* Footer */
.footer {
    background: #222;
    color: #fff;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease-in-out;
}

.social-links a img {
    width: 100%;
    height: 100%;

}

.social-links a:hover {
    transform: scale(1.2);
}

.footer p {
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer p span {
    font-weight: bold;
    color: #ff00d0;
}



/* Mobile Menu */
.mobile-menu {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position:absolute ;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--light);
        padding: 1rem;
    }

    .nav-links.active a {
        margin: -11px 0;

    .hero h1 {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
    }
    }
}
