:root {
    --primary-color: #17D492;
    --secondary-color: #9CE4F6;
    --text-color: #EBEBEB;
    --dark-green-color: #142e37;
    --background-color: #060627;
    --transgreen-color: rgba(23, 212, 146, 0.20);
  }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #15c082;
}

body{
    background-color: var(--background-color);
    scroll-behavior: smooth;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
/* Navbar */
.navbar-brand{
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

}
.navbar{
    background-color: var(--background-color);
    padding: 20px 30px;
    border-radius: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Ensure the navbar is above other content */
    transition: all 0.3s ease;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}
.navbar-collapse {
    justify-content:flex-end;     
    flex-grow: 1; /* Allows the navbar to grow and take available space */
}
.navbar-nav {
    margin-left: auto; /* Aligns the navbar items to the right */
    display: flex;
    gap: 20px; /* Space between navbar items */
}
.navbar-nav .nav-item {
    margin-left: 20px; /* Space between navbar items */
}
.nav-link {
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-top: 14px;
    white-space: nowrap;
}
.nav-link:hover {
    color: var(--secondary-color); /* Change color on hover to secondary color */
    text-decoration: none; /* Remove underline on hover */
}
.nav-link.active {
    color: var(--primary-color); /* Change color for active state to primary color */
}
.navbar-toggler {
    border: none; /* Remove default border */
    background-color: transparent; /* Make the background transparent */
    padding: 0; /* Remove padding */
    margin-left: auto; /* Align to the right */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(23, 212, 146, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }
.navbar-toggler {
    border-color: var(--primary-color) !important; /* Red border */
}

/* Dropdown Menu Styling and Animation */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--transgreen-color);
    color: var(--primary-color);
    border-radius: 20px;
}

.dropdown-toggle:hover::after,
.dropdown-toggle:focus::after,
.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.navbar-nav > li > .dropdown-menu {
    border-radius: 0px 30px 30px 30px;
    background-color: var(--dark-green-color);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar-nav > li > .dropdown-menu.show {
    opacity: 1;
    margin-top: 1.5rem;
    transform: translateY(0);
}

.navbar-nav > li > .dropdown-menu a{   color: var(--primary-color);  }

/* Glowing Button Effect */
.btn-cta{
    width: 217px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 15px;
    background: #17D492;
    color: #090846;
    text-align: center;
    font-family: "Nunito Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 15px 5px 15px 5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(23, 212, 146, 0.4);
    will-change: transform, box-shadow;
}

@keyframes button-glow {
    0% {
        box-shadow: 0 0 5px rgba(23, 212, 146, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(23, 212, 146, 0.7);
    }
    100% {
        box-shadow: 0 0 5px rgba(23, 212, 146, 0.5);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-color);
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(23, 212, 146, 0.4);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(23, 212, 146, 0.6);
}

/* Hero Section */

.hero-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0; /* Adjusted padding for better spacing */
    background-color: var(--background-color);
}
.hero-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--primary-color);
    line-height: 121.949%;
}
.hero-subtitle{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color);
    max-width: min(100%, 501px);
    padding-top: 20px;
    padding-bottom: 20px;
}

.hero-img{
    display: flex;
    width: 100%;
    height: auto;
    border-radius: 30px;
    flex: 1;

}

.section-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--primary-color);
    text-align: center;
    padding-bottom: 20px; /* Space below the title */
    margin: 0 auto; /* Center the title */
    text-transform: capitalize;
}
.section-subtitle{
    font-family: 'Nunito Sans', sans-serif;
    font-size: clamp(13px, 2vw, 18px);
    font-style: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: normal;
    color: var(--secondary-color);
    text-align: center;
    padding-bottom: 20px;
    margin: 0 auto;
}
.section-content{
    margin-top: 50px;
    margin-bottom:59px;
    display: flex;
}
.sec-space{
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 0;
}

/* About Section */
.about-paragraph{
    color: var(--text-color);
    font-family: "Nunito Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: justify;
   
}

.container-box {
    border-radius: 30px 30px 0px 30px;
    background: rgba(23, 212, 146, 0.20);
    padding: 40px 40px 40px 40px;
    width: auto;

}

