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

/* Fix hero section positioning to prevent fixed scroll behavior */
.hero {
    position: relative !important;
    transform: none !important;
    z-index: auto !important;
}

.highlight {
    color: #fff;
}


.hero {
    background: url(../svg/KaasBG.svg) no-repeat center / cover;
    background-size: cover;
    background-position: center;
    color: white;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 120px;
    margin-top: -100px;
    position: relative;
    display: flex;
    overflow: hidden;
}

/* Hero text opacity set to 95% in hero-card class */
    

.hero-content {
    position: relative;
    text-align: center;
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0.95; /* 95% visible */
}

/* Text Section */
.hero-text {
    max-width: 50%;
    text-align: left;
}

.hero-text p {
    color: #fff;
    font-size: 23px;
    margin-bottom: 5%;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    text-align: justify;
}

/* Button - Match Submit Button Style */
.hero-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #fff !important;
    color: #333 !important;
}

.hero-btn:hover {
    background-color: #f8f8f8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* No arrow rotation on hover - like submit button */
.hero-btn:hover img {
    transform: none !important;
}

.hero-btn img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}


/* Image */
.hero-image {
    width: 50%;
    padding: 70px;
    height: 425px;
    max-width: 350px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);    
}



/* Highlight Color */
.highlight {
    color: #fff;
}

/* Hero content styling to match service page */
.hero-content {
    display: flex;
    text-align: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 80vw;
    width: 100%;
    gap: 3rem;
    flex-direction: column;
}

/* Hero title and description styles moved to header-footer.css for consistency */

/* Floating text animation moved to style.css for consistency */

/* Container for products with hero-content style flexbox */
.container {
    display: flex;
    text-align: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1400px;
    width: 100%;
    gap: 1rem;
    flex-direction: column;
}


.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 140px;
    background: linear-gradient(black, #121212);
    z-index: 1;
    pointer-events: none;
}

.container .serv-title {
    padding:130px 0px 20px 0px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
}

.container .services-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid layout for products */
.container .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product card styles */
.container .grid .card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    height: auto;
    max-width: 100%;
    margin: 0;
}

.container .grid .card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 182, 193, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.container .grid .card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.container .grid .card:hover img {
    transform: translateY(-2px);
}

