  /* Base Styles */
        :root {
            --primary-purple: #6a1b9a;
            --light-purple: #9c4dcc;
            --dark-purple: #38006b;
            --gold: #ffd700;
            --light-gold: #fff9c4;
            --dark-gold: #c8a600;
            --gray: #f5f5f5;
            --dark-gray: #333;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--gray);
            color: var(--dark-gray);
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark-purple);
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gold);
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--primary-purple);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background-color: purple;
            color: white;

        }
        

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        

 .logo {
    display: flex;
    align-items: center;
    margin: 0;       /* remove any default margin */
    padding: 0;      /* remove any default padding */
}

.logo img {
    height: 40px;
    margin-left: -5px; /* space between image and text */
    display: block;
    border-radius: 0;
}

.logo h1 {
    color: var(--white);
    font-size: bold;
    margin: 0;
}

.logo span {
    color: var(--gold);
}


        
@media (max-width: 768px) {
    .header-content {
        justify-content: flex-start; /* keep everything left-aligned */
        padding-left: 10px; /* optional small padding */
    }

    .logo img {
        height: 35px; /* slightly smaller on mobile */
        margin-left: -200px;
    }

    .logo h1 {
        font-size: 40px; /* smaller text on mobile */
    }
}
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1.1rem;
        }
        
        nav ul li a:hover {
            color: var(--gold);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .humburger-menu {
            display: none;
        }
        
@media (max-width: 768px) {
    .humburger-menu {
        display: block;
        cursor: pointer;
        background: none;
        border: none;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 200;
    }
    .humburger-menu .bar {
        display: block;
        width: 100%;
        height: 4px;
        background-color: white;
        border-radius: 2px;
        margin: 5px 0;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.09);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }
    .main-nav ul li {
        margin: 1rem 0;
    }
    .main-nav ul li a {
        font-size: 2rem;
    }
}


/* Hero Section - Dynamic Animated Version */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('images/4.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 0 1.5rem;
    overflow: hidden;
    isolation: isolate;
}

/* Parallax & Zoom Background Animation */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: scale(1.05);
    z-index: -2;
    animation: bgMoveZoom 30s ease-in-out infinite alternate;
}

/* Shimmering Gradient Overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 204, 0, 0.15), rgba(255, 255, 255, 0.05));
    mix-blend-mode: screen;
    z-index: -1;
    animation: shimmer 15s linear infinite alternate;
}

/* Container Animations */
.hero .container {
    max-width: 960px;
    width: 100%;
    z-index: 2;
}

/* Hero Section with Video */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

/* Video Background Styling */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay on video for better text contrast */
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Hero content stays on top */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Existing animations (unchanged, but optimized for clarity) */
.hero-content {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeSlideIn 1.5s ease-out forwards;
}

.hero-content h1.heartbeat {
    font-size: 4rem;
    font-weight: 1000;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, #ffcc00, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heartbeat 2s infinite ease-in-out, glowText 3s ease-in-out infinite alternate;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: -75%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerSlide 3s linear infinite;
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 100px;
    transform: scale(0.95);
    opacity: 0;
    animation: popIn 1s ease 2s forwards, floatBtn 5s ease-in-out infinite;
}

