/*--------------------------------------------------------------
# Base Styles & Variables
--------------------------------------------------------------*/

:root {
    --brand-font: "Heritho", sans-serif;
    --default-font: "Exo 2", sans-serif;
    --heading-font: "Orbitron", sans-serif;
    --background-color: #030414;
    --default-color: #c4c4c4;
    --heading-color: #ffffff;
    --accent-color: #00aaff;
    --accent-color-glow: rgba(0, 170, 255, 0.5);
    --secondary-accent: #f72585;
    --surface-color: rgba(10, 10, 30, 0.5);
    --contrast-color: #ffffff;
    --nav-color: #ffffff;
    --nav-hover-bg: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    --nav-mobile-background-color: #05061a;
    scroll-behavior: smooth;
    --secondary-accent: #f72585; /* Cyber Pink for Dark Mode */
    --video-overlay-color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] {
    --background-color: #f4f7f9;
    --default-color: #444444;
    --heading-color: #0a2540;
    --surface-color: rgba(255, 255, 255, 0.6);
    --contrast-color: #0a2540;
    --nav-color: #0a2540;
    --nav-mobile-background-color: #ffffff;
    --video-overlay-color: rgba(255, 255, 255, 0.5); /* This is the light overlay */
        --secondary-accent: #d90062; /* A stronger pink for Light Mode */

}

body {
    background-color: var(--background-color);
    color: var(--default-color);
    font-family: var(--default-font);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--secondary-accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.main {
    margin-left: 100px;
    padding: 0 15px;
    position: relative;
    z-index: 5;
}


/*--------------------------------------------------------------
# Shared Components
--------------------------------------------------------------*/

.glass-card {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: background 0.3s, border 0.3s, transform 0.3s;
    padding: 2.5rem;
    height: 100%;
}

[data-theme="light"] .glass-card {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
    background: rgba(10, 10, 30, 0.7);
    border: 1px solid rgba(0, 170, 255, 0.3);
    transform: translateY(-5px);
}

[data-theme="light"] .glass-card:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--accent-color);
}

.btn-glow {
    background: var(--accent-color);
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--accent-color-glow);
}
.btn-glow1 {
    color: var(--heading-color) !important;
    border: none;
    border-color:  var(--accent-color);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--accent-color-glow);
}

.btn-glow1:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--accent-color-glow), 0 0 40px rgba(0, 170, 255, 0.3);
    background:    var(--accent-color);
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--accent-color-glow), 0 0 40px rgba(0, 170, 255, 0.3);
    background: var(--secondary-accent);
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}


