body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === NAVBAR === */
.navbar-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 0;
    
}

.navbar-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
}

.navbar-brand-custom img {
}


.navbar-nav-wrapper {
    background-color: rgba(30, 45, 60, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem;
}

.navbar-nav-custom {
    display: flex;
    align-items: center;
}

.navbar-nav-custom a,
.navbar-nav-custom button {
    color: #fff;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
}

.navbar-nav-custom a:hover,
.navbar-nav-custom button:hover {
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background-color: white;
    color: #1a1a1a;
}

.dropdown-icon {
    margin-left: 0.25rem;
}

.btn-contact {
    background-color: #2CA9CF;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-contact:hover {
    background-color: #42b34f;
}
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 1000;
}

.dropdown-menu a {

    text-decoration: none;
    color: black;
    white-space: nowrap;
}

.dropdown-menu a:hover {

    text-decoration: none;
    color: #42b34f;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* === HERO SECTION === */
.hero-section {
    min-height: 590px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    animation: hero-zoom 8s ease-in-out infinite alternate;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
}

@keyframes hero-zoom {
    0% {
        background-size: 100%;
        background-position: center;
    }

    100% {
        background-size: 105%;
        background-position: center top;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        animation: none;
        /* Disable animation on smaller screens */
    }
}
.check-circle {
    background-color: #42b34f;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(30, 45, 60, 0.7);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
}

.brighter-text {
    color: transparent;
    -webkit-text-stroke: 2px #2A9CFC;
    text-stroke: 2px #2A9CFC;
    background-image: linear-gradient(to bottom, transparent, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-explore {
    background-color: #42b34f;
    color: white;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-explore:hover {
    background-color: #2A9CFC;
    color: white;
}

.play-btn {
    position: absolute;
    right: 10%;
    bottom: 20%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn i {
    font-size: 2rem;
    color: white;
}

/* Mobile navbar styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #2A9CFC;
    cursor: pointer;
}

.mobile-menu-icon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    width: 24px;
    height: 24px;
}

.mobile-menu-icon span {
    display: block;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 1px;
}

/* Mobile navbar header - dark background */
.mobile-navbar-collapsed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(8, 11, 13, 0.673);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

.mobile-navbar-collapsed.active {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Full mobile nav menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(231, 231, 231, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 2rem;
    text-align: left;
    align-items: start;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #2A9CFC;
    font-size: 1.75rem;
    cursor: pointer;
}

.mobile-nav-items {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-nav-items a,
.mobile-nav-items button {
    color: black;
    font-size: 1.25rem;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0.5rem 0;
}

.mobile-nav-items a:hover,
.mobile-nav-items button:hover {
    color: #2A9CFC;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }
}
@media (max-width:1024px) {
    .navbar-wrapper {
        display: none;
    }

    .mobile-navbar-collapsed {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
    .navbar-brand-custom img {
        width: auto;
        height: 150px;
    }
    
    .mobile-menu-icon{
        height: 50px;
        width: 50px;
        font-weight: 700;
    }
}

@media (max-width: 992px) {
    .mobile-menu-icon {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 3px;
        width: 24px;
        height: 24px;
    }
    
    .mobile-menu-icon span {
        display: block;
        width: 6px;
        height: 6px;
        background-color: white;
        border-radius: 1px;
    }
    .navbar-wrapper {
        display: none;
    }

    .mobile-navbar-collapsed {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .play-btn {
        right: 5%;
        bottom: 15%;
    }
    .navbar-brand-custom img {
        width: auto;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.7rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }
    .navbar-brand-custom img {
        width: auto;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .navbar-brand-custom img {
        width: auto;
        height: 50px;
    }

    .navbar-brand-custom span {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .btn-explore {
        padding: 0.6rem 1.5rem;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        right: 5%;
        bottom: 10%;
    }

    .play-btn i {
        font-size: 1.5rem;
    }
}

.rounded-xl {
    border-radius: 16px;
}

.bg-green-custom {
    background-color: #42b34f;
    /* Custom green */
    color: white;
}

.btn-green {
    background-color: #42b34f;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    text-decoration: none;
}

.btn-green:hover {
    background-color: #2CA9CF;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rounded-img {
    border-radius: 20px;
    object-fit: cover;
}

.grid-img {
    height: 100%;
}

.green-box {
    background-color: #42b34f;
    color: white;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.arrow-button {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

.position-relative {
    position: relative;
}

.img-container {
    padding-left: 20px;
}


.card-custom {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 400px;

    object-fit: cover;
}

.learn-btn {
    background-color: #42b34f;
    color: white;
    border-radius: 25px;
    padding: 6px 16px;
    font-size: 0.9rem;
    border: none;
    transition: background-color 0.3s;
}

.learn-btn:hover {
    background-color: #2CA9CF;
}

h2.title {
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.subtext {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.card-title {
    font-weight: 700;
    text-align: left;
}

.feature-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-img {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-right: auto;
}

.stat-badge {
    position: absolute;
    bottom: -10px;
    right: -30px;
    background-color: #28c76f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    border: 5px solid white;
}

.custom-btn {
    background-color: #42b34f ;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    border: none;
    transition: background-color 0.3s;
}

.custom-btn:hover {
    background-color: #2CA9CF;
}

.feature-section {
    background-color: #42b34f;
    color: white;
    padding: 80px 20px;
}


.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.49);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-number {
    font-weight: 600;
    border-radius: 8px;
    margin-right: 20px;
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.arrow-btn {
    background-color: #2CA9CF;
    border: none;
    border-radius: 50%;
    padding: 10px;
    color: white;
    transition: background-color 0.3s ease;
}

.arrow-btn:hover {
    background-color: white;
    color: black;
}

.headingf {
    margin-left: 10px;
    line-height: 2rem;
}

.paraf {
    margin-right: 20px
}

@media (max-width: 768px) {
    .headingf {
        margin-left: 0 !important;
    }

    .paraf {
        margin-right: 0 !important;
        margin-left: 10px;

    }

    .stat-badge {
        display: none;
    }

    .fc {
        display: none;
    }
}

.main-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/abt3.jpeg') center/cover;
    background-attachment: fixed;
    min-height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-nav {
    width: 100%;
    padding: 15px 30px;
}

.top-nav-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-top: 25vh;
}

.main-title {
    color: white;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    max-width: 1000px;
}

.cards-container {
    position: absolute;
    bottom: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

.solution-card {
    background-color: #42b34f;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.card-title {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.learn-more-btn {
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.learn-more-btn:hover {
    background-color: white;
    color: black;
}

.bss {
    margin-top: 20vh;
    align-items: center;
    text-align: center;
}

@media (max-width: 1200px) {
    .main-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/abt3.jpeg') center/cover;
        background-attachment: fixed;
        min-height: 50vh !important;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-title {
        margin-bottom: 10%;
    }

    .cards-container {
        flex-wrap: wrap;
        top: 30vh;
        align-items: center;
        left: 50%;
        position: absolute;
    }

    .top-nav-text {
        color: white;
        font-weight: 500;
        margin-top: 5vh;
    }

    .bss {
        margin-top: 10%;
        align-items: center;
        text-align: center;
    }

}

@media (max-width: 768px) {
    .main-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/abt3.jpeg') center/cover;
        background-attachment: fixed;
        min-height: 50vh !important;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-title {
        margin-bottom: 10%;
    }

    .cards-container {
        flex-wrap: wrap;
        top: 30vh;
        align-items: center;
        left: 50%;
        position: absolute;
    }

    .top-nav-text {
        color: white;
        font-weight: 500;
        margin-top: 5vh;
    }

    .bss {
        margin-top: 10%;
        align-items: center;
        text-align: center;
    }
}

.sticky-container {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cards-wrapper {
    width: 320px;
    height: 280px;
    position: relative;
}

.card_2 {
    position: absolute;
    width: 100%;
    background-color: #4CAF50;
    border-radius: 12px;
    padding: 16px;
    box-sizing: border-box;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease;
    top: 0;
}

.card_2 .icon-container {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.card_2 h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
}

.card_2 p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.cta {
    background-color: #2196F3;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-top: 16px;
}

/* Testimonials Section Container */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    min-height: 200px;
}

.testimonial-card .stars {
    color: #FFA534;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    color: #23403A;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.testimonial-card .author {
    font-weight: bold;
    color: #0F2B22;
}

.testimonial-card .role {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-card::after {
    content: "❝❞";
    font-size: 3rem;
    color: #eee;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.owl-nav {
    text-align: center;
    margin-top: 20px;
}

.owl-nav button {
    display: none !important;
}

.owl-dot {
    display: none !important;
}

.owl-prev {
    display: none !important;
}

.owl-next {
    display: none !important;
}

.mbldp,
.mbldp-sub {
  display: none;
  flex-direction: column;
  background-color: white;
  padding: 0.5rem;
  border-radius: 8px;
  margin-top: 0.25rem;
}

.mbldp a,
.mbldp-sub a {
  padding: 0.5rem 1rem;
  color: black;
  text-decoration: none;
}

.dropdown-submenu {
  margin-top: 0.5rem;
}


.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: auto;
}
 
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #FFC42E;
}

.contact-info {
    display: flex;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
    color: #42b34f;
}

.contact-text h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-text p {
}

.middle-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.295);
    border-top: 1px solid rgba(255, 255, 255, 0.295);
}

.tagline {
    width: 50%;
}

.tagline h2 {

    font-weight: 700;
    line-height: 1.2;
}

.arrow-button {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #42b34f;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    color:#42b34f ;
    text-decoration: none
}

.social-icon:hover {
    background-color: white;
    color: #1a1a1a;
}
.sci:hover{
    color: white;
}
.sci{
    color: #42b34f;
}
.copyright-section {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    color: #aaa;
}

.copyright {
    display: flex;
    align-items: center;
}

.policy-links {
    display: flex;
    gap: 20px;
}

.policy-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-links a:hover {
    color: #2196F3;
}

/* Keyframes */
@keyframes topToBottom {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes bottomToTop {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes leftToRight {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes rightToLeft {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  /* Direction + Trigger on .visible */
  .rtl {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .rtl.visible {
    animation: rightToLeft 1s ease-out forwards;
    opacity: 1;
  }
  
  .ltr {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .ltr.visible {
    animation: leftToRight 1s ease-out forwards;
    opacity: 1;
  }
  
  .ttb {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .ttb.visible {
    animation: topToBottom 1s ease-out forwards;
    opacity: 1;
  }
  
  .btt {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .btt.visible {
    animation: bottomToTop 1s ease-out forwards;
    opacity: 1;
  }
  
  
  .card-stack {
    background-color: #00b050;
    color: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: -40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card-stack:hover {
    transform: translateY(-5px);
    z-index: 3;
  }

  .icon-box {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }

  .icon-box i {
    font-size: 1.5rem;
    color: #00b050;
  }

  .learn-btn_2 {
    background-color: #00aaff;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    color: white;
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .learn-btn_2:hover {
    background-color: white;
    color: #1a1a1a;
  }

  .etra_space {
    height: 350px; /* Default for large screens */
}

/* Medium screens: max-width 1200px */
@media (max-width: 1200px) {
    .etra_space {
        height: 550px;
    }
}

/* Small screens: max-width 786px */
@media (max-width: 991.98px) {
    .etra_space {
        height: 650px;
    }
}

@media (max-width: 767.98px) {
    .etra_space {
        height: 1350px;
    }
    
    .tagline {
    width: 100%;
}

.footer-arrow{
    display:none;
}
}

.hero {
    background: url("./img/baner\ trad.jpg") center center/cover no-repeat;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    transition: background-size 0.6s ease-in-out,
        filter 0.6s ease-in-out;
    overflow: hidden;
}

.hero:hover {
    filter: brightness(1.1);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* overlay */
    z-index: 1;
    transition: background 0.4s ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.3s;
    margin-top: 70px;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    background: transparent;
    padding: 0;
    justify-content: center;
}
body {
    font-family: Arial, sans-serif;
}

.contact-card {
    background-color: #42b34f;
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    height: 100%;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-subheading {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.form-container {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
}

.info-card {
    background-color: #42b34f;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

.circle-icon {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
    padding: 20px !important;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}


.info-content {
    flex-grow: 1;
}

.info-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0;
}

.info-subtitle {
    font-size: 0.9rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.btn-submit {
    background-color: #42b34f;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #2CA9CF;
    color: white;
}

.form-title {
    color: #42b34f;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .contact-heading {
        font-size: 2rem;
    }
    
    .contact-card, .info-card {
        margin-bottom: 1rem;
    }
}

.benfit_icons{
    color: #42b34f;
}

.key_features_icons{
    color: #42b34f;
}