/* style.css */
:root {
    --primary-green: #33D474;
    --secondary-lime: #02a57d;
    --accent-gold: #FFC107;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --dark-text: #212529;
    --muted-text: #6c757d;
    --primary-gradient: linear-gradient(135deg, var(--primary-green), #1abc9c);
    --secondary-gradient: linear-gradient(135deg, var(--secondary-lime), #91b659);
    --secondary-gradient-dark: linear-gradient(135deg, #065e2a, #73ba00);
  
    /* -- NEW Light Tints for Backgrounds -- */
    --light-purple-bg: #f4e8ff; /* Light tint of secondary-lime */
    --light-green-bg: #b5ffad;  /* Light tint of primary-green */
    --header-bg-scrolled: var(--white); /* Let's keep scrolled white for max contrast, but add shadow */
    --header-bg-initial: transparent; /* Start transparent */
  
    /* -- NEW Header Text Colors -- */
    --header-text-initial: var(--dark-text); /* Text color when header is transparent (over dark hero) */
    --header-text-scrolled: var(--dark-text); /* Text color when header is white */
  
    /* Transitions & Shadows */
    --transition-speed: 0.3s;
    --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --box-shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --box-shadow-colored: 0 6px 20px rgba(112, 0, 255, 0.15); /* Subtle purple shadow for scrolled header */
  }
  
  body {
    font-family: 'Poppins', sans-serif; /* Using Poppins from Google Fonts - nice & modern */
    color: var(--dark-text);
    line-height: 1.7;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700; /* Bolder headings */
    color: var(--dark-text);
  }
  
  .m-m-t-50 {
    margin-top: -50px;
  }
  /* Helper class for gradient text */
  .gradient-text {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Standard property */
    text-fill-color: transparent; /* Standard property */
    display: inline-block; /* Important for background-clip */
  }

  .gradient-text-dark {
    background: var(--secondary-gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Standard property */
    text-fill-color: transparent; /* Standard property */
    display: inline-block; /* Important for background-clip */
  }


/* --- Header & Navigation --- */
.site-header {
    transition: background-color var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease,
                padding var(--transition-speed) ease;
    background-color: var(--header-bg-initial); /* Start transparent */
    z-index: 1030; /* Ensure it's above most content */
}

.site-header.scrolled {
    background-color: var(--header-bg-scrolled); /* White background */
    box-shadow: var(--box-shadow-colored); /* Use the subtle colored shadow */
    padding: 10px 0; /* Reduced padding */
}

.navbar {
    transition: padding var(--transition-speed) ease;
}

/* Logo */
.navbar-brand img {
    transition: height var(--transition-speed) ease;
}
.site-header.scrolled .navbar-brand img {
    height: 50px; /* Smaller logo on scroll */
}
/* Add class to brand link if logo needs inversion */
.navbar-brand .logo-dark { display: none; } /* Hide dark version initially */
.navbar-brand .logo-light { display: inline-block; } /* Show light version initially */

.site-header.scrolled .navbar-brand .logo-dark { display: inline-block; } /* Show dark version when scrolled */
.site-header.scrolled .navbar-brand .logo-light { display: none; } /* Hide light version when scrolled */


/* Navigation Links */
.navbar .nav-link {
    color: var(--header-text-initial); /* White text initially */
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color var(--transition-speed) ease;
    padding-bottom: 5px;
}

.navbar .nav-link::after { /* Underline effect */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-green); /* Green underline */
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

/* Links color on Scrolled Header */
.site-header.scrolled .navbar .nav-link {
    color: var(--header-text-scrolled); /* Dark text when scrolled */
}   

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-green);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%; /* Animate width */
}

.cta-button {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white) !important; /* Override nav-link color */
    padding: 10px 25px;
    border-radius: 50px; /* Pill shape */
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(51, 212, 116, 0.2); /* Subtle green shadow */
}

.cta-button:hover {
    background-color: #28a745; /* Darker green */
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 212, 116, 0.4);
}

/* --- Mobile Navigation --- */
.navbar-toggler { /* Custom Hamburger Icon */
    border: none;
    background: transparent !important; /* Override Bootstrap */
    padding: 0; /* Reset padding */
    width: 30px;
    height: 22px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none; /* Remove Bootstrap focus outline */
}

.navbar-toggler .toggler-icon{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--dark-text); /* Color of the bars */
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.site-header.scrolled .navbar-toggler .toggler-icon {
    background: var(--dark-text); /* Ensure visibility on white bg */
}

/* Position hamburger bars */
.navbar-toggler .top-bar{ top: 0px; }
.navbar-toggler .middle-bar{ top: 9px; }
.navbar-toggler .bottom-bar{ top: 18px; }

/* Animate hamburger to 'X' when mobile menu is active */
.navbar-toggler.open .top-bar{
    top: 9px;
    transform: rotate(135deg);
}
.navbar-toggler.open .middle-bar{
    opacity: 0;
    left: -60px; /* Slide out */
}
.navbar-toggler.open .bottom-bar{
    top: 9px;
    transform: rotate(-135deg);
}

/* Mobile Menu Panel */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Start off-screen */
    width: 300px; /* Adjust width as needed */
    height: 100vh;
    background: var(--secondary-gradient); /* Use the fancy gradient */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1040; /* Below Bootstrap modal backdrop */
    transition: right var(--transition-speed) ease-in-out;
    padding: 20px;
    overflow-y: auto; /* Allow scrolling if content is long */
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu.active {
    right: 0; /* Slide in */
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 10px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Take remaining space */
}