.btn:hover {
    background-color: #e6b800;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Animations css */
@keyframes fadeSlideIn { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes popIn { to { opacity: 1; transform: scale(1); } }
@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes shimmerSlide { 100% { left: 125%; } }
@keyframes glowText {
    0% { text-shadow: 0 0 10px #ffcc00; }
    100% { text-shadow: 0 0 20px #ffffff; }
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Keyframes */
@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatBtn {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes bgMoveZoom {
    0% {
        transform: scale(1.05) translate(0px, 0px);
    }
    100% {
        transform: scale(1.15) translate(-10px, -10px);
    }
}

@keyframes shimmerSlide {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes glowText {
    0% {
        text-shadow: 0 0 10px rgba(255, 204, 0, 0.2), 0 0 20px rgba(255, 204, 0, 0.2);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 204, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}


        
        /* Section Styling */
        section {
            padding: 80px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            background: var(--primary-purple);
            color: var(--gold);
            font-size: 2.5rem;
            padding: 30px;
            text-align: center;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: var(--primary-purple);
            margin-bottom: 15px;
        }
        
        /* About css */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .mission-vision {
            background: var(--light-gold);
            padding: 30px;
            border-radius: 10px;
            margin-top: 30px;
        }
        

        /* --- ABOUT SECTION STYLING --- */
.about-section {
    padding: 5rem 0;
    background-color: #fdfdfd;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #4a148c; /* purple */
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Row layout */
.about-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.about-row:nth-child(even) .about-img {
    order: 1;
}
.about-row:nth-child(even) .about-text {
    order: 2;
}

.about-img {
    flex: 1 1 40%;
}
.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}
.about-img img:hover {
    transform: scale(1.03);
}

.about-text {
    flex: 1 1 55%;
}
.about-text h3 {
    font-size: 1.6rem;
    color: #4a148c; /* purple */
    margin-bottom: 1rem;
}
.about-text h3 i {
    color: #ffcc00;
    margin-right: 0.5rem;
}
.about-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}



/* Heartbeat effect for section title */
@keyframes heartbeatSlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.heartbeat-slow {
    animation: heartbeatSlow 4s infinite ease-in-out;
}

/* Fade-in animation on scroll (basic without JS) */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    animation: fadeIn 1.2s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
        text-align: center;
    }
    .about-text h3 {
        font-size: 1.4rem;
    }
}


        
/* Team */
/* .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px; 
    display: block;      
    border: 5px solid var(--light-purple);
} */

.team-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-member {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  width: 250px;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #7c3aed; /* purple border */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
  overflow: hidden;
}

.team-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* keeps whole logo visible */
}



        /* === SERVICES SECTION === */
.services-section {
  padding: 5rem 0;
  background-color: #fdfdfd;
  text-align: center;
}

.services-section .section-header h2 {
  color: #4a148c; /* purple */
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.services-section .section-header p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Service Card */
.service-card {
  background-color: #fff;
  padding: 2.5rem 1.8rem;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 2.8rem;
  color: #ffcc00; /* gold */
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #4a148c;
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-example {
  font-size: 0.95rem;
  color: #666;
  background: #f9f9f9;
  padding: 0.8rem;
  border-left: 4px solid #ffcc00;
  border-radius: 8px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1.2s ease forwards;
}

.slide-in-up {
  animation: fadeInUp 1.5s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}

@keyframes heartbeatSlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.heartbeat-slow {
  animation: heartbeatSlow 4s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 3s infinite ease-in-out;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}







        
      /* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--primary-purple);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    color: var(--white);
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: var(--dark-purple); /* Icon always visible */
    font-size: 18px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--gold);
    transform: scale(1.1); /* Smooth hover effect */
}




/* TEAM SECTION */
.team-section {
    background-color: var(--light-gold, #fff8e1);
    padding: 5rem 0;
    text-align: center;
}

.team-section .section-header h2 {
    color: #4a148c;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.team-section .section-header p {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

/* Team Member Card */
.team-member {
    background-color: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
    width: 100%;
    animation: fadeInUp 1.2s ease forwards;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Team Photo as Circle */
.team-photo {
    width: 200px; /* fixed width for circle */
    height: 200px; /* fixed height for circle */
    overflow: hidden;
    border-radius: 50%; /* makes it circular */
    margin-bottom: 1.2rem;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* ensure the image itself is circular */
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.4rem;
    color: #4a148c;
    margin-bottom: 0.3rem;
}

.team-member p {
    font-size: 1rem;
    color: #777;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1.2s ease forwards;
}

.slide-in-up {
    animation: fadeInUp 1s ease forwards;
}

/* Heartbeat Animation */
@keyframes heartbeatSlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.heartbeat-slow {
    animation: heartbeatSlow 4s infinite ease-in-out;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-photo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .team-photo {
        width: 150px;
        height: 150px;
    }

    .team-member h3 {
        font-size: 1.2rem;
    }

    .team-member p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .team-photo {
        width: 120px;
        height: 120px;
    }

    .team-member h3 {
        font-size: 1rem;
    }

    .team-member p {
        font-size: 0.9rem;
    }
}




/* Footer */
footer {
    background: var(--dark-purple);
    color: var(--gold);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

/* Footer links gold */
footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover effect: turn white */
footer a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    color: gold;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--gold);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--white);
    color: gold;
}

.quick-links ul {
    list-style: none;
    color: gold;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


        
        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 100;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #128C7E;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .about-content,
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            nav {
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
        }

        /*multiple-column layout for screens up to 768 (mobile devices)*/
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            .main-nav {
                transform: translateX(-100%);
                transition: transform 0.3s ease-in-out;
            }
            .main-nav.active {
                transform: translateX(0);
            }
        }
        