/*--------------------------------------------------------------
# Header, Topbar & Navigation
--------------------------------------------------------------*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 0 15px;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 1100;
    display: flex;
    align-items: center;
}

/* Make nav list take full sidebar width */
.navmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Each list item now covers full sidebar width for larger hover area */
.navmenu li {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

/* Default link button styling */
.navmenu a {
    color: var(--nav-color);
    display: flex;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 8px;
    font-size: 15px;
    border-radius: 50px;
    background: var(--surface-color);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 56px;
    width: 56px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    position: relative;
}

/* Light mode border adjustment */
[data-theme="light"] .navmenu a {
    border-color: rgba(0, 0, 0, 0.1);
}

/* Icon size */
.navmenu a .navicon {
    font-size: 20px;
}

/* Hover and active effects — expands smoothly */
.navmenu a:hover,
.navmenu .active {
    color: #ffffff;
    background: var(--nav-hover-bg);
    width: 160px;
}

/* Show text label only when expanded */
.navmenu a span {
    display: none;
    padding-left: 10px;
}

.navmenu a:hover span,
.navmenu .active span {
    display: inline;
}

/* Make hover easier — trigger expansion when near link */
.navmenu li:hover a {
    width: 160px;
    background: var(--nav-hover-bg);
    color: #ffffff;
}

/* Mobile toggle button */
.header-toggle {
    color: var(--heading-color);
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    font-size: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    top: 25px;
    right: 15px;
    z-index: 1200;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-toggle i {
    line-height: 0;
}

/* Topbar Styling */
.topbar {
    position: fixed;
    top: 15px;
    left: calc(100px + 20px);
    right: 20px;
    z-index: 1000;
    background: rgba(10, 10, 30, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    max-width: 1200px;
    margin: 0 auto;
}

/* Light theme topbar */
[data-theme="light"] .topbar {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.topbar-logo{
    height: 25px; 
    margin-right: 7px;
}

/* Brand text */
.topbar-brand {
    font-family: var(--brand-font);
    font-size: 20px;
    color: var(--heading-color);
    letter-spacing: 4px;
}

/* Contact info */
.topbar-contact {
    color: var(--default-color);
    font-size: 14px;
}

.topbar-contact i {
    color: var(--accent-color);
}

/* Theme toggle button */
.theme-toggle {
    background: none;
    border: none;
    color: var(--heading-color);
    font-size: 18px;
    cursor: pointer;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--contrast-color), var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

[data-theme="light"] .hero h1 {
    background: linear-gradient(90deg, var(--heading-color), var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

 .offer-cta-button {
            position: relative;
            display: inline-block;
            padding: 3px;
            /* This padding creates the space for the "border" */
            text-decoration: none;
            border-radius: 50px;
            overflow: hidden;
            /* Hides the spinning gradient */
        }
        /* 2. The spinning gradient */
        
        .offer-cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            transform-origin: center center;
            transform: translate(-50%, -50%);
            /* The gradient using your colors */
            background: conic-gradient( var(--accent-color), var(--secondary-accent), var(--accent-color));
            /* The animation - runs forever */
            animation: spin 4s linear infinite;
            /* KEY CHANGE: Always visible! 
      No hover required to see it.
    */
            opacity: 1;
            transition: all 0.4s ease;
        }
        /* 3. The inner content area (The "Mask") */
        
        .offer-cta-button span {
            display: block;
            position: relative;
            z-index: 2;
            padding: 14px 28px;
            /* This uses your background color to "hide" the gradient */
            background: var(--background-color);
            border-radius: 48px;
            /* Slightly smaller radius than the parent */
            /* Style for the text */
            color: var(--heading-color);
            font-family: var(--heading-font, sans-serif);
            font-weight: 300;
            /* Smooth transition for the text glow */
            transition: all 0.3s ease;
        }
        /* 4. CREATIVE HOVER EFFECT */
        /* Speed up the animation on hover */
        
        .offer-cta-button:hover::before {
            animation-duration: 1.5s;
            background: conic-gradient( var(--accent-color), var(--secondary-accent), var(--accent-color));

        }
        /* Make the text glow on hover */
        
        .offer-cta-button:hover span {
            color: var(--contrast-color);
            text-shadow: 0 0 10px var(--accent-color-glow);
        }
        /* 5. The Keyframes for the spin */
        
        @keyframes spin {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

/* --------------------------
   ABOUT SECTION STYLES
--------------------------- */
.about iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    transition: filter 0.6s ease;
    pointer-events: auto; /* must stay auto for 3D to react */
}

.about-iframe{
    height: 80vh; 
    width: 300%; 
    margin-left: -85%; 
    margin-top:-5%;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 1024px) {
    .about-iframe{
        margin-left: -55%; 
        margin-top: -500px;
        margin-bottom: 400px;
    }
    
    .about iframe {
        transform: scale(1);
        width: 200%;
        height: 200%;
    }
}

@media (max-width: 768px) {
    .about-iframe{
        margin-left: -55%; 
        margin-top: -300px;
        margin-bottom: 325px;
    }
    
    .about iframe {
        transform: scale(0.85);
        width: 200%;
        height: 200%;
    }
}

@media (max-width: 480px) {
    .about-iframe{
        margin-left: -195%; 
        margin-top: -375px;
        margin-bottom: 75px;
    }
    
    .about iframe {
        transform: scale(0.5);
        width: 160%;
        height: 160%;
    }
}


.about {
  padding: 120px 0;
  background: radial-gradient(circle at top left, #0a0f1f, #01030a);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle glowing gradient */
.about::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.15), transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(60px);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 2;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.gradient-text {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #a8b2c0;
  font-size: 1.2rem;
  margin-top: 10px;
}

.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  margin: 20px auto;
  border-radius: 5px;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 35px;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 153, 255, 0.3);
}

/* Story */
.about-story {
  /*max-width: 800px;*/
  margin: 0 auto 30px auto;
  text-align: center;
}

.about-story h3 {
  color: #00c6ff;
  margin-bottom: 15px;
}

/* Mission + Vision */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.mission-vision h3 {
  color: #00c6ff;
  margin-bottom: 10px;
}

.mission-vision p {
  color: #cdd5e0;
  font-size: 1rem;
  line-height: 1.7;
}

/* Tech Stack */
.about-tech {
  text-align: center;
  margin-bottom: 80px;
}

.about-tech h3 {
  color: #00c6ff;
  margin-bottom: 10px;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.tech-icons i {
  font-size: 2.5rem;
  color: #00c6ff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.tech-icons i:hover {
  transform: scale(1.15);
  color: #fff;
  box-shadow: 0 0 25px #00c6ff;
}

/* Why Choose Us */
.why-us {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.why-card i {
  font-size: 2rem;
  color: #00c6ff;
  margin-bottom: 15px;
}

.why-card h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  color: #a8b2c0;
  font-size: 0.95rem;
}

.about-social {
  text-align: center;
  margin-top: 3rem;
}

.about-social {
  text-align: center;
}

.about-social h3 {
  color: #00c6ff;
  margin-bottom: 10px;
}

.about-social .social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.about-social .social-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  cursor: pointer;
}

/* subtle float animation */
.about-social .social-icon::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: 0.4s ease;
}

.about-social .social-icon:hover::before {
  opacity: 1;
  transform: scale(1.3);
}

/* glow + lift on hover */
.about-social .social-icon:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 0 25px var(--hover-color, #00c6ff);
}

/* pulse glow animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px var(--hover-color, #00c6ff); }
  50% { box-shadow: 0 0 25px var(--hover-color, #00c6ff); }
  100% { box-shadow: 0 0 10px var(--hover-color, #00c6ff); }
}

/* individual platform color hovers */
.about-social .linkedin:hover {
  color: #0077b5;
  --hover-color: #0077b5;
  animation: pulseGlow 1.5s infinite;
}
.about-social .facebook:hover {
  color: #1877f2;
  --hover-color: #1877f2;
  animation: pulseGlow 1.5s infinite;
}
.about-social .instagram:hover {
  color: #e4405f;
  --hover-color: #e4405f;
  animation: pulseGlow 1.5s infinite;
}
.about-social .youtube:hover {
  color: #ff0000;
  --hover-color: #ff0000;
  animation: pulseGlow 1.5s infinite;
}
.about-social .tiktok:hover {
  color: #2af0ea;
  --hover-color: #2af0ea;
  animation: pulseGlow 1.5s infinite;
}


/* ------------------------
   RESPONSIVE DESIGN
------------------------- */
@media (max-width: 1024px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 20px;
  }

  .about-story,
  .mission-vision,
  .about-tech,
  .about-social
  .why-us {
    margin-bottom: 30px;
  }

  .tech-icons i {
    font-size: 2rem;
    padding: 15px;
  }
}

@media (max-width: 576px) {
    /*.about {*/
    /*    padding-left: 0;*/
    /*    padding-right: 0;*/
    /*  }*/
      
      .about-story,
      .mission-vision {
        margin-left: 0;
        margin-right: 0;
      }
  
     .about-social .social-links {
      display: flex;
      justify-content: center;
      gap: 1px;
      flex-wrap: wrap;
      margin-top: 1px;
    }
    
    .about-social .social-icon {
      position: relative;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.4rem;
      color: #fff;
      transition: all 0.4s ease;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
      overflow: hidden;
      cursor: pointer;
    }
}





/*--------------------------------------------------------------
# About Section — Light Mode Styles
--------------------------------------------------------------*/
[data-theme="light"] .about {
  background: radial-gradient(circle at top left, #f9fafc, #ffffff);
  color: #111;
}

[data-theme="light"] .about::before {
  background: radial-gradient(circle, rgba(0, 153, 255, 0.08), transparent 70%);
  filter: blur(70px);
}

[data-theme="light"] .gradient-text {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .subtitle {
  color: #555;
}

[data-theme="light"] .divider {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
}

[data-theme="light"] .glass-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  color: #111;
}

[data-theme="light"] .glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 153, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

[data-theme="light"] .mission-vision p {
  color: #444;
}

[data-theme="light"] .tech-icons i {
  background: rgba(0, 0, 0, 0.05);
  box-shadow: none;
}

[data-theme="light"] .tech-icons i:hover {
  transform: scale(1.15);
  color: #0055cc;
  box-shadow: 0 0 20px rgba(0, 114, 255, 0.3);
}

/* Why Choose Us */
[data-theme="light"] .why-card h4 {
  color: #111;
}

[data-theme="light"] .why-card p {
  color: #555;
}

[data-theme="light"] .about-social .social-icon {
  background: rgba(255, 255, 255, 0.05);
  color: #111;
}

[data-theme="light"] .about-social .linkedin:hover {
  color: #0077b5;
  --hover-color: #0077b5;
  animation: pulseGlow 1.5s infinite;
}

[data-theme="light"] .about-social .facebook:hover {
  color: #1877f2;
  --hover-color: #1877f2;
  animation: pulseGlow 1.5s infinite;
}

[data-theme="light"] .about-social .instagram:hover {
  color: #e4405f;
  --hover-color: #e4405f;
  animation: pulseGlow 1.5s infinite;
}

[data-theme="light"] .about-social .youtube:hover {
  color: #ff0000;
  --hover-color: #ff0000;
  animation: pulseGlow 1.5s infinite;
}

[data-theme="light"] .about-social .tiktok:hover {
  color: #2af0ea;
  --hover-color: #2af0ea;
  animation: pulseGlow 1.5s infinite;
}

/*--------------------------------------------------------------
# Call To Action Button
--------------------------------------------------------------*/

.circle-button {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.6), 0 0 20px rgba(247, 37, 133, 0.4);
    animation: glowPulse 2s infinite ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes glowPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


/*--------------------------------------------------------------
# Services & Tech Stack
--------------------------------------------------------------*/
.services {
  background: linear-gradient(var(--video-overlay-color), var(--video-overlay-color)), 
              url('../image/service-bg.png') 
              no-repeat center center / cover;
              
                          background-attachment: fixed;
                          padding: 6%;

}


.service-card .s-icon1 {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--accent-color-glow);
    transition: all 0.3s ease;
}

.service-card:hover .s-icon1 {
    transform: rotate(360deg) scale(1.1);
}

.service-card .s-icon1 img {
    width: 50%;
    height: 50%;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.wrapperwraper {
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    position: relative;
    height: 100px;
    margin-top: 5rem;
    overflow: hidden;
}

.wrapperitem {
    width: 200px;
    height: 100px;
    position: absolute;
    left: max(calc(200px * 8), 100%);
    animation: scrollleft 30s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes scrollleft {
    to {
        left: -200px;
    }
}

.wrapperitem1 {
    animation-delay: calc(30s / 8 * -7);
}

.wrapperitem2 {
    animation-delay: calc(30s / 8 * -6);
}

.wrapperitem3 {
    animation-delay: calc(30s / 8 * -5);
}

.wrapperitem4 {
    animation-delay: calc(30s / 8 * -4);
}

.wrapperitem5 {
    animation-delay: calc(30s / 8 * -3);
}

.wrapperitem6 {
    animation-delay: calc(30s / 8 * -2);
}

.wrapperitem7 {
    animation-delay: calc(30s / 8 * -1);
}

.wrapperitem8 {
    animation-delay: calc(30s / 8 * 0);
}

.iconwiesaa {
    font-size: 4.5em;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hueRotate 10s linear infinite alternate;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.portfolio {
    border-radius: 25px;
    padding: 5rem 0;
}

.containerportfoliyo {
    position: relative;
    width: 100%;
    height: 100vh;
    background: transparent;
    overflow: hidden;
}

.containerportfoliyo .slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.containerportfoliyo .slide .item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-size: cover;
    transition: left 0.5s ease-in-out, top 0.5s ease-in-out, width 0.5s ease-in-out, height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    transition: border-radius 0.5s ease-in-out;
    -webkit-transition: border-radius 0.5s ease-in-out;
    -moz-transition: border-radius 0.5s ease-in-out;
    -ms-transition: border-radius 0.5s ease-in-out;
    -o-transition: border-radius 0.5s ease-in-out;
}

.slide .item.active {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    border-radius: 0;
    opacity: 1;
    z-index: 2;
}

.slide .item.active video {
    border-radius: 25px;
}

.slide .item.next {
    left: 75%;
    opacity: 1;
    z-index: 3;
}

.slide .item.prev {
    left: 25%;
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
}

.item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    transform: translateY(-50%);
    display: none;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 3;
}

.slide .item.active .content {
    display: block;
    opacity: 1;
}

.content .name {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.content .des {
    color: #eee;
}

.button {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
    z-index: 10;
}

.button button {
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.button button:hover {
    background: var(--accent-color);
    color: white;
}


/*--------------------------------------------------------------
# Team & Testimonials
--------------------------------------------------------------*/

.team .card {
    background: var(--surface-color);
    padding: 2rem 1rem;
    text-align: center;
}

.team .card:hover {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
}

.team .card .img-container {
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5em;
    border-radius: 50%;
    margin: 0 auto 2em;
    transition: 0.3s;
}

.team .card img {
    width: 100%;
    border-radius: 50%;
}

.team .card:hover .img-container {
    transform: scale(1.15);
}

.team .card .icons a {
    color: var(--default-color);
    font-size: 1.4em;
    transition: color 0.3s;
}

.team .card:hover .icons a,
.team .card:hover p,
.team .card:hover small {
    color: #ffffff;
}

.team .card p,
.team .card small {
    color: var(--default-color);
    transition: color 0.3s;
}

.testimonials-items {
    background-color: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

.testimonials-items:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
}

.testimonials-items:hover :is(p, h3, span) {
    color: white;
}

.testimonial-img {
    max-width: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

.rating {
    color: #ffc107;
}

.testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    width: 25px;
    border-radius: 5px;
}

[data-theme="light"] .testimonials .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.2);
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact .info-item i {
    color: var(--accent-color);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
    border: 1px solid var(--accent-color);
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: #ffffff;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .contact .php-email-form input,
[data-theme="light"] .contact .php-email-form textarea {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--default-color);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/

footer {
    background-color: #08091b;
    color: #a0a0a0;
    padding: 50px 0 0;
}

[data-theme="light"] footer {
    background-color: #e9ecef;
}

footer .footer-column h4 {
    color: var(--heading-color);
}

footer .footer-column .social-links a {
    margin-right: 15px;
    font-size: 1.2rem;
}


[data-theme="light"] footer .footer-column .social-icons a {
    color: #5c6c7d;
}

footer .footer-column ul {
    list-style: none;
    padding: 0;
}

footer .footer-column ul li {
    margin-bottom: 10px;
}

footer .footer-column p,
footer .footer-column ul a {
    color: #a0a0a0;
}

[data-theme="light"] footer .footer-column p,
[data-theme="light"] footer .footer-column ul a {
    color: #5c6c7d;
}

footer .footer-bottom {
    background-color: #030414;
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
}

[data-theme="light"] footer .footer-bottom {
    background-color: #dde3e9;
}

.footer-column form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.footer-column input[type="email"],
.footer-column button {
    border-radius: 50px;
    height: 50px;
    font-size: 0.95rem;
}

/* Input styling */
.footer-column input[type="email"] {
    flex-grow: 1;
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--background-color);
    color:  #a0a0a0;;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

[data-theme="light"] .footer-column input[type="email"] {
    background: #ffffff;
}

.footer-column input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/* Button styling */
.footer-column button {
    padding: 12px 25px;
    border: none;
    background: var(--nav-hover-bg);
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    max-width: 300px;
}

.footer-column button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobile view: stack input and button */
@media (max-width: 576px) {
    .footer-column {
        text-align: center;
    }

    .footer-column form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}


/*----------------- Mobile view -----------------*/
@media (max-width: 576px) {
    .footer-column {
        text-align: center;
    }

    .footer-column form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-column input[type="email"],
    .footer-column button {
        width: 100%;
        max-width: 300px; /* optional to prevent overly large input on mobile */
    }
}




/*--------------------------------------------------------------
# Preloader & Scroll Top
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 25px;
    bottom: 5px;
    z-index: 99999;
    color: var(--contrast-color);
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.3s;
}

.scroll-top i {
    font-size: 22px;
}

.scroll-top:hover {
    background: var(--nav-hover-bg);
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 90px;
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Chat Popup
--------------------------------------------------------------*/

.chat-fab {
    position: fixed;
    bottom: 25px; /* keep closer to bottom edge */
    right: 90px;  /* moved slightly inwards for better alignment */
    z-index: 1150;
    width: 55px; /* slightly larger for better tap area */
    height: 55px;
    background: var(--nav-hover-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, right 0.3s ease, bottom 0.3s ease;
}

.chat-fab:hover {
    transform: scale(1.12) rotate(5deg);
}

/* Position popup neatly above the button */
.chat-popup {
    position: fixed;
    bottom: 25px; /* appears just above the FAB */
    right: 80px;  /* perfectly aligned with the FAB */
    z-index: 1140;
    width: 360px;
    max-width: calc(100% - 40px);
    height: 480px;
    padding: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px) scale(0.9);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    overflow: hidden;
    border-radius: 15px; /* optional – adds nice rounding */
}

/* Active (visible) popup animation */
.chat-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-action-btn {
    background: none;
    border: none;
    color: var(--heading-color);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chat-action-btn:hover {
    opacity: 1;
    color: var(--accent-color);
}

[data-theme="light"] .chat-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-body {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
}

.chat-footer {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    gap: 10px;
    min-width: 0; /* important for flex shrinking */
}

[data-theme="light"] .chat-footer {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.chat-footer input[type="text"] {
    flex: 1 1 auto; /* allows auto shrink when needed */
    min-width: 0; /* prevents overflow */
    border: none;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    transition: width 0.3s ease;
}

[data-theme="light"] .chat-footer input {
    background: rgba(0, 0, 0, 0.05);
    color: var(--default-color);
}

.chat-footer input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-color-glow);
}

.chat-footer button {
    width: 45px;
    height: 45px;
    padding: 0;
    flex-shrink: 0; /* buttons never shrink */
}


/*--------------------------------------------------------------
# Chat Message Layout & Timestamp
--------------------------------------------------------------*/

.message {
    max-width: 75%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.message p {
    margin-bottom: 5px;
    padding: 10px 15px;
    line-height: 1.5;
    word-wrap: break-word;
}

.message .time {
    font-size: 0.75rem;
    color: var(--default-color);
    opacity: 0.7;
}

.message.sent {
    align-self: flex-end;
    align-items: flex-end;
}

.message.sent p {
    background: #007bff;
    color: #fff;
    border-radius: 15px;
    border-top-right-radius: 2px;
}

.message.received {
    align-self: flex-start;
    align-items: flex-start;
}

.message.received p {
    background: var(--surface-color);
    color: var(--heading-color);
    border-radius: 15px;
    border-top-left-radius: 2px;
}


/*--------------------------------------------------------------
# Custom Modal Backdrop Blur
--------------------------------------------------------------*/
.modal{
    z-index: 99999;
}

.modal-backdrop.show {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(10, 10, 30, 0.5);
}


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 1200px) {
    .chat-fab {
        right: 25px;
    }
    .chat-popup {
        right: 90px;
    }
}

@media (max-width: 1199px) {
    .main {
        margin-left: 0;
    }

    .header {
        background-color: none;
        left: -300px;
    }

    [data-theme="light"] .header {
        border-right-color: rgba(0, 0, 0, 0.1);
    }

    .header.header-show {
        left: 0;
    }

    .header-toggle {
        display: flex;
        top: 70px;
        right: 52px;
    }

    .navmenu a {
        width: 100%;
        max-width: 100%;
    }

    .navmenu a span {
        display: inline;
    }

    .navmenu a:hover,
    .navmenu .active {
        width: 100%;
    }

    .topbar {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 90%;
    }
    .chat-fab {
        right: 25px;
    }
    .chat-popup {
        right: 90px;
    }
    
    .chat-header {
        padding: 5px 5px;
    
    }

    .chat-header-actions {
        gap: 5px;
    }
    
    .chat-header h3 {
        font-size: 0.8rem;
    }
    
    .chat-body {
        padding: 10px 5px;
    }
    
    .chat-footer {
        padding: 5px 15px;
    }
    
    .chat-footer input[type="text"] {
        padding: 5px 10px;
        border-radius: 25px;
    }
    
    
    /*--------------------------------------------------------------
    # Chat Message Layout & Timestamp
    --------------------------------------------------------------*/
    
    .message {
        max-width: 75%;
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
    }
    
    .message p {
        margin-bottom: 5px;
        padding: 10px 15px;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .message .time {
        font-size: 0.75rem;
        color: var(--default-color);
        opacity: 0.7;
    }
    
    .message.sent {
        align-self: flex-end;
        align-items: flex-end;
    }
    
    .message.sent p {
        background: #007bff;
        color: #fff;
        border-radius: 15px;
        border-top-right-radius: 2px;
    }
    
    .message.received {
        align-self: flex-start;
        align-items: flex-start;
    }
    
    .message.received p {
        background: var(--surface-color);
        color: var(--heading-color);
        border-radius: 15px;
        border-top-left-radius: 2px;
    }
}

/* Tablet view (768px to 992px): contacts visible, one-line layout */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.9rem;
    }

    .topbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        border-radius: 20px;
        padding: 8px 30px;
        width: 90%;
    }

    .topbar-left {
        display: flex;
        align-items: center;
    }

    .topbar-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Show contact number and email in tablet view */
    .topbar-contact {
        display: inline-flex !important;
        align-items: center;
        color: var(--default-color);
        font-size: 12px;
    }
    
    .topbar-logo{
        height: 20px; 
        margin-right: 5px;
    }
    
    .header-toggle {
        top: 60px;
        right: 40px;
    }

    /* Brand text */
    .topbar-brand {
        font-size: 16px;
        letter-spacing: 3px;
    }
    
    /* Theme toggle button */
    .theme-toggle {
        font-size: 15px;
    }
    
    .scroll-top {
        right: 25px;
        bottom: 5px;
        width: 45px;
        height: 45px;
    }

    .scroll-top.active {
        bottom: 75px;
    }
    
    .chat-fab {
        bottom: 25px; /* keep closer to bottom edge */
        right: 25px;  /* moved slightly inwards for better alignment */
        width: 45px; /* slightly larger for better tap area */
        height: 45px;
        font-size: 24px;
    }
    
    .chat-fab:hover {
        transform: scale(1.12) rotate(5deg);
    }
    
    /* Position popup neatly above the button */
    .chat-popup {
        bottom: 25px; /* appears just above the FAB */
        right: 80px;  /* perfectly aligned with the FAB */
        width: 360px;
        height: 480px;
    }

/* Mobile view (<768px): hide contacts, keep layout clean */
@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .topbar {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        padding: 10px 15px;
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        transform: none;
        max-width: none;
    }

    .topbar-left {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .topbar-right {
        display: flex;
        align-items: center;
        gap: 10px !important;
    }

    /* Hide contacts only on mobile (<768px) */
    .topbar-contact {
        display: none !important;
    }

    .slide .item.next {
        width: 150px;
        height: 220px;
        left: calc(100% - 170px);
    }

    .item .content {
        left: 20px;
        width: calc(100% - 40px);
    }

    .footer-column {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-column .social-icons,
    .footer-column p.d-flex {
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .topbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 60px;
    }

    .topbar-left {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .topbar-right {
        display: flex;
        align-items: center;
        gap: 6px !important;
    }
    
    .topbar-logo{
        height: 22px; 
        margin-right: -1px;
    }
    
    .header-toggle {
        top: 67px;
        right: 18px;
    }

    /* Brand text */
    .topbar-brand {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    /* Theme toggle button */
    .theme-toggle {
        font-size: 15px;
    }

    /* Keep contacts hidden on very small screens */
    .topbar-contact {
        display: none !important;
    }

    .contact .php-email-form {
        padding: 1.5rem;
        
    }

    .section-title h2 {
        font-size: 28px;
    }

    .main {
        padding: 0 10px;
    }

    .slide .item.next {
        display: none;
    }
    
    .scroll-top {
        right: 15px;
    }
    
    .scroll-top.active {
        bottom: 65px;
    }
    
    .chat-fab {
        bottom: 15px; /* keep closer to bottom edge */
        right: 15px;  /* moved slightly inwards for better alignment */
    }
    
    /* Position popup neatly above the button */
    .chat-popup {
        bottom: 15px; /* appears just above the FAB */
        right: 70px;  /* perfectly aligned with the FAB */
        width: 285px;
        height: 575px;
    }
    
    .chat-footer button {
    width: 40px;
    height: 40px;
    padding: 0;
    flex-shrink: 0;
    }
}

/* --- Homepage Business Packages Section --- */

/* 1. Section Container */
.business-package-section {
    width: 100%;
    padding: 80px 0;
    /* Use a slightly different background to stand out */
    background-color: var(--header-bg); 
}

/* 2. Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-light);
}
.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* 3. Package Grid & Card Styles */
/* (These are copied from your packages page CSS) */

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 30px;
    justify-content: center;
    align-items: start;
}

.popular-wrapper {
    position: relative;
    padding-top: 25px;
}

.popular-banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-popular);
    color: #fff;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 3;
    white-space: nowrap;
}

.package-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    height: 100%; /* Ensures cards in a row are same height */
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popular-wrapper .package-card {
    border: 2px solid var(--accent-popular);
}

.card-header {
    padding-top: 0;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.card-header .price {
    margin-bottom: 15px;
}

.card-header .price .old-price {
    font-size: 1.2rem;
    color: var(--text-slashed);
    text-decoration: line-through;
    margin-right: 10px;
}

.card-header .price .new-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-green);
}

.card-header .ideal-for {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    border-bottom: 1px dashed var(--card-border);
    padding-bottom: 20px;
}

.card-body {
    flex-grow: 1; /* Makes footer stick to bottom */
}

.card-body .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.card-body .features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.card-body .features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.card-footer {
    margin-top: auto; /* Sticks to the bottom */
}

.cta-button {
    display: block;
    width: 100%;
    background: var(--primary-blue);
    color: #fff;
    text-align: center;
    padding: 12px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3a7bc8; /* Assumes hover color */
    transform: scale(1.02);
}


/* 4. New "Expand Button" Styles */

.expand-button-container {
    text-align: center;
    margin-top: 60px;
}

/* New "outline" style for the expand button */
.cta-button.outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    display: inline-block; /* Makes it only as wide as its content */
    width: auto;
    padding: 12px 30px;
}

.cta-button.outline:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.02);
}

/* 5. Responsive Styles */
@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}