.mobile-nav-links li {
    margin-bottom: 15px;
    opacity: 0; /* Start hidden for animation */
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.mobile-nav-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger the animation */
.mobile-nav-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-menu.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; } /* CTA */


.mobile-nav-links .nav-link,
.mobile-nav-links .btn {
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
    display: block; /* Make links easier to tap */
    padding: 8px 0;
    font-weight: 500;
}
.mobile-nav-links .btn {
    text-align: center;
    width: 100%;
}
.mobile-nav-links .nav-link:hover {
    color: var(--accent-gold); /* Highlight color on hover */
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1039; /* Below menu, above content */
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Hide desktop nav on small screens */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important; /* Force hide desktop menu */
    }
}
/* Hide mobile toggle on large screens */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
    .mobile-nav-menu, .mobile-nav-overlay {
        display: none !important; /* Ensure mobile menu is hidden */
    }
}



/* style.css (Additions) */


main {
    margin-top: -106px;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 60px; /* Space below navbar */
    padding-bottom: 60px;
    background-image: linear-gradient(to right, #e3ffce, #fffae0);
    position: relative; /* Needed for absolute positioned shapes */
    overflow: hidden; /* Prevent shapes overflowing awkwardly */

}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 100px;
    }
}

.hero-text-content h1 {
    line-height: 1.3;
}

/* Fancy Outline Button */
.btn-outline-secondary-fancy {
    border: 2px solid var(--secondary-lime); /* Purple border */
    color: var(--secondary-lime);
    background-color: transparent;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
}

.btn-outline-secondary-fancy:hover {
    background-color: var(--secondary-lime);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.2); /* Subtle purple shadow */
}

/* Hero Visual Area */
.hero-visual-wrapper {
    min-height: 350px; /* Ensure space */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    border-radius: 15px; /* Softly rounded corners */
    box-shadow: var(--box-shadow-medium);
    position: relative;
    z-index: 5; /* Image above some shapes, below others */
    max-width: 90%; /* Don't let it touch edges */
    margin: 0 auto; /* Center if container is wider */
}

/* CSS Graphical Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%; /* Default to circles */
    background: var(--primary-gradient); /* Default to green gradient */
    z-index: 1; /* Behind image by default */
    animation: floatAnimation 6s ease-in-out infinite alternate; /* Floating animation */
}

.hero-shape.shape-1 { /* Large Purple Blob (behind) */
    width: 180px;
    height: 180px;
    background: var(--secondary-gradient);
    border-radius: 40% 60% 70% 30% / 30% 50% 50% 70%; /* Organic blob shape */
    top: -40px;
    left: -50px;
    opacity: 0.8;
    animation-duration: 8s;
    z-index: 1;
}

.hero-shape.shape-2 { /* Medium Green Circle (front) */
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    bottom: -20px;
    right: -10px;
    z-index: 6; /* In front of image */
    animation-duration: 5s;
    opacity: 0.9;
}

.hero-shape.shape-3 { /* Small Gold Dot (front) */
    width: 30px;
    height: 30px;
    background: var(--accent-gold);
    top: 10%;
    right: 5%;
    z-index: 6; /* In front of image */
    animation-duration: 7s;
    animation-delay: 0.5s;
    box-shadow: 0 0 15px var(--accent-gold); /* Add a glow */
}

.hero-shape.shape-4 { /* Smaller Purple Dot (behind-ish) */
    width: 45px;
    height: 45px;
    background: var(--secondary-lime);
    bottom: 25%;
    left: -20px;
    z-index: 4; /* Behind image but above blob */
    opacity: 0.7;
    animation-duration: 6s;
    animation-delay: 0.2s;
}


/* Floating Animation */
@keyframes floatAnimation {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
         transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Responsive Adjustments for Hero */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 80px; /* Less padding on mobile */
        padding-bottom: 60px;
    }
    .hero-text-content h1 {
        font-size: 2.5rem; /* Adjust heading size */
    }
     .hero-text-content .lead {
        font-size: 1rem;
     }
     .hero-visual-wrapper {
         margin-bottom: 2rem;
         min-height: 280px; /* Adjust height */
         padding:30px
     }
     .hero-image {
         max-width: 100%; /* Allow full width within column */
     }

     /* Adjust shape positions/sizes for mobile */
     .hero-shape.shape-1 { width: 120px; height: 120px; top: -20px; left: -30px; }
     .hero-shape.shape-2 { width: 60px; height: 60px; bottom: -15px; right: 5px; }
     .hero-shape.shape-3 { width: 25px; height: 25px; top: 5%; right: 10%; }
     .hero-shape.shape-4 { width: 35px; height: 35px; bottom: 15%; left: -10px; }
}

@media (max-width: 767.98px) {
     .hero-text-content .btn {
         width: 80%; /* Make buttons wider on small screens */
         margin-left: auto;
         margin-right: auto;
         display: block; /* Stack buttons */
     }
      .hero-text-content .btn-outline-secondary-fancy {
          margin-top: 0.75rem; /* Add space between stacked buttons */
      }
}




/*------------*/