.container .grid .card .cont-padng {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container .grid .card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.container .grid .card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Sections */
section {
    padding: 4rem 1rem;
    text-align: center;
}

.why-kaaspro{
    margin-top: 45%;
}

/* Why Kaaspro Section */
.why-kaaspro h2 {
    font-size: 32px;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.features {
    display: flex;
    justify-content: space-evenly;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    max-width: 300px;
    text-align: left;
    margin-top:2%;
}

.feature i {
    font-size: 40px;
    color: rgba(255, 182, 193, 1);
    margin-bottom: 1rem;
    display: inline-block;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
    color: #333;
    margin-top: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.feature p {
    color: #666;
}

/* Healthcare Management Section */
.healthcare-management {
    background-color: #f9f9f9;
    padding: 4rem 1rem;
    background: url('../images/experience.webp') no-repeat center/cover;
}

.healthcare-management h2 {
    color: #fff;
    font-size: 53px;
    max-width: 950px;
    margin: 0 auto 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}



.title{
    font-family: 'Space Grotesk', sans-serif;
font-size: 38px;
font-weight: 600;
line-height: 56px;
text-align: left;
margin-bottom: 4%;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.slider-container {
    text-align: center;
    padding: 150px;
}

.slider-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 65px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: -30%;
    margin-bottom: 5%;
    
}

.slider {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 30px; /* Spacing between cards */
    scroll-behavior: smooth;
}

.slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

.card {
    flex: 0 0 300px;
    text-align: left;
    padding: 20px;
    scroll-snap-align: start;
    transition: transform 0.3s ease-in-out;
    min-width:370px;
    height: 276px;
    border-radius: 24px;
    border: 1px solid #000;
    background: rgba(255, 255, 255, 0.10);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card:hover {
    /* transform: scale(1.05); */
    transform: none;

}

.card i {
    font-size: 30px;
    color: #d75a63;
    margin-bottom: 10px;
}

.card .fas {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-top: 5%;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 27.24px;
    text-align: left;
    margin-top: 5%;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.card img[src*="bl"] {
    display: none;
}

.card img[src*="bl"] {
    display: inline;
}

/* Card overlay for better text readability */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.7) 0%, rgba(18, 18, 18, 0.9) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.card > * {
    position: relative;
    z-index: 2;
}

/* Specific card backgrounds */
.card:nth-child(1) {
    background-image: url('../images/cloudBased.webp');
}

.card:nth-child(2) {
    background-image: url('../images/dataSec.webp');
}

.card:nth-child(3) {
    background-image: url('../images/FlexPrac.webp');
}

.card:nth-child(4) {
    background-image: url('../images/healthcare.webp');
}

.card:nth-child(5) {
    background-image: url('../images/experience.webp');
}

.card:nth-child(6) {
    background-image: url('../images/global.webp');
}

.card:nth-child(7) {
    background-image: url('../images/whyKaas.webp');
}

/* Hover effect - Fixed */
.card:hover {
    color:rgb(255, 255, 255);
    transform: translateY(-4px);
}

/* Fix: Ensure cards return to correct position */
.card {
    transform: translateY(0);
    transition: all 0.3s ease;
    animation-fill-mode: none;
}

/* Fix: Specific reset for 4th card to ensure it behaves correctly */
.card:nth-child(4) {
    transform: translateY(0) !important;
    animation-fill-mode: none;
    transition: all 0.3s ease;
}

.card:hover::before {
    opacity: 0.85;
}

.card:hover p{
    color:#fff;
}

.card:hover img[src*="bl"] {
    display: none; /* Hide "bl" image on hover */
}

.card:hover img[src*="wh"] {
    display: inline; /* Show "wh" image on hover */
}



.cta-section {
    display: flex;
        align-items: center;
        justify-content: flex-start;
        border: 1px solid rgba(0, 0, 0, 1);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.10);
        padding: 65px;
        max-width: 90%;
        width: 1500px;
        position: relative;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 70px;
        margin-top: 12%;
        margin-bottom: -10%;
}

/* Text Section */
.cta-text {
    max-width: 95%;
    text-align: left;
}

.cta-text p {
    color: #fff;
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    text-align: left;
}

/* Button */
.cta-btn {
    display: inline-flex; /* Makes the container an inline-flex */
    align-items: center; /* Vertically center the text and image */
    justify-content: center; /* Horizontally center the content */
    text-decoration: none; /* Remove underline if any */
    padding: 0.6rem 1.5rem;
    background-color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    color: #333;
    border: 2px solid #333;
    border-radius: 30px;
    font-size: 20px;
    margin-top: 5%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.introtitle{
font-family: 'Space Grotesk', sans-serif;
font-size: 50px;
font-weight: 600;
line-height: 65px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.intro-banner{
    width: 1272px;
height: 588px;


}


.cta-btn img {
    margin-left: 8px; /* Adjust the space between the text and the image */
    width: 24px; /* Adjust the size of the image as needed */
    height: auto;
}

  
  .introtitle {
    margin-bottom: 6%;
  }
  
  .intro-section {
    text-align: center; /* Ensures the text and content are centered */
    margin-top: -5%;
  }
  
  .intro-banner {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers vertically (optional, for equal spacing) */
    width: 100%; /* Ensures the banner takes full width */
    margin: 0 auto; /* Centers the container if it has a specific width */
  }
  
  .intro-image {
    max-width: 81%; /* Makes the image responsive */
    height: auto; /* Maintains aspect ratio */
    border-radius: 8px; /* Adds rounded corners */
    cursor: pointer;
    border: 1px solid;
    border-radius: 33px;
  }

  .intro-image-mobile{
    display: none;
  }
  
  .mobile-card{
    display: none;
  }
  

  @media (max-width: 500px) {
    .empower {
        color: #FFF;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 28px !important;
        font-style: normal;
        font-weight: 600;
        padding: 10px 10px 0px 10px !important;
    }
    
}

/* Media Query for Mobile Screens (500px and below) */
@media only screen and (max-width: 500px) {

    .empower {
        color: #FFF;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 55px;
        font-style: normal;
        font-weight: 600;
        padding: 0px 30px 0px 40px;
    }

    /* General Body Adjustments */
    body {
        font-size: 14px; /* Reduce font size for better readability */
        padding: 10px;   /* Add padding to prevent content from touching screen edges */
    }

    /* Hero Section */
    .hero {
        text-align: center; /* Center-align text */
        /* padding: 15px; */
    }

    .empower {
        font-size: 24px; /* Reduce heading font size */
        margin-bottom: 10px;
    }

    .highlight {
        font-size: 30px; /* Highlight slightly larger */
    }

    .hero-text {
        text-align: center; /* Center-align text */
    }

    .hero-text .title {
        font-size: 26px; /* Reduce heading size */
        line-height: 1.4; /* Adjust line spacing */
        text-align: center;
    }

    .hero-text p {
        font-size: 16px; /* Reduce paragraph text size */
        line-height: 1.6; /* Adjust line spacing */
        text-align: center;
    }

    .hero-image {
        width: 80%; /* Make image responsive */
        height: auto;
        display: none;
    }

    /* Slider Section */
    .slider-container {
        padding: 1px; /* Add padding to section */
    }

    .slider-container h2 {
        font-size: 26px; /* Reduce heading size */
        text-align: center; /* Center-align heading */
        margin-bottom: 15px;
    }

    .slider {
        display: flex;
        flex-direction: column; /* Stack cards vertically */
        gap: 20px; /* Add spacing between cards */
        padding: 10px;
        overflow-x:hidden;
    }

    .card {
        flex: 0 0 300px;
        text-align: left;
        padding: 20px;
        scroll-snap-align: start;
        transition: transform 0.3s ease-in-out;
        min-width:100%;
        height: 276px;
        border-radius: 24px;
        border: 1px solid #000;
        background: rgba(255, 255, 255, 0.10);
        position: relative;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .card img {
        width: 50px; /* Reduce icon size */
        height: 50px;
        margin-bottom: 10px;
    }

    .card h3 {
        font-size: 20px; /* Adjust card heading size */
        margin: 10px 0;
        line-height: 1;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .card p {
        font-size: 16px; /* Reduce card text size */
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Intro Section */
    .intro-section {
        padding: 15px;
    }

    .introtitle {
        font-size: 26px; /* Reduce heading size */
        text-align: center;
        margin-bottom: -25%;
        margin-top: 10%;
        line-height: 40px;
    }

    .intro-banner {
        text-align: center;
    }
    .intro-banner {
        height: 588px !important;
    }

    .cta-section {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border: 1px solid rgba(0, 0, 0, 1);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.10);
        padding: 24px !important;
        max-width: 90%;
        width: 1207px;
        position: relative;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 70px;
        margin-top: 25%;
        margin-bottom: -35% !important;
    }
    .slider-container h2 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 25px !important;
        font-weight: 600;
        line-height: 30px !important;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        margin-top: 10% !important;
        margin-bottom: 1%;
    }
    .hero-card{
        display: none !important;
    }

    .mobile-card{
        display: block;
        padding: 20px;
    }

    .mobile-title{
        font-family: 'Space Grotesk', sans-serif;
        font-size: 26px;
        font-weight: 600;
        line-height: 39px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        margin-top: 7%;
        
    }

    .mobile-description{
        font-family: 'Space Grotesk', sans-serif;
font-size: 16px;
font-weight: 500;
line-height: 24px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;
margin-top:7%;

    }

    .intro-image {
        width: 100%; /* Make image responsive */
        height: auto;
    }

    /* CTA Section */
    .cta-section {
        text-align: center;
        padding: 25px; /* Add padding for better spacing */
    }

    .cta-text h1 {
        font-size: 26px; /* Reduce heading size */
        margin-bottom: 10px;
        text-align: left;
    }

    .cta-text p {
        font-size: 16px; /* Adjust text size */
        margin-bottom: 15px;
        text-align: center;
    }

    .cta-btn {
        width: 100%; /* Full-width button for better visibility */
        font-size: 16px; /* Adjust button font size */
        padding: 10px;
    }

    

    /* Footer and Header */
    #header, #footer {
        padding: 10px;
    }

    /* Links and Buttons */
    a.hero-btn, .cta-btn {
        width: 100%; /* Full-width for smaller screens */
        font-size: 14px;
        text-align: center;
        margin-top: 7%;
    }

    .hero{
        text-align: left;
        /* padding: 1rem; */
        border-radius: 15px;
        background: url(../heroBG.webp) no-repeat center / cover;
        color: #fff;
        width: 95%;
        /* height: 8vh; */
        margin: 0 auto;
        margin-top: 5%;
        position: relative;
    }

    .slider-container h2{
        margin-top: 5%;
    }

    .card{
        text-align: left;
    }

    .card:hover {
        transform: scale(1) !important; /* Force reset to scale(1) instead of none */
    }

    /* Mobile styles for product grid */
    .container {
        padding: 1rem;
    }

    .container .serv-title {
        font-size: 2rem;
    }

    .container .services-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .container .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .container .grid .card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .container .grid .card h3 {
        font-size: 1.25rem;
    }

    .intro-image-mobile {
        display: block;
        max-width: 95%; /* Makes the image responsive */
        height: auto; /* Maintains aspect ratio */
        border-radius: 8px; /* Adds rounded corners */
        border: 1px solid;
      }
    
      .intro-image{
        display: none;
      }

      .cta-section{
        margin-bottom: -30%;
    }
    .cta-btn1 {
        display: none !important; /* Use .btn .btn-primary instead */
    }
}

@media (max-width: 400px) {
    .hero{
        text-align: left;
        border-radius: 15px;
        background: url(../images/heroBG.webp) no-repeat center / cover;
        color: #fff;
        width: 95%;
        margin: 0 auto;
        margin-top: 5%;
        position: relative;
    }

    .slider-container h2 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 15px;
    }

    .cta-section{
        margin-bottom: -40%;
    }

    .introtitle{
        line-height: 35px;
    }
 
}


*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #121212;
    color: #fff;
 }
 
 .social-icons a {
     filter: brightness(0) invert(1);
 }
 
 .social-icons img {
     fill: #1E1E1E;
 }
 
 .default-page{
     background-color: #121212;
 }

.empower{
    color: #FFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    padding: 25px 50px 25px 65px;
}

@media(max-width: 1024px){
    .hero-card {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        padding: 50px;
        position: relative;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 50px;
        margin-top: 45%;
    }
    
    .title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 30px;
        font-weight: 600;
        line-height: 30px !important;
        text-align: left;
        margin-bottom: 4%;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }
    
    .hero-text p {
        color: #fff;
        font-size: 16px;
        margin-bottom: 5%;
        font-weight: 500;
        font-family: 'Space Grotesk', sans-serif;
        text-align: left;
    }
    
    .hero-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        padding: 0.6rem 1.5rem;
        background-color: #fff;
        font-family: 'Space Grotesk', sans-serif;
        color: #333;
        border: 1px solid #333;
        border-radius: 30px;
        font-size: 16px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3sease, color 0.3sease;
    }
    .slider-container {
        text-align: center;
        padding: 25px;
    }
    .slider-container h2 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 38px;
        font-weight: 600;
        line-height: 65px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        margin-top: -30%;
        margin-bottom: 1%;
    }

    .cta-section {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border: 1px solid rgba(0, 0, 0, 1);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.10);
        padding: 50px;
        max-width: 90%;
        width: 650px;
        position: relative;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 70px;
        margin-top: 25%;
        margin-bottom: -20%;
    }
    .intro-banner {
        height: 350px;
    }
    .hero-image {
        width: 50%;
        padding: 70px;
        height: 400px;
        max-width: 280px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.10);
    }

    .cta-text p {
        color: #fff;
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 1rem;
        font-weight: 500;
        font-family: 'Space Grotesk', sans-serif;
        text-align: left;
    }
}