.card-img-top{
    width: 99px;
    height: 99px;
    flex-shrink: 0;
    border-radius: 99px;
    border: 2px solid #17D492;
    background: url(../imgs/founder.png) lightgray 50% / cover no-repeat;
}

.profile-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px; /* Space between image and text */

}

.profile-title{
    color: #17D492;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.3px;
}
.profile-designation{
    color: var(--secondary-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.profile-paragraph{
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.18px;
}
.about-point{
    color: #FFF;
    font-family: "Nunito Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    padding-left: 1.75em;
    padding-top: 1.5em;
}
.about-point::before {
  content: '';
  position: absolute;
  left: 0.25em;
  top: 1.5em;
  width: 1em;
  height: 1em;
  background-image: url("../imgs/vecs/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  
}

/* Services Section */

.service-card{
    border: 1px solid #000;
    background: var(--transgreen-color);
    border-radius: 30px 30px 0px 30px;
    padding: 40px 40px 40px 40px;
}

.learn-icon{
  width: 77px;
  height: 77px;
  background-image: url("../imgs/vecs/learn.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.people-icon{
  width: 77px;
  height: 77px;
  background-image: url("../imgs/vecs/people.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.digital-icon{
  width: 77px;
  height: 77px;
  background-image: url("../imgs/vecs/digital.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.service-title{
    color: var(--primary-color);
font-family: 'Nunito Sans', sans-serif;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.25px;
text-transform: capitalize;
margin-top: 1em;
}
.service-paragraph{
    color: var(--text-color);
font-family: 'Nunito Sans', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.5px;
margin-top: 1em;
}

.article-paragraph{
    color: var(--text-color);
font-family: 'Nunito Sans', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.18px;
margin-top: 1em;
}

.icon-link{
    color: var(--primary-color);
    font-family: 'Nunito Sans', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.18px;
text-decoration: none;
}

/* Why Choose Us Section */
.trans-card{
padding: 30px 30px 30px 30px;
border-radius: 30px;
background: rgba(161, 250, 219, 0.10);
box-shadow: 0px 4px 4px 0px rgba(23, 212, 146, 0.50);
gap: 20px;
margin:20px 0px 20px 0px;
}

.trans-heading{
    color: var(--secondary-color);
font-family: 'Nunito Sans', sans-serif;
font-size: 25px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.25px;
text-transform: capitalize;
}

.trans-paragraph{
    color: var(--text-color);
font-family: 'Nunito Sans', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.18px;
text-transform: capitalize;
margin-top: 1em;
}

.choose-img{
    width: 81%;
    height: auto;
    border-radius: 30px;
    margin-top: 30px;
}

/* Contact Us Section */

.contact-box{
    border-radius: 30px;
background: rgba(23, 212, 146, 0.20);
backdrop-filter: blur(2px);
padding: 40px 40px 40px 40px;
}

.contact-form{
    border-radius: 15px;
border: 1px solid #E8E8E8;
background: #FFF;
font-family: 'Nunito Sans', sans-serif;
}

.contact-title{
    color: var(--text-color);
font-family: 'Nunito Sans', sans-serif;
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

.contact-description{
    color: var(--secondary-color);
font-family: 'Nunito Sans', sans-serif;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

/* Footer Section */
.footer-section {
    background-color: rgba(23, 212, 146, 0.10);
    padding: 60px 0 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: 50px;
}

.footer-heading {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link img {
    width: 40px; /* Reduced size from default */
    height: 40px; /* Reduced size from default */
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link:hover img {
    filter: brightness(1.2);
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    background: rgba(23, 212, 146, 0.1);
    padding: 12px 15px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-color);
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(156, 228, 246, 0.3);
}

.newsletter-input::placeholder {
    color: rgba(217, 217, 217, 0.7);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-image: url("../imgs/vecs/arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-link:hover:before {
    opacity: 1;
    transform: translateY(-50%) translateX(-3px);
}

.copyright-text {
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
}

.copyright-border{
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(23, 212, 146, 0.20);
}

/* Enhanced Animation Classes with Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.8s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
}

.slide-up.active {
    animation: slideUp 0.8s ease forwards;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
}

.zoom-in.active {
    animation: zoomIn 0.8s ease forwards;
}

/* Enhanced hover effects */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

/* Glowing Headings — activates on hover only to avoid continuous repaints */
.section-title {
    position: relative;
}

.section-title:hover {
    animation: text-glow 1.5s ease-in-out;
}

@keyframes text-glow {
    0%   { text-shadow: 0 0 5px rgba(23, 212, 146, 0.2); }
    50%  { text-shadow: 0 0 10px rgba(23, 212, 146, 0.4), 0 0 20px rgba(23, 212, 146, 0.2); }
    100% { text-shadow: 0 0 5px rgba(23, 212, 146, 0.2); }
}

/* Icon glow — on hover only */
.learn-icon, .people-icon, .digital-icon {
    transition: filter 0.3s ease;
}

.learn-icon:hover, .people-icon:hover, .digital-icon:hover,
.service-card:hover .learn-icon,
.service-card:hover .people-icon,
.service-card:hover .digital-icon {
    filter: drop-shadow(0 0 8px rgba(23, 212, 146, 0.6));
}

@keyframes icon-glow {
    0%   { filter: drop-shadow(0 0 3px rgba(23, 212, 146, 0.3)); }
    50%  { filter: drop-shadow(0 0 8px rgba(23, 212, 146, 0.5)); }
    100% { filter: drop-shadow(0 0 3px rgba(23, 212, 146, 0.3)); }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    background-color: var(--secondary-color);
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--primary-color);
}

/* Page Header Styles */
.page-header {
    position: relative;
    background-color: var(--background-color);
    overflow: hidden;
    z-index: 1;
    margin-top: 100px;
    margin-bottom: 50px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(6, 6, 39, 0.85), rgba(6, 6, 39, 0.85)), url('../imgs/hero-img.png');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.6;
    filter: blur(2px);
}

/* Parallax effect for background sections */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Button Hover Animation */
.btn-cta {
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(23, 212, 146, 0.5);
    animation: button-glow 1.5s ease-in-out;
}

.btn-cta:active {
    transform: translateY(-1px) scale(0.99);
}

/* Card Hover Animation */
.service-card, .trans-card {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(23, 212, 146, 0.25);
    border-color: rgba(23, 212, 146, 0.4);
}

.trans-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(23, 212, 146, 0.3);
}

/* Thin gradient section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.25;
    margin: 0;
    border: none;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.page-item .page-link {
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-item .page-link:hover {
    color: var(--background-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-item.active .page-link {
    color: var(--background-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-item.disabled .page-link {
    color: rgba(217, 217, 217, 0.5);
    border-color: rgba(23, 212, 146, 0.3);
    background-color: transparent;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background-color);
}

.testimonial-card {
    border-radius: 30px;
    background: rgba(23, 212, 146, 0.10);
    padding: 50px;
    margin: 20px 40px;
    box-shadow: 0px 4px 15px 0px rgba(23, 212, 146, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px 0px rgba(23, 212, 146, 0.40);
}

.testimonial-text {
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -20px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.author-name {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-role {
    color: var(--secondary-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(23, 212, 146, 0.20);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(23, 212, 146, 0.40);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.testimonial-indicators {
    position: relative;
    margin-top: 20px;
    margin-bottom: 0;
    justify-content: center;
}

.testimonial-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(23, 212, 146, 0.30);
    border: none;
    margin: 0 5px;
}

.testimonial-indicators .active {
    background-color: var(--primary-color);
}

/* Responsive styles for testimonials */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 40px 30px;
        margin: 15px 30px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
        margin: 10px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .author-name {
        font-size: 20px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 25px 15px;
        margin: 10px;
    }

    .testimonial-text {
        font-size: 15px;
        padding: 0 10px;
    }

    .author-name {
        font-size: 18px;
    }

    .author-role {
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .container {
        flex-direction: column;
    }

    .hero-img {
        order: -1;
    }

    .copyright-text {
        text-align: center;
    }
}

/* Article Post Styles */
.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
}

.article-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.article-featured-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.article-thumbnail {
    width: 350px !important;
    height: 250px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    margin-bottom: 5px;
}

.image-caption {
    font-size: 14px;
    color: var(--text-color);
    font-style: italic;
}

.article-text {
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

.article-text h2 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-text h3 {
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-text p {
    margin-bottom: 20px;
}

.article-text ul, .article-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-text li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.article-text li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background-image: url("../imgs/vecs/check.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.article-quote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    background-color: rgba(23, 212, 146, 0.1);
    font-style: italic;
    font-size: 20px;
    color: var(--text-color);
}

.article-image {
    border-radius: 15px;
    overflow: hidden;
}

.article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(23, 212, 146, 0.2);
}

.tag-label, .share-label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-right: 10px;
}

.article-tag {
    display: inline-block;
    padding: 5px 15px;
    margin: 0 5px 5px 0;
    background-color: rgba(23, 212, 146, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.article-share {
    margin-top: 20px;
}

.share-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(23, 212, 146, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.share-link:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-3px);
}

.article-author-bio {
    background-color: rgba(23, 212, 146, 0.1);
    border-radius: 15px;
    margin-top: 40px;
}

.article-author-bio img {
    width: 100%;
    max-width: 100px;
    border: 3px solid var(--primary-color);
}

.article-author-bio h4 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.article-author-bio h5 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 10px;
}

.related-articles-section .section-title {
    margin-bottom: 40px;
}

.article-date {
    color: var(--secondary-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Subscribe Section Alignment */
.subscribe-section .newsletter-form {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 600px;
}

.subscribe-section .input-group {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.subscribe-section .newsletter-input {
    flex: 1;
    margin-right: 10px;
    margin-bottom: 0;
}

.subscribe-section .btn-cta {
    margin: 0;
    width: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 50px;
    }
    
    .hero-subtitle {
        width: 100%;
        font-size: 18px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .section-content {
        margin-top: 30px;
    }
    
    .sec-space {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .navbar {
        padding: 15px;
    }
    
    .navbar-brand {
        font-size: 28px;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .podcast-links a {
        display: block;
        margin-bottom: 10px;
        text-decoration: none;
        color: var(--primary-color)
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        text-align: center;
        margin-top: 20px;
    }
    
    .card-img-top {
        margin-bottom: 20px;
        margin-left: 35%;
    }

    .profile-info {
        padding-left: 0;
        text-align: center;
    }

    .about-paragraph {
        padding: 0 20px;
        
    }
    .container-box{
        margin-bottom: 20px;
    }
  
    .service-card {
        padding: 20px;
        margin: 10px;
    }
    .choose-img {
        display: none;
    }
    .trans-card {
        margin-left: 5%;
    }
    .carousel-control-next, .carousel-control-prev {
        display: none !important;
    }
    .section-title {
        font-size: 30px;
    }
    
    .profile-title {
        font-size: 24px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .trans-heading {
        font-size: 20px;
    }
    
    .contact-description {
        font-size: 30px;
    }
    
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .profile-info {
        padding-left: 20px;
    }
    
    .contact-title{
        text-align: center;
    }
    .contact-description{
        text-align: center;
    }
    .footer-social {
        justify-content: center;
        margin-bottom: 30px;
    }
    .footer-logo {
        margin-left: 30%;
    }
    .footer-text {
        text-align: center;
    }
    .footer-heading, .footer-link{
        display: none;
    }
    .nl-desc{
        display: none;
    }
    .newsletter-form {
        display:none;
    }
    .container-box {
        padding: 30px;
    }
    .sec-space{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .trans-card {
        padding: 20px;
    }
    
    .contact-box {
        padding: 30px;
    }
    
    .webinar-date, .webinar-time {
        display: block;
        margin-bottom: 5px;
        color: var(--secondary-color);
    }
    
    .d-flex.justify-content-between {
        flex-direction: column;
    }
    
    .podcast-icon-container {
        height: 80px;
    }
    
    .podcast-image-container {
        height: 200px;
        margin-bottom: 20px;
    }
    
    /* Improve subscribe section alignment on medium screens */
    .subscribe-section .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .subscribe-section .newsletter-input {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .subscribe-section .btn-cta {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-align: center;
        padding: 10px 20px 10px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .btn-cta {
        width: 90%;
        margin: 0 auto;
    }
    
    .sec-space {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    
    .navbar {
        padding: 10px;
    }
    
    .navbar-brand {
        font-size: 24px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-meta span {
        display: block;
    }
    
    .article-text h2 {
        font-size: 24px;
    }
    
    .article-text h3 {
        font-size: 20px;
    }
    
    .article-author-bio .row {
        flex-direction: column;
    }
    
    .article-author-bio .col-md-2 {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .article-author-bio img {
        max-width: 80px;
    }
    
    /* Improve podcast layout on small screens */
    .podcast-icon-container {
        height: 60px;
        margin-bottom: 10px;
    }
    
    .podcast-date {
        font-size: 14px;
        color: var(--secondary-color);
    }
    
    /* Ensure images are responsive */
    .hero-img, .choose-img, .article-featured-image img, .article-image img {
        max-width: 90%;
        height: auto;
        margin: 20px 20px 20px 20px;
    }
    
    /* Improve navigation for mobile */
    .navbar-toggler {
        padding: 5px;
    }
    
    /* Ensure subscriber sections are properly centered */
    .subscribe-section .col-md-6 {
        padding: 0 15px;
    }
    
    /* Improve footer on small screens */
    .footer-heading {
        font-size: 20px;
        margin-top: 20px;
    }
}

/* Fix for navbar toggle button */
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}


.footer-logo {
    width: auto;
    height: 70px;
    margin-bottom: 5px;
}

.text-subtitle{
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    text-align: center;
    padding-bottom: 20px; /* Space below the subtitle */
    margin: 0 auto; /* Center the subtitle */
}

.podcast-date {
    font-size: 14px;
    color: var(--secondary-color);
}

.podcast-guests {
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--secondary-color);
    font-weight: 200;
}

.podcast-links a {
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--primary-color)
}

.webinar-date, .webinar-time {
        display: block;
        margin-bottom: 5px;
        color: var(--secondary-color);
}

.webinar-presenter{
    color: var(--text-color);
    font-weight: 200;
}

/* Menu Button — extends .btn-cta */
.menu-button a {
    display: inline-block;
    width: 217px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 15px;
    background: #17D492;
    color: #090846;
    text-align: center;
    font-family: "Nunito Sans";
    font-size: 18px;
    font-weight: 700;
    padding: 15px 5px;
    text-decoration: none;
    box-shadow: 0 0 5px rgba(23, 212, 146, 0.4);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), background 0.25s ease, color 0.25s ease;
}

.menu-button a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(23, 212, 146, 0.5);
    color: var(--primary-color);
    background: var(--transgreen-color);
}

.menu-button a:active {
    transform: translateY(-1px) scale(0.99);
}

.menu-button .nav-link::after {
    display: none;
}

.wp-block-heading{
    color: var(--secondary-color)
}
.wp-block-list{
    padding-left: 40px;
    color: var(--text-color)
}

.wp-block-list li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}
.wp-block-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background-image: url("../imgs/vecs/check.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
.wp-block-image{
    margin: 20px auto;
    text-align: center;
    margin-bottom: 20px;
    max-width: 100%;
    margin-top: 20px;
    border-radius: 30px;
}
p {
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 20px;
    text-align: justify;
}

/* Article Sidebar Styles */
.article-sidebar {
    background-color: rgba(23, 212, 146, 0.10);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
}
.article-sidebar h3 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.article-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-sidebar li {
    margin-bottom: 10px;
}
.article-sidebar a {
    color: var(--text-color);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.article-sidebar a:hover {
    color: var(--primary-color);
}
.article-sidebar .sidebar-item {
    margin-bottom: 20px;
}
.article-sidebar .sidebar-item:last-child {
    margin-bottom: 0;
}  
.cat-item{
    color: var(--secondary-color);
    font-family: 'Nunito Sans', sans-serif;
}

.wp-block-social-links {
	color: var(--secondary-color);
}