/* --- Independent Wave Separator --- */
.section-separator-container.independent-wave,
.artistic-separator-wrapper {
    height: 100px; /* Controls the visual height/overlap area */
    width: 100%;
    position: relative; /* Establishes stacking context */
    margin-top: -100px; /* Pulls the separator UP to overlap the section above */
                           /* Should match the height */
    z-index: 2; /* Sit visually between sections (above section with z-index 1) */
    pointer-events: none; /* Allow clicks to pass through */
    overflow: hidden; /* Prevents potential visual glitches at edges */
}

    .artistic-separator-wrapper {
        margin-top: -1px;
        background-color: transparent;
    }

.independent-wave svg,
.artistic-separator-wrapper svg {
    display: block;
    width: 100%;
    height: 100%; /* Fill the container height */
    position: absolute;
    bottom: 0; /* Align SVG bottom with container bottom */
    /* The fill happens *within* the SVG viewbox based on the path */
}

/* Responsive adjustments for separator height/overlap */
@media (max-width: 991.98px) {
    .section-separator-container.independent-wave,
    .artistic-separator-wrapper {
        height: 70px;
        margin-top: -50px;
    }
}
@media (max-width: 767.98px) {
    .section-separator-container.independent-wave,
    .artistic-separator-wrapper {
        height: 50px;
        margin-top: -50px;
    }
}



/* --- Getting Started Section --- */
.getting-started-section {
    background-color: var(--light-purple-bg);
    background: linear-gradient(to bottom, var(--primary-green), var(--secondary-lime), var(--light-green-bg));
    overflow: hidden;
}

/* Adjust subtitle color (done inline in HTML example, but could be here) */
/* .getting-started-section .section-subtitle { color: var(--primary-green); } */

.getting-started-slide-item a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.getting-started-slide-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px; /* Slightly less than parent for border effect */
    transition: transform var(--transition-speed) ease; 
}

.getting-started-slide-item .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgb(148 239 164), rgba(112, 0, 255, 0));
    color: var(--white);
    padding: 30px 20px 20px;
    font-weight: 600; /* Bold caption */
    font-size: 1.1rem;
    opacity: 1;
    transition: all var(--transition-speed) ease;
    border-bottom-left-radius: 18px; /* Match image rounding */
    border-bottom-right-radius: 18px;
    text-align: center; /* Center caption text */
}
.getting-started-slide-item .slide-caption i {
    display: block; /* Icon on its own line */
    font-size: 1.5rem; /* Larger icon */
    margin-bottom: 5px;
    opacity: 0.8;
}


/* Hover effects */
.getting-started-slide-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--box-shadow-medium);
}

.getting-started-slide-item:hover img {
    transform: scale(1.08); /* Slightly larger zoom */
}

.getting-started-slide-item:hover .slide-caption {
   background: linear-gradient(to top, rgba(51, 212, 116, 0.9), rgba(51, 212, 116, 0)); /* Green Gradient on Hover */
   padding-bottom: 25px; /* Slightly taller hover caption */
}
.getting-started-slide-item:hover .slide-caption i {
    opacity: 1;
}


/* --- Slick Dots (Optional Styling) --- */
.slick-dots {
    bottom: -45px;
}
.slick-dots li button:before {
    font-size: 12px; /* Adjust dot size */
    color: var(--muted-text); /* Default dot color */
    opacity: 0.5;
    transition: all var(--transition-speed) ease;
}
.slick-dots li.slick-active button:before,
.slick-dots li:hover button:before {
    color: var(--primary-green); /* active/hover dots */
    opacity: 1;
}


/* --- Responsive Adjustments for Getting Started --- */
@media (max-width: 991.98px) {
    .getting-started-slide-item img {
        aspect-ratio: 9 / 20; /* Slightly less tall on medium screens if needed */
    }
}

@media (max-width: 767.98px) {
     .getting-started-slide-item img {
        aspect-ratio: 9 / 20; /* Even less tall on small screens */
    }
}








/* --- Tour/Showcase Section --- */
.tour-showcase-section {
    overflow: hidden; 
    background: linear-gradient(to bottom, var(--light-green-bg) 0%, var(--secondary-lime) 100%);
}

.tour-slider, .getting-started-slider{
    padding: 0 5px; /* Creates spacing between slides */
}

.tour-slide-item, .getting-started-slide-item  {
    position: relative;
    overflow: hidden; /* Ensures caption stays contained */
    border-radius: 15px; /* Rounded corners */
    box-shadow: var(--box-shadow-light);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 10px solid transparent; /* Prepare for hover border */
}

.tour-slide-item a {
    display: block; /* Make link fill the item */
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    
}

.tour-slide-item img {
    display: block;
    width: 100%;
    height: auto;
    /* aspect-ratio: 9 / 16;  */
    object-fit: cover; 
    border-radius: 15px; 
    transition: transform var(--transition-speed) ease;
}

.tour-slide-item .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)); /* Gradient overlay */
    color: var(--white);
    padding: 25px 15px 15px; /* More padding at bottom */
    font-weight: 500;
    font-size: 1rem;
    opacity: 1;
    transition: opacity var(--transition-speed) ease;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Hover effects */
.tour-slide-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--box-shadow-medium);
}

.tour-slide-item:hover img {
    transform: scale(1.05); /* Slight zoom on image */
}

/* --- Custom Slick Arrows --- */
.slick-custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--secondary-gradient); 
    color: var(--white);
    border: none;
    border-radius: 50%; /* Circle shape */
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-custom-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.slick-custom-prev {
    left: -25px; /* Position outside the container slightly */
}

.slick-custom-next {
    right: -25px; /* Position outside the container slightly */
}

