* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
:root {
    --primary: #06b6d4;
    --primary-dark: #0284c7;
    --secondary: #06b6d4;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-2: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --gradient-4: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-5: linear-gradient(135deg, #f5c505 0%, #e39000 100%);
    --gradient-6: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-7: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    --gradient-8: linear-gradient(135deg, #054169 0%, #9f35fc 100%);
    --gradient-9: linear-gradient(135deg, #a07ddb 0%, #8aadfd 100%);
    --gradient-10: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
}
body {
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}
/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.4rem 5%;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo i {
    font-size: 2rem;
}
/* Hamburger Menu Button */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    z-index: 1001; /* Ensure it's above the nav background */
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark); /* Match header text color */
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
    /* Specific style for the CTA button if needed when inside the mobile menu */
    nav .cta-button {
        /* Example: Center the button within the full-width link container */
        margin: 0 auto;
        width: auto; /* Override any fixed width set previously */
        /* Or style it differently if it doesn't fit the list style */
        /* display: block; */
        /* margin: 0.5rem auto; */
    }
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark); /* Match header text color */
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}
nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}
nav a:hover {
    color: var(--primary);
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
nav a:hover::after {
    width: 100%;
}
/* Prevent the underline effect on the CTA button inside the nav */
nav .cta-button::after {
    display: none;
}
/* --- Consolidated Mobile Menu Styles --- */
/* Hamburger Menu Button - Hidden on desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
/* Close Menu Button - Hidden by default */
.close-menu {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    z-index: 1002;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
/* Mobile Menu Styles */
@media (max-width: 768px) {
    /* Show hamburger button */
    .menu-toggle {
        display: flex;
    }
    /* Hide nav list by default */
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    /* Show nav list and close button when nav has 'active' class */
    nav.active ul {
        display: flex;
    }
    nav.active .close-menu {
        display: flex;
    }
    /* Style for nav links in mobile menu */
    nav a {
        color: var(--dark);
        padding: 0.75rem 1.5rem;
        width: 100%;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }
    nav a:hover {
        background-color: rgba(14, 165, 233, 0.1);
    }
    /* Hide underline effect on mobile */
    nav a::after {
        display: none;
    }
}
/* Explicitly hide the close button on desktop */
@media (min-width: 769px) {
    .close-menu {
        display: none ;
    }
}
.cta-button {
    background: var(--gradient-3);
    color: var(--white);
    border: none;
    padding: 0.4rem 0.8rem; /* Reduced padding (previously 0.5rem 1rem) */
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    /*display: inline-block;*/
    font-size: 0.8rem; /* Reduced font size (previously 0.9rem) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 120px;
    /* height: 36px; */ /* You might want to remove or adjust this line */
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0);
}
/* Hero Section with Parallax */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Amairaac_Background_comp_comp.webp') center/cover no-repeat;
    z-index: -2;
    /* will-change: transform;*/
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(14, 165, 233, 0.4) 100%);
    z-index: -1;
}
.hero-content {
    max-width: 800px;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    z-index: 1;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.hero-specialties {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.specialty-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.secondary-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.secondary-button:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}
/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* Reduce height for mobile */
        min-height: 600px; /* Set minimum height */
    }
    .hero-content {
        padding: 0 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
@media (max-width: 576px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
}
/* Parallax Section with Gradient Animation */
.parallax-section {
    position: relative;
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-2);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    padding-top: 10rem; /* Add this line to account for the fixed header */
}
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('images/Amairaac_Background_comp_comp.webp') center/cover no-repeat;
    will-change: transform;
    z-index: -1;
    opacity: 0.3;
}
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    z-index: -1;
}
/* --- New CSS for Parallax Section Slider and Bottom Text --- */
/* Container for slider and text at the bottom */
.parallax-bottom {
    position: absolute;
    bottom: 3rem; /* Adjusted from -18rem to a more reasonable value */
    left: 2%; /* Match the padding used elsewhere */
    right: 2%; /* Match the padding used elsewhere */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the slider and text horizontally */
    gap: 2rem; /* Changed from -2rem to positive 2rem for proper spacing */
    z-index: 3; /* Ensure it's above the background layers */
}
/* Slider Container */
.slider-container {
    width: 100%;
    max-width: 1000px; /* Limit width */
    overflow: hidden; /* Hide overflow from slides */
    border-radius: 16px; /* Match your design style */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Add shadow */
}
/* Slider */
.slider {
    position: relative;
    width: 100%;
    /* height: 562.5px; */ /* Remove the fixed height */
    padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio (9/16 * 100%) */
    overflow: hidden; /* Ensure slides don't overflow the calculated area */
}
/* Individual Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth fade animation */
}
.slide.active {
    opacity: 1;
}
/* Slide Image */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the slide area */
    display: block;
}
/* Slider Navigation Dots */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5); /* Light dot */
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: var(--white); /* Active dot color */
}
.dot:hover {
    background-color: rgba(255, 255, 255, 0.8); /* Hover effect */
}
/* Text at the bottom */
.parallax-text-bottom {
    text-align: center;
    color: var(--white);
    padding: 2rem; /* Reduced from 10rem to a more reasonable value */
    /*background: rgba(15, 23, 42, 0.6); /* Added background for better readability */
    border-radius: 8px; /* Match your style */
    max-width: 800px; /* Added max-width for better readability */
}
.parallax-text-bottom h2 {
    font-size: 1.8rem; /* Adjust size as needed */
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.parallax-text-bottom p {
    font-size: 1rem; /* Adjust size as needed */
    opacity: 0.9;
}
/* Responsive styles for the slider section */
@media (max-width: 768px) {
    .parallax-section {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 11rem; /* Add bottom padding to make space for the slider */
    }
    .parallax-bottom {
        position: relative; /* Change from absolute to relative */
        bottom: auto; /* Reset bottom value */
        left: auto; /* Reset left value */
        right: auto; /* Reset right value */
        margin-top: -4rem; /* Add top margin instead of positioning */
        gap: 2rem; /* Increase gap for better spacing */
    }
    .parallax-text-bottom {
        padding: 1rem; /* Increase padding */
        /* background: rgba(15, 23, 42, 0.7); /* Add background for better readability */
        border-radius: 16px; /* Increase border radius */
        max-width: 90%; /* Limit width for better readability */
    }
    .parallax-text-bottom h2 {
        font-size: 1.6rem; /* Increase font size */
    }
    .parallax-text-bottom p {
        font-size: 1.1rem; /* Increase font size */
    }
    .slider-container {
        max-width: 95%; /* Slightly reduce max-width */
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); /* Increase shadow for better visibility */
    }
    .slider {
        padding-bottom: 60%; /* Slightly taller on mobile */
    }
}
@media (max-width: 576px) {
    .parallax-section {
        padding-top: 0;
        padding-bottom: 2rem; /* Adjust bottom padding for small mobile */
    }
    .parallax-bottom {
        margin-top: 2rem; /* Reduce top margin for small mobile */
        gap: 1.5rem; /* Adjust gap */
    }
    .parallax-text-bottom {
        padding: 0.9rem;
        max-width: 85%; /* Increase max-width for small mobile */
    }
    .parallax-text-bottom h2 {
        font-size: 1.7rem;
    }
    .parallax-text-bottom p {
        font-size: 1rem;
    }
    .slider {
        padding-bottom: 65%; /* Even taller on small mobile */
    }
}
/* Services Section */
.services {
    padding: 5rem 5%;
    background: var(--gradient-7);
    position: relative;
    z-index: 1;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
}
.service-card p {
    color: var(--gray);
    line-height: 1.8;
}
/* Our Approach Section */
.approach {
    padding: 3rem 5%;
    background: var(--gradient-9);
}
.approach-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.approach-steps {
    flex: 1;
    background: var(--gradient-6);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.approach-image {
    width: 200%;
    max-width: 1200px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
    animation: float 10s ease-in-out infinite;
}
.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.approach-details {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.approach-detail {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}
.approach-detail.visible {
    opacity: 1;
    transform: translateX(0);
}
.approach-detail:last-child {
    margin-bottom: 0;
}
.approach-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
}
.approach-detail p {
    color: var(--gray);
    line-height: 1.8;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
    /* Mobile Responsive Styles for Our Approach Section */
@media (max-width: 768px) {
    .approach {
        padding: 2rem 3%; /* Reduce padding for mobile */
    }
    .approach-container {
        flex-direction: column; /* Stack elements vertically on mobile */
        border-radius: 16px;
        overflow: hidden;
    }
    .approach-steps {
        padding: 2rem; /* Reduce padding */
        order: 2; /* Move to bottom on mobile */
    }
    .approach .approach-image { /* More specific selector */
    width: 150%; /* Add  to override */
    max-width: 150%;
    margin-left: -3%;
    margin-right: -3%;
    height: 300px;
    order: 0;
    animation: none;
    overflow: hidden;
}
    .approach-details {
        padding: 2rem; /* Reduce padding */
    }
    .approach-detail {
        margin-bottom: 0.5rem; /* Reduce margin between details */
    }
    .approach-detail h3 {
        font-size: 1.2rem; /* Reduce font size */
    }
    .approach-detail p {
        font-size: 0.95rem; /* Reduce font size */
    }
}
@media (max-width: 576px) {
    .approach {
        padding: 1.5rem 3%; /* Further reduce padding for small mobile */
    }
    .approach-steps {
        padding: 1.5rem; /* Further reduce padding */
    }
    .approach-details {
        padding: 1.5rem; /* Further reduce padding */
    }
    .approach-detail {
        margin-bottom: 1.2rem; /* Further reduce margin */
    }
    .approach-detail h3 {
        font-size: 1.1rem; /* Further reduce font size */
    }
    .approach-detail p {
        font-size: 0.9rem; /* Further reduce font size */
    }
    .approach .approach-image { /* More specific selector */
        width: 182%; /* Add  to override */
        max-width: 200%;
        margin-left: -3%;
        margin-right: -3%;
        height: 300px;
        order: 0;
        animation: none;
        overflow: hidden;
    }
}
/* Expertise Section with Flip Cards */
.expertise {
    padding: 5rem 5%;
    background: var(--gradient-8);
		background-size: 400% 400%;    /* Required for the animation effect */
		animation: gradient 10s ease infinite; /* Apply the animation */
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
/* Flip Card Styles */
.flip-card {
    width: 100%;
    height: 250px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}
.flip-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.flipper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 700ms cubic-bezier(.2,.9,.3,1);
    border-radius: 16px;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.1);
}
.face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
    font-size: 1.05rem;
    user-select: none;
}
.front {
    background: var(--white);
    color: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.back {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.08));
    border: 5px solid rgba(255,255,255,0.4);
    color: var(--white);
    background-blend-mode: overlay;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}