/* CTA Section for product page */
.cta-section1 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    text-align: left;
}

.cta-text1 {
    max-width: 800px;
    margin: 0;
    text-align: left;
}

.cta-text1 .title1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.cta-text1 p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    text-align: left;
}

.cta-btn1 {
    display: none !important; /* Use .btn .btn-primary instead */
}

/* ========== BUTTON COMPONENT SYSTEM ========== */

/* Base Button Component */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    min-height: 44px !important;
    box-sizing: border-box !important;
    
    padding: 15px !important;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem) !important;
    gap: clamp(0.625rem, 1.5vw, 1rem) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

/* Button Icon Styling */
.btn img {
    width: clamp(1.25rem, 2.5vw, 1.75rem) !important;
    height: auto !important;
    transition: transform 0.3s ease !important;
    margin: 0 !important;
    vertical-align: middle !important;
    transform: rotate(315deg) !important;
}

/* Primary Button (Default) */
.btn-primary {
    background-color: #fff !important;
    color: #333 !important;
    border: 2px solid transparent !important;
}

.btn-primary:hover {
    background-color: #f8f8f8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.btn-primary:hover img {
    transform: rotate(315deg) translateX(4px) !important;
}

/* Button in CTA Section - Additional Specificity */
.cta-section .btn,
.cta-text .btn {
    display: inline-flex !important;
    text-align: center !important;
    margin: 0 !important;
    vertical-align: top !important;
    width: auto !important;
    max-width: none !important;
    flex-shrink: 0 !important;
}