/* Hide arrows on smaller screens where they might overlap */
@media (max-width: 767.98px) {
    .slick-custom-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .slick-custom-prev { left: 5px; } /* Bring inside on mobile */
    .slick-custom-next { right: 5px; } /* Bring inside on mobile */
}


/*--------*/


/* style.css (Additions) */

/* --- Why Choose Us Section --- */
.why-us-section {
    background-color: #1a0f2b; /* Deep dark purple/blue */
    background-image: linear-gradient(to bottom, #005d2a 0%, #0f0223 100%);
    --section-bg-color: #1a0f2b;
    margin-top: -50px;
    padding-top: 100px;
}

/* Alternative Gradient Text Style */
.gradient-text-alt {
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold)); /* Green to Gold */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
}

.why-us-item {
    height: 100%;
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.03); /* Very subtle background */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden; /* Needed for pseudo-element effect */
    z-index: 1; /* Above background shapes */
}

.why-us-item::before { /* Futuristic highlight/border effect */
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Start off-screen */
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--rgb-primary-green, 51, 212, 116), 0.3), transparent); /* Green glow */
    transform: skewX(-30deg);
    transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth ease-out */
    z-index: -1;
}
/* Add --rgb-primary-green to :root if not already there */
/* :root { --rgb-primary-green: 51, 212, 116; } */


.icon-wrapper.hex-icon {
    width: 80px;
    height: 92.38px; /* Height for equilateral hexagon based on width */
    background: var(--secondary-gradient); /* Purple gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto; /* Center hexagon */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); /* Hexagon shape */
    transition: all var(--transition-speed) ease;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.3); /* Purple glow */
}

.hex-icon i {
    font-size: 2rem; /* Icon size */
    color: var(--white);
    transition: transform var(--transition-speed) ease;
}

.item-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
}

.item-description {
    color: rgba(255, 255, 255, 0.7); /* Light text for description */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Hover Effects */
.why-us-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(var(--rgb-primary-green, 51, 212, 116), 0.5); /* Green border highlight */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-us-item:hover::before {
    left: 110%; /* Move highlight across */
}

.why-us-item:hover .icon-wrapper.hex-icon {
    background: var(--primary-gradient); /* Switch to Green gradient */
    transform: rotate(15deg); /* Slight rotation */
    box-shadow: 0 0 30px rgba(51, 212, 116, 0.5); /* Brighter green glow */
}

.why-us-item:hover .hex-icon i {
   transform: scale(1.1); /* Scale up icon */
}

/* Futuristic Background Shapes */
.background-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05; /* Very subtle */
    z-index: 1; /* Below content */
    filter: blur(50px); /* Soft blur */
}
.background-shape.shape-a {
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    top: 10%;
    left: -100px;
}
.background-shape.shape-b {
    width: 300px;
    height: 300px;
    background: var(--secondary-purple);
    bottom: 5%;
    right: -80px;
}

@media (max-width: 991.98px) {
    .why-us-item { padding: 25px 15px; }
    .icon-wrapper.hex-icon { width: 70px; height: 80.83px; margin-bottom: 20px; }
    .hex-icon i { font-size: 1.8rem; }
    .item-title { font-size: 1.15rem; }
    .item-description { font-size: 0.9rem; }
}
@media (max-width: 767.98px) {
     .background-shape { display: none; } /* Hide bg shapes on small mobile */
}


/*-----------*/




/* style.css (Additions) */

/* --- Our Story Section --- */
.our-story-section {
    background-color: #1a0f2b; /* Match Why Us or choose another dark bg */
    background-image: linear-gradient(to bottom, #0f0223 0%, #015a2a 100%);
    --section-bg-color: #120a1f; /* Define for separators */
    color: var(--white);
}

.story-point {
    margin-bottom: 4rem; /* Consistent spacing */
}
@media (min-width: 992px) {
    .story-point { margin-bottom: 6rem; }
}

.story-point-title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    position: relative;
    display: inline-block; /* Contain the pseudo-element */
    padding-bottom: 8px;
}
.story-point-title::after { /* Title underline accent */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient); /* Green gradient */
    border-radius: 3px;
}

.story-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}

.highlight-text { /* Style for key phrases */
    color: var(--primary-green);
    font-weight: 600;
}

.story-visual {
    position: relative;
    padding: 0; /* Remove padding if icon sits on top */
    border: none; /* Remove border if using overlay */
    border-radius: 20px;
    overflow: hidden; /* Keep overflow hidden */
    background: none; /* Remove bg if using image/icon setup */
    box-shadow: 0 10px 30px rgba(0,0,0, 0.3); /* Add shadow here */
}

.story-visual-bg { /* Style for the background image */
    display: block;
    border-radius: 20px; /* Match container */
    opacity: 0.5; /* Make it subtle, let icon stand out */
    filter: blur(2px); /* Optional blur */
}

.visual-icon-overlay { /* Style for the icon */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; /* Size of icon background */
    height: 100px;
    background: var(--primary-gradient); /* Green gradient background */
    border-radius: 50%; /* Circular background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3; /* Above background image and accents */
    box-shadow: 0 5px 15px rgba(0,0,0, 0.2);
    transition: transform var(--transition-speed) ease, background var(--transition-speed) ease;
}

.visual-icon-overlay i { /* Style for the icon itself */
    font-size: 3rem; /* Adjust icon size */
    color: var(--white);
    line-height: 1; /* Ensure proper vertical alignment */
}