.back .sub {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.9;
    color: var(--yellow);
    margin-top: -6px;
}
/* Hover flips */
.flip-card-left:hover .flipper { transform: rotateY(-180deg); }
.flip-card-right:hover .flipper { transform: rotateY(180deg); }
.flip-card-up:hover .flipper { transform: rotateX(-180deg); }
.flip-card-down:hover .flipper { transform: rotateX(180deg); }
/* For back faces when flipping on X axis */
.flip-card-up .back { transform: rotateX(180deg); }
.flip-card-down .back { transform: rotateX(180deg); }
/* Add these lines for back faces when flipping on Y axis (Left/Right cards) */
.flip-card-left .back { transform: rotateY(-180deg); }
.flip-card-right .back { transform: rotateY(180deg); }
.flip-card-icon {
	color: var(--secondary);
	font-size: 2rem !important;
}
.back .flip-card-icon {
	color: var(--primary);
}
/* Responsive for Expertise section */
/* Tablet breakpoint: 768px */
@media (max-width: 768px) {
    .expertise {
        padding: 4rem 4%;
    }
    .flip-card {
        height: 220px;
        transform: none !important;
        opacity: 1 !important;
        transition: none;
    }
    .face {
        font-size: 1rem;
        padding: 0.5rem;
    }
    .flip-card-icon {
        font-size: 2.5rem;
    }
    .back .flip-card-icon {
        font-size: 2.2rem;
    }
}
/* Mobile breakpoint: 576px */
@media (max-width: 576px) {
    .expertise {
        padding: 3rem 3%;
    }
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .flip-card {
        height: 200px;
    }
    .face {
        font-size: 0.95rem;
    }
    .flip-card-icon {
        font-size: 2.2rem;
    }
    .back .sub {
        font-size: 0.72rem;
    }
}
/* Split Section about with Animation */
.split-section {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.split-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    display: flex; /* Make it a flex container */
    flex-direction: column; /* Arrange children vertically */
    align-items: center; /* Center child elements horizontally (left/right) */
    justify-content: center; /* Center child elements vertically (top/bottom) within the available space */
}
.split-content.visible {
    opacity: 1;
    transform: translateX(0);
}
.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}
.split-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.split-image {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}
.split-image.visible {
    opacity: 1;
    transform: translateX(0);
}
.split-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: auto;
    display: block;
}
.split-reverse .split-content {
    transform: translateX(50px);
}
.split-reverse .split-image {
    transform: translateX(-50px);
}
.split-reverse .split-content.visible {
    transform: translateX(0);
}
.split-reverse .split-image.visible {
    transform: translateX(0);
}
/* Tablet breakpoint: 768px */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
        padding: 4rem 4%;
        gap: 3rem;
    }
    .split-content, .split-image {
        transform: none !important;
        opacity: 1 !important;
        transition: none;
    }
    .split-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    .split-content p {
        font-size: 1rem;
        text-align: center;
    }
}
/* Mobile breakpoint: 576px */
@media (max-width: 576px) {
    .split-section {
        padding: 3rem 3%;
        gap: 2rem;
    }
    .split-content h2 {
        font-size: 1.6rem;
    }
    .split-content p {
        font-size: 0.95rem;
    }
    .split-image img {
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}
/* Maintenance Plans Section */
.maintenance-section {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 0 auto;
    background: var(--gradient-5);
    color: var(--white);
    text-align: left; /* Align text to the left */
    flex-direction: row;
}
.maintenance-content {
    flex: 1;
    display: flex;
    flex-direction: column; /* Arrange children vertically */
    align-items: flex-start; /* Align text to the left */
    justify-content: flex-start; /* Center text vertically within available space */
}
.maintenance-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}
.maintenance-content p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.maintenance-image {
    flex: 1;
    order: -1
}
.maintenance-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: auto;
    display: block;
}
/* Responsive design for screens smaller than 768px */
@media (max-width: 768px) {
    .maintenance-section {
        flex-direction: column; /* Stack the image and text on small screens */
        text-align: flex-start; /* Center text on small screens */
    }
    .maintenance-image, .maintenance-content {
        flex: none;
        width: 100%;
    }
    .maintenance-content h2 {
        font-size: 2rem; /* Make the heading a bit smaller */
    }
    .maintenance-content p {
        font-size: 1rem; /* Adjust paragraph font size for better readability */
    }
}
/* Responsive design for screens smaller than 576px */
@media (max-width: 576px) {
    .maintenance-section {
        padding: 3rem 3%; /* Reduce padding for smaller screens */
    }
    .maintenance-image, .maintenance-content {
        flex: none;
        width: 100%;
    }
    .maintenance-content h2 {
        font-size: 2rem; /* Make the heading a bit smaller */
    }
    .maintenance-content p {
        font-size: 1rem; /* Adjust paragraph font size for better readability */
    }
}
/* Stats Section */
.stats {
    padding: 5rem 5%;
    background: var(--gradient-6);
    color: var(--white);
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.stat-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}
.stat-item.visible {
    opacity: 1;
    transform: scale(1);
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
/* --- Responsive Breakpoints Stat section --- */
/* Tablet */
@media (max-width: 768px) {
    .stats {
        padding: 3rem 5%;
    }
    .stats-grid {
        gap: 2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 1rem;
    }
}
/* Mobile */
@media (max-width: 576px) {
    .stats {
        padding: 2.5rem 4%;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-label {
        font-size: 0.95rem;
    }
}
/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background: var(--white);
    position: relative;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonials-header {
    text-align: center;
    color: var(--primary);
    max-width: 700px;
    margin: 0 auto 4rem;
}
.testimonials-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.testimonials-header p {
    font-size: 1.1rem;
 }
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}
.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}
.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}
.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
}
.centered-section {
    text-align: center;
    margin-top: 20px;  /* You can adjust this margin as needed */
}