/* Hover effect on the visual container */
.story-visual:hover .visual-icon-overlay {
    transform: translate(-50%, -50%) scale(1.1); /* Scale up icon */
    background: var(--secondary-gradient); /* Change background to purple */
}
.story-visual:hover .story-visual-bg {
    opacity: 0.7; /* Slightly enhance bg image on hover */
    filter: blur(0);
}


.story-visual img {
    display: block;
    border-radius: 15px; /* Slightly smaller radius than container */
    box-shadow: 0 10px 30px rgba(0,0,0, 0.3);
}

.visual-accent { /* Decorative accent element */
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: -1; /* Behind the visual container */
    filter: blur(20px);
    opacity: 0.5;
}
.visual-accent.accent-problem { background: var(--accent-gold); top: -20px; left: -20px; }
.visual-accent.accent-realization { background: var(--primary-green); bottom: -30px; right: -15px; }
.visual-accent.accent-solution { background: var(--secondary-purple); top: -10px; right: -25px; }
.visual-accent.accent-mission { background: var(--primary-gradient); bottom: -20px; left: -30px; width: 100px; height: 100px; }




/* Style for the blockquote */
.story-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
    border-left: 4px solid var(--primary-green);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

/* Ensure visual accents are behind the icon overlay */
.visual-accent {
    z-index: 2; /* Below icon overlay */
    /* Keep other accent styles */
}

/* --- Background Shapes (reuse styles if defined already) --- */
.our-story-section .background-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Blob shape */
    opacity: 0.08;
    z-index: 1;
    filter: blur(60px);
    animation: slowRotate 20s linear infinite alternate;
}
.our-story-section .shape-c {
    width: 350px; height: 350px;
    background: var(--primary-green);
    top: 20%; right: -150px;
    animation-delay: 0s;
}
.our-story-section .shape-d {
    width: 450px; height: 450px;
    background: var(--secondary-purple);
    bottom: 10%; left: -200px;
    animation-delay: 2s;
}

@keyframes slowRotate {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(45deg) scale(1.05); }
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .story-point { text-align: center; margin-bottom: 3rem; }
    .story-visual { margin-top: 1.5rem; }
    .story-point-title { font-size: 1.5rem; }
    .story-text p { font-size: 1rem; }
   
     .our-story-section .background-shape { display: none; } /* Hide blobs on small mobile */
}





/*----------*/





/* --- Geometric Peak Separator --- */
.section-separator-container.geometric-separator {
    height: 80px; /* Controls the visual height/overlap area */
    width: 100%;
    position: relative;
    margin-top: -80px; /* Pulls the separator UP (match height) */
    z-index: 2; /* Sit visually between sections */
    pointer-events: none;
    overflow: hidden;
}

.geometric-separator .geo-layer { /* Style for both SVG layers */
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Optional: Add slight blur or offset for more depth */
/* .geometric-separator .geo-layer-bottom {
    filter: blur(1px);
    transform: translateY(2px); // Slightly lower
    opacity: 0.5; // Adjust base opacity
}
.geometric-separator .geo-layer-top {
    opacity: 1; // Ensure gradient layer is clear
} */


/* Responsive adjustments for separator height/overlap */
@media (max-width: 991.98px) {
    .section-separator-container.geometric-separator {
        height: 60px;
        margin-top: -60px;
    }
}
@media (max-width: 767.98px) {
    .section-separator-container.geometric-separator {
        height: 40px;
        margin-top: -40px;
    }
}

/*---------*/





/* --- Testimonials Section --- */
.testimonials-section {
    background-color: #1a0f2b; /* Or reuse a dark gradient */
    background-image: linear-gradient(to bottom, var(--light-green-bg) 0%, #211e39 100%);
    position: relative;
    overflow: hidden; /* Hide overflowing elements */
}

.testimonial-slider-wrapper {
    max-width: 800px; /* Control max width of the slider content */
    margin: 0 auto; /* Center the wrapper */
    padding: 0 40px; /* Add padding for arrows */
    position: relative;
}

.testimonial-slide {
    padding: 10px; 
    opacity: 0.2;
    transform: scale(0.99);
    transition: all .5s cubic-bezier(1.7, 0, 0.175, 1);
  }
.testimonial-slide.slick-current {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); /* Very subtle light gradient */
    border-radius: 20px;
    padding: 40px 30px 30px 30px; /* More padding top */
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px); /* Subtle blur effect */
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 15px rgba(0, 0, 0, 0.3);
}


.quote-icon {
    position: relative;
    top: -10px;
    left: 50%;
    opacity: .6;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-icon i {
    color: var(--white);
    font-size: 2.5rem;
    opacity: 0.9;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 30px; /* Space below icon */
    margin-bottom: 25px;
    border: none; /* Remove default blockquote border */
    padding: 0;
}

.testimonial-divider {
    width: 60px;
    height: 2px;
    background: var(--primary-gradient); /* Green gradient */
    border: none;
    margin: 0 auto 25px auto; /* Center divider */
    opacity: 0.7;
}

.author-info {
    display: flex;
    flex-direction: column; /* Stack image above text */
    align-items: center;
    margin-top: 15px;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-green); /* Green border */
    padding: 3px; /* Space between image and border */
    background-color: var(--dark-text); /* Fallback bg */
}

.author-details {
     /* Text already centered by card */
}

.author-name {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.author-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.rating-stars i {
    color: var(--accent-gold); /* Gold stars */
    margin: 0 1px;
    font-size: 0.9rem;
}

/* --- Testimonial Arrow Positioning --- */
/* Re-using .slick-custom-arrow styles defined previously */
.testimonials-section .slick-custom-prev {
    left: 15px; /* Adjust horizontal position */
}
.testimonials-section .slick-custom-next {
    right: 15px; /* Adjust horizontal position */
}

/* --- Background Shape (Optional) --- */
.testimonials-section .background-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0; /* Below content */
    filter: blur(80px);
}
.testimonials-section .shape-e {
    width: 500px; height: 500px;
    background: var(--secondary-purple);
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .testimonial-slider-wrapper {
        padding: 0 15px; /* Less padding for mobile */
    }
    .testimonials-section .slick-custom-arrow {
        display: none; /* Hide arrows on mobile, rely on dots/swipe */
    }
     .testimonial-card {
        padding: 35px 20px 25px 20px;
     }
     .review-text { font-size: 1rem; }
     .author-img { width: 60px; height: 60px; }
     .quote-icon { width: 50px; height: 50px; top: -20px; }
     .quote-icon i { font-size: 2.5rem; }
}


/*------------*/



/* style.css (Additions) */

/* --- How It Works Section --- */
.how-it-works-section {
    background: linear-gradient(to top, var(--light-green-bg), #fffae0);
    margin-top: -50px;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden; /* Contain animated lines */
}

/* --- Vertical Tab Navigation --- */
.how-it-works-nav .nav-link {
    background-color: var(--white);
    border: 1px solid #dee2e6; /* Light border */
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 15px 20px;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow-light);
    color: var(--dark-text); /* Default text color */
}

.how-it-works-nav .nav-link:last-child {
    margin-bottom: 0;
}

.how-it-works-nav .nav-link .icon-lg {
    font-size: 1.8rem; /* Icon size */
    line-height: 1;
    color: var(--muted-text); /* Default icon color */
    transition: color var(--transition-speed) ease;
    margin-top: 2px; /* Alignment adjustment */
}

.how-it-works-nav .nav-link .tab-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 2px;
    color: var(--dark-text);
    transition: color var(--transition-speed) ease;
}

.how-it-works-nav .nav-link .tab-desc {
    font-size: 0.85rem;
    color: var(--muted-text);
    display: block;
}

/* Hover State */
.how-it-works-nav .nav-link:hover {
    background-color: var(--light-green-bg); /* Light green hover */
    border-color: var(--primary-green);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(var(--rgb-primary-green, 51, 212, 116), 0.1);
}
.how-it-works-nav .nav-link:hover .tab-title {
    color: var(--primary-green);
}
.how-it-works-nav .nav-link:hover .icon-lg {
     color: var(--primary-green);
}

/* Active State */
.how-it-works-nav .nav-link.active {
    background: var(--primary-gradient); /* Green gradient */
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(var(--rgb-primary-green, 51, 212, 116), 0.3);
    transform: translateX(0); /* Reset hover transform */
}

.how-it-works-nav .nav-link.active .tab-title,
.how-it-works-nav .nav-link.active .tab-desc,
.how-it-works-nav .nav-link.active .icon-lg {
    color: var(--white) !important; /* Ensure white text/icon on gradient */
}

/* --- Tab Content Panes --- */
.how-it-works-content .tab-pane {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px 35px;
    box-shadow: var(--box-shadow-medium);
    border: 1px solid #e9ecef;
    /* Ensure smooth transitions */
    /* Bootstrap handles fade, but you could add transform */
    /* transition: opacity .3s ease-in-out, transform .3s ease-in-out; */
}

.how-it-works-content .content-inner {
    /* Inner wrapper if needed */
}

.how-it-works-content .content-title {
    font-weight: 700;
    color: var(--dark-text);
    font-size: 1.6rem;
}
.how-it-works-content p {
    color: var(--muted-text);
    line-height: 1.7;
    font-size: 1rem;
}

/* Feature Visual Styling */
.feature-visual {
    border-radius: 12px;
    overflow: hidden; /* Important for animated lines */
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.feature-visual img {
    display: block;
    height: auto;
    border-radius: 12px;
    max-width: 100%;
    max-height: 600px; /* Optional: limit height */
    display: block;
    margin: 0 auto; /* Center it */
    object-fit: contain; /* Keep aspect ratio intact */
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .how-it-works-nav .nav-link { padding: 12px 15px; }
    .how-it-works-nav .nav-link .icon-lg { font-size: 1.5rem; }
    .how-it-works-nav .nav-link .tab-title { font-size: 1rem; }
    .how-it-works-nav .nav-link .tab-desc { font-size: 0.8rem; }
    .how-it-works-content .tab-pane { padding: 25px; }
    .how-it-works-content .content-title { font-size: 1.4rem; }
}

/*------------*/


/* style.css (Additions) */

.background-image-wrapper {
    position: absolute;
    inset: 0; 
    overflow: hidden;
    z-index: 1;
}
.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    transform: scale(1.05); 
    filter: blur(3px) brightness(0.8);
    
}

.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 79, 53, 0.95), #0b0b29);
    z-index: 2; 
    opacity: 1;
} 


/* CTA Content Styling */
.cta-content {
    /* Centered via container/row */
}
.cta-content .lead {
    font-weight: 400;
    max-width: 600px; /* Constrain text width */
    margin-left: auto;
    margin-right: auto;
}
/* Use gradient text style defined previously */
/* .cta-content .gradient-text-alt { ... } */