/* --- Responsive Breakpoints for testimonial --- */
/* Tablet */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 5%;
    }
    .testimonials-grid {
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .author-info h4 {
        font-size: 1rem;
    }
    .author-info p {
        font-size: 0.85rem;
    }
    .centered-section {
        margin-top: 15px;
    }
}
/* Mobile */
@media (max-width: 576px) {
    .testimonials {
        padding: 2.5rem 4%;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    .testimonial-card:hover {
        transform: translateY(-5px);
    }
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    .author-info h4 {
        font-size: 1rem;
    }
    .author-info p {
        font-size: 0.8rem;
    }
        .centered-section {
        margin-top: 15px;
    }
}
/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: var(--gradient-2);
}
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}
.section-header h2 {
    color: var(--white);
}
.section-header p {
    color: rgba(255, 255, 255, 0.8);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns on larger screens */
    gap: 1rem;
}
/* Adjust the form row layout for smaller screens */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr; /* Stack the inputs vertically on mobile */
    }
}
.col {
    display: flex;
    flex-direction: column;
}
.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.form-control:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-block {
    display: block;
    width: 100%;
}
#thankYouMessage {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    border-radius: 16px;
    margin-top: 2rem;
}
/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
    position: relative;
}
.company-info {
    position: absolute;
    bottom: 0rem;
    left: 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: left;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--secondary);
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        /* --- Cookie Consent Banner Styles --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    color: var(--white);
    padding: 1.2rem 2rem;
    z-index: 1000; /* Ensures it stays on top */
    display: none; /* Hidden by default, shown by JS if no consent */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
#cookie-banner p {
    margin: 0;
    color: var(--white);
    flex: 1;
    min-width: 280px;
}
#cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}
#cookie-banner a:hover {
    color: var(--secondary);
}
#cookie-consent-button {
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}
#cookie-consent-button:hover {
    background-color: var(--primary-dark);
}
.whatsapp-button {
    position: fixed;
    bottom: 60px;           /* Distance from bottom */
    right: 20px;            /* Distance from right */
    z-index: 1000;          /* Ensure it stays on top */
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
    background-color: #128C7E;
}
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 50px;
        right: 20px;
    }
    .whatsapp-button i {
        font-size: 24px;
    }
}