/* --- Playstore and Apple store buttons --- */

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center; /* Center horizontally */
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-top: 1.5rem;
    max-width: 100%;
}

.btn-cta-store:hover img {
    transform: scale(1.05);
}

.btn-cta-store img {
    transition: transform 0.3s ease;
    max-width: 100%; /* ✅ Prevents image from overflowing container */
    width: auto;
    display: block;
}

.btn-ios img {
    height: 60px;
}

.btn-android img {
    height: 90px;
}

/* --- Optional Background Shapes --- */
.cta-background-elements {
    position: absolute;
    inset: 0;
    z-index: 2; /* Deepest layer */
    pointer-events: none;
}


/* Optional Animation */
/* @keyframes slowFloat {
    from { transform: translateY(0px) scale(1); }
    to { transform: translateY(-20px) scale(1.05); }
} */


/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .cta-content h2 { font-size: 2.5rem; }
    .cta-content .lead { font-size: 1rem; }
    .btn-cta-store { min-width: 180px; padding: 10px 20px; }
    .btn-android img {height: 85px}
    .cta-background-elements { display: none; } /* Hide shapes on small mobile */
}

/*---------*/

/* --- Site Footer --- */
.site-footer {
    background-color: #110c1b;
    background-image: radial-gradient(at bottom center , #0c4724 0%, #0b0b29  70%);
    color: rgba(255, 255, 255, 0.7);
    --section-bg-color: #110c1b; 
}

.footer-logo img {
    opacity: 0.9;
    transition: opacity var(--transition-speed) ease;
}
.footer-logo:hover img {
    opacity: 1;
}

.brand-info {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px; /* Limit width */
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem !important;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.7rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-speed) ease, padding-left var(--transition-speed) ease;
}
.footer-links a::before { /* Underline/shift effect */
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-green);
    transition: width var(--transition-speed) ease;
}
.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px; /* Slight indent on hover */
}
.footer-links a:hover::before {
    width: 100%;
}

/* Social Links */
.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-right: 10px;
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent; /* Prepare for hover border */
}
.social-links .social-icon:hover {
    transform: translateY(-3px) scale(1.3);
    color: var(--white);
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}
/* Specific Brand Colors */
.social-links .social-icon.social-fb { background-color: #1877F2; border-color: #1877F2; }
.social-links .social-icon.social-in {
     background: radial-gradient(circle at 30% 110%,
            #ffdb8b 0%,
            #ee653d 25%,
            #d42e81 50%,
            #a237b6 75%,
            #3e57bc 100%); 
    border-color: #a237b6; 
}
.social-links .social-icon.social-x { background-color: #000000; border-color: #000000; } /* Example for X */
.social-links .social-icon.social-ti { 
    color: #111111;
    filter: drop-shadow(1px 0px 0px #FD3E3E) drop-shadow(0px -1px 0px #4DE8F4);
 }
.social-links .social-icon.social-yt { background-color: #FF0000; border-color: #FF0000; }


/* Newsletter */
.newsletter-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}
.newsletter-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 8px;
    padding: 12px 55px 12px 15px; /* Space for button */
    height: 50px;
    transition: border-color var(--transition-speed) ease, background-color var(--transition-speed) ease;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(var(--rgb-primary-green, 51, 212, 116), 0.25);
    color: var(--white);
}
.newsletter-submit {
    position: absolute;
    top: 5px; /* Adjust for vertical centering */
    right: 5px; /* Adjust positioning */
    bottom: 5px;
    width: 40px; /* Button size */
    height: 40px; /* Button size */
    background: var(--primary-gradient);
    border: none;
    border-radius: 6px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all var(--transition-speed) ease;
}
.newsletter-submit:hover {
     filter: brightness(1.1);
     transform: scale(1.05);
}

.contact-link a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}
.contact-link a:hover {
     text-decoration: underline;
     filter: brightness(1.1);
}

/* Footer Bottom */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-image: linear-gradient(to right, var(--primary-green), transparent) 2;
    margin-top: 1rem;
    margin-bottom: 0;
}
.footer-bottom {
    /* Flex alignment handled by Bootstrap classes */
}
.copyright, .credits {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}
.credits i { font-size: 0.8rem; }


/* Footer Background Element */
.footer-bg-element {
    position: absolute;
    inset: 0;
    z-index: 0; /* Behind content */
    pointer-events: none;
}
/* SVG pattern styles defined inline, but you could add opacity etc here */
.footer-bg-element svg {
    opacity: 0.7; /* Control pattern visibility */
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .main-footer-content { padding-top: 2rem; }
    .footer-col { text-align: center; margin-bottom: 2.5rem !important; }
    .brand-info { max-width: none; margin-left: auto; margin-right: auto;}
    .social-links { justify-content: center; }
    .newsletter-form { max-width: 350px; margin-left: auto; margin-right: auto; }
    .footer-bottom { text-align: center; }
    .credits { margin-top: 0.5rem; }
}


/*---page hero section ---*/

.page-hero-section {
    background-color: var(--light-purple-bg);
    background: linear-gradient(to bottom, #ffffff, #9dffa0, var(--primary-green));
    overflow: hidden;
    margin-top: 150px;
}


/*------contact-------*/


/* style.css (Additions) */

/* --- Contact Us Section --- */
.contact-us-section {
    background-color: #1a0f2b; /* Dark background */
    background-image: linear-gradient(200deg, #110c1b 0%, #25173d 100%);
    --section-bg-color: #110c1b;
    color: var(--white);
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    padding: 35px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0, 0.2);
    height: 100%; /* For align-items-stretch */
    backdrop-filter: blur(3px);
}
@media (min-width: 992px) {
    .contact-form-wrapper { padding: 40px 35px; }
    .contact-info-wrapper { padding: 40px 35px; }
}


.form-title, .info-title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.8rem !important;
}

/* --- Form Styling --- */
.form-floating > .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 8px;
    transition: border-color var(--transition-speed) ease, background-color var(--transition-speed) ease;
}
.form-floating > .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(var(--rgb-primary-green, 51, 212, 116), 0.2);
    color: var(--white);
}
/* Label Styling */
.form-floating > label {
    color: rgba(255, 255, 255, 0.6);
    padding-left: 1rem; /* Adjust if needed */
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-green);
    opacity: 1;
    transform: scale(.85) translateY(-.6rem) translateX(.15rem); /* Adjusted floating position */
}
.form-floating > .form-control:-webkit-autofill { /* Style autofill background */
     -webkit-box-shadow: 0 0 0 30px #352d49 inset !important; /* Or a solid color */
     -webkit-text-fill-color: var(--white) !important; /* Ensure text is white */
}
.form-floating > textarea.form-control {
    min-height: 150px; /* Ensure consistent height */
}

/* Submit Button */
.btn-gradient-submit {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(var(--rgb-primary-green, 51, 212, 116), 0.2);
}
.btn-gradient-submit:hover {
    filter: brightness(1.15);
    transform: translateY(-3px) scale(1.02);
     box-shadow: 0 6px 20px rgba(var(--rgb-primary-green, 51, 212, 116), 0.35);
    color: var(--white);
}

/* --- Contact Info Styling --- */
.contact-info-item {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 2rem;
    padding: 15px 0; /* Add padding top/bottom for spacing */
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1); /* Separator */
    transition: background-color var(--transition-speed) ease;
    border-radius: 5px; /* Slight radius for hover bg */
}
.contact-info-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.contact-info-item:hover {
     background-color: rgba(255, 255, 255, 0.03); /* Subtle bg on hover */
}


/*###################Scroll Button on every page to scroll to top or bottom###########################*/
.scroll-btn {
  position: fixed;
  right: -60px; /* Initially off-screen */
  z-index: 999;
  background-color: #0400ff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateX(0);
  transition:
    right 0.5s ease,
    opacity 0.5s ease,
    transform 0.3s ease;
}

.scroll-btn::after {
  content: attr(title);
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: #fff;
  padding: 6px 8px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.scroll-btn:hover::after {
  opacity: 1;
}

.scroll-btn.visible {
  right: 20px;         /* Slide in */
  opacity: 1;          /* Fade in */
  transform: translateX(-5px); /* Tiny bounce */
}

.scroll-btn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
  border-radius: 25%;
}

.top-btn {
  bottom: 80px;
}

.bottom-btn {
  bottom: 20px;
}

/*######################################Contact icons###################################*/

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 55px; /* Icon bg size */
    height: 55px;
    background: var(--secondary-gradient); /* Purple gradient */
    border-radius: 12px; /* Squarish rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all var(--transition-speed) ease;
}
.contact-info-item:hover .contact-icon-wrapper {
     background: var(--primary-gradient); /* Green gradient on hover */
     transform: rotate(-10deg) scale(1.05);
     box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.contact-icon-wrapper i { /* Flaticon icon style */
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}
.contact-details p {
    margin-bottom: 5px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}
.contact-details p a {
    color: inherit; /* Inherit paragraph color */
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
.contact-details p a:hover {
    color: var(--primary-green);
}
.contact-details small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Fancy Outline Button for FAQ */
.btn-outline-fancy {
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 50px; /* Pill shape */
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}
.btn-outline-fancy:hover {
    background-color: var(--primary-green);
    color: var(--dark-text); /* Dark text on green bg */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--rgb-primary-green, 51, 212, 116), 0.2);
}

/*######################################Notification Styles###################################*/

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}

.notification {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.notification-message {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #28a745;
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 10s linear;
}

.notification-progress.error {
    background: #dc3545;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
}



/* --- Background Elements --- */
.contact-bg-elements {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* Re-use .bg-shape styles if needed, or define new ones */
.contact-us-section .bg-shape {
    position: absolute; border-radius: 50%; opacity: 0.08; filter: blur(80px);
}

.contact-us-section .shape-h { width: 400px; height: 400px; background: var(--secondary-purple); top: -50px; right: -100px; }
.contact-us-section .shape-i { width: 300px; height: 300px; background: var(--primary-green); bottom: -80px; left: -80px; }

/* Responsive Adjustments */
@media (max-width: 991.98px) {
     .contact-info-wrapper { margin-top: 2rem; } /* Add space when stacked */
}
@media (max-width: 767.98px) {
    .contact-form-wrapper, .contact-info-wrapper { padding: 25px 20px; }
    .form-title, .info-title { font-size: 1.3rem; }
    .contact-info-item { flex-direction: column; align-items: center; text-align: center; }
    .contact-icon-wrapper { margin-right: 0; margin-bottom: 15px; }
    .btn-gradient-submit { padding: 12px 25px; }
    .scroll-btn {display:none !important}/*Up and down arrow on the phone screens are very buggy, hence removing them from the phone screens*/
}

/*--------------*/



