@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Oswald:wght@200..700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-color: #1a1331;
    --text-lime-color: #2b6cb5;
    --secondary-color: #99bfe9; 
    --background-color-2: #F9F8F6;
    --light-grey: #f6f5f2; 
    --text-mute: #7e7e7e;
    --font-primary: "Work Sans", sans-serif;
    --section-bg-top: #f5f4f0;
    --section-bg-bottom: #fff;
    /* background-image: linear-gradient(to bottom, red, yellow); */
}

body{
    font-family: var(--font-primary) !important;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

body {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
body.loaded {
    opacity: 1;
  }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    /* height: 70px; */
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-logo img{
    width: 100px;
    margin: 10px 0;
}

.nav-logo span {
    color: var(--primary-color);
}

.nav-logo, 
.search-container {
    flex: 1; 
}

.nav-links {
    flex: 2;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #1C4B42;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 12px;
    border-radius: 40px;
}

.nav-links a:hover {
    background-color: var(--light-grey);
}

.search-container {
    display: flex;
    justify-content: flex-end; 
}

.search-input {
    width: 0;
    padding: 0;
    border: none;
    outline: none;
    transition: all 0.4s ease;
    background: #f1f1f1;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
}

.search-input.active {
    width: 200px;
    padding: 8px 15px;
    margin-right: 10px;
    opacity: 1;
    border: 1px solid #ddd;
}

.search-btn {
    background: var(--light-grey);
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.search-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Hero Section  */
.hero-title {
    font-size: 58px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.1;
    margin: 0;
}

.hero-title span {
    color: var(--text-lime-color);
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: #000;
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--text-lime-color) !important;
    color: #fff !important;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-left: 15px;
    /* color: var(--lime-green) !important; */
}

.btn-primary-custom:hover .icon-circle i{
    color: var(--secondary-color) !important;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: #7e7e7e;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.hero-img-wrapper {
    width: 100%;
    height: 60vh; 
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

/* Who section */
.who-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.1;
    margin: 0;
}

.who-title span {
    color: var(--text-lime-color);
}

.btn-primary-custom1 {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary-custom1:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
}

.tab-pane p{
    font-size: 16px;
    color: var(--text-mute);
    text-align: justify;
}

.nav-link {
    color: var(--primary-color) !important;
}

/* Service Section  */
.service-section {
    background-color: var(--primary-color);
    border-radius: 24px 24px 24px 24px;
    margin:10px;
}

.custom-pill {
  background-color: #f8f9f8; 
  color: var(--primary-color);            
  border: 1px solid #e0e0e0; 
  
  font-size: 0.7rem;
  font-weight: 500;
  padding: 12px 35px;       
  letter-spacing: 0.05rem;
  transition: all 0.3s ease;
}

.custom-pill:hover {
  border-color: var(--secondary-color); 
}

.service-title span {
    color: var(--secondary-color);
}

.service-pill{
  background:transparent;
  color: #fff;
  border: 1px solid #e0e0e0; 
  font-size: 0.7rem;
  font-weight: 500;
  padding: 12px 35px;       
  letter-spacing: 0.05rem;
  transition: all 0.3s ease;
}

.service-pill:hover {
  border-color: #fff; 
  color: #fff;
}

.btn-primary-custom2 {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    background-color: #fff;
    color: var(--primary-color);
}

.btn-primary-custom2:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}


/* Service Cards */
.service-card
{
	border-radius: 24px;
    background-color: var(--secondary-color);
    overflow: hidden;
	/* height: 100%; */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%; /* Ensure it takes full width of its column */
    min-height: 420px;
}

.service-card .card-title {
    min-height: 3.5rem; 
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 22px;
}

.service-card .card-body {
    padding-bottom: 4.5rem;
}

.masked-img {
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    mask-position: center;
}

.service-card .card-img-top.masked-img {
    width: 100%;
    height: 300px;
    width: 75%;
    height: 240px;
    object-fit: cover;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    -webkit-mask-position: top left;
    mask-repeat: no-repeat;
    mask-position: top center;
    mask-position: top left;
    border-radius: 0; 
}

.mask-1 {
    -webkit-mask-image: url("assets/images/mask-sevice-1.1.svg");
    mask-image: url("assets/images/mask-sevice-1.1.svg");
}

.mask-2 {
    -webkit-mask-image: url("assets/images/mask-sevice-2.1.svg");
    mask-image: url("assets/images/mask-sevice-2.1.svg");
}

.mask-3 {
    -webkit-mask-image: url("assets/images/mask-sevice-3.1.svg");
    mask-image: url("assets/images/mask-sevice-3.1.svg");
}

.mask-4 {
    -webkit-mask-image: url("assets/images/mask-sevice-4.1.svg");
    mask-image: url("assets/images/mask-sevice-4.1.svg");
}

.service-title {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.service-card img
{
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.service-card .card-img-top {
    width: 100%;
    height: 350px; 
    object-fit: cover;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

/* .service-card svg
{
	position:absolute;
	top:19rem;
  -webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
	filter:drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.2));
}
.service-card:hover svg
{
	filter:drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.4));
} */

.service-icon {
    position: absolute;
    bottom: 1.8rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.4rem;
    margin-top: 6px;
    padding: 10px;

    background: #fff;
    color: var(--primary-color);
    -webkit-text-stroke: 0.5px var(--primary-color);

    border-radius: 50%;
    transition: all 0.6s ease-in-out;
}

.service-card:hover i
{
	background: var(--primary-color);
    color: var(--secondary-color);
    
}

/* Our values  */
.custom-pill-1{
  background-color: transparent; 
  color: var(--primary-color);            
  border: 1px solid #000; 
  font-size: 0.7rem;
  font-weight: 500;
  padding: 12px 15px;       
  letter-spacing: 0.05rem;
  transition: all 0.3s ease;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 24px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    background-color: var(--secondary-color);
}

.icon-space {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-bottom: 30px;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 28px;
    transition: all 0.3s ease;
}

/* .value-card:hover .value-icon {
    background-color: #fff;
    color: var(--primary-color);
} */

.value-content {
    background-color: #f7f6f2; 
    border-radius: 18px;
    padding: 25px 20px;
    flex-grow: 1;
}

.value-title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.value-text {
    color: #4a5555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    padding-bottom: 30px;
}


/* element.style {
    position: absolute;
    width: 600px;
    margin-top: 0px;
    margin-bottom: 0px;
    inset-inline-start: 0px;
    top: 0px;
} */

/* Why us  */
.bg-why-us {
  background-image: url('assets/images/why-us.jpg');
  background-color: #d3ccc4;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.card-custom {
  background-color: #f4efeb; 
  border-radius: 24px !important;
  max-width: 600px;
  position: sticky;
  width: calc(100% - 60px);
  margin-top: 0px;
  margin-bottom: 0px;
  top: 15vh;
  bottom: 30px;
  inset-inline-start: 30px;
}

.bg-lime {
  background-color: var(--secondary-color) !important;
}

.text-dark-green {
  color: var(--primary-color) !important;
}

.dynamic-text {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color) !important;
  white-space: nowrap;
  overflow: hidden;
  border-right: .1em solid black;
  vertical-align: bottom;
  animation: blink-caret .5s step-end infinite alternate;
}

@media (max-width: 575.98px) {
  .who-title.dynamic-text {
    white-space: pre-wrap;
    font-size: 26px !important;
  }
}

@keyframes typing { 
    from { width: 0; } 
}

@keyframes blink-caret {
  50% { border-color: transparent; }
}

.icon-circle {
  width: 40px;
  height: 40px;
}

/* .btn-dark-green {
  background-color: var(--primary-color);
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.btn-dark-green:hover,
.btn-dark-green:focus {
  background-color: var(--primary-color);
  color: #ffffff;
} */

.btn-dark-green {
    padding: 14px 28px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 15px;
}

.btn-dark-green:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
}

/* team section  */
.team-section{
    /* background-color: var(--light-grey); */
    background: linear-gradient(to bottom, var(--section-bg-top), var(--section-bg-bottom)) !important;

}

.team-card{
    border-radius: 24px;
    background-color: #fff;
}

.team-card:hover{
    background-color: var(--secondary-color) !important;
}

.team-name{
    font-size: 18px;
    font-weight: 500;
}

.team-role{
    font-size:11px;
    font-weight: 500;
}

.team-img-wrapper{
    background-color: var(--light-grey);
    border-radius: 50%;
}

.team-img-wrapper:hover{
    background-color: #909ba8;
}

.trusted-card{
    background-color: var(--secondary-color);
}

.trusted-title{
    font-size: 30px;
    color: var(--primary-color);
}

.trusted-pill {
    background:transparent;
    border: 1px solid;
    width: max-content; 
    padding: 0.4rem 1.25rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.trusted-btn {
    /* display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500; */
}

.trusted-btn:hover{
    background:#fff;
    color: var(--primary-color);
}

/* Testimonials section  */
.testi-section{
    background-color: #ffffff;
}

.testi-card {
    background-color: var(--light-grey);
    border-radius: 24px;
    padding: 2.5rem 4rem;
    margin: 0;
}

.testi-card .carousel-control-prev,
.testi-card .carousel-control-next {
    width: 4rem;
}

@media (max-width: 768px) {
    .testi-card {
        padding: 1.5rem 2.5rem;
        margin: 0;
    }
    .testi-card .carousel-control-prev,
    .testi-card .carousel-control-next {
        width: 2.5rem;
    }
}

.quote-icon{
    font-size: 45px;
    color: var(--primary-color);
}

/* Partners Logos */
.partner-logo {
    max-height: 75px;
    max-width: 75%;
    object-fit: contain;
    margin: 10px 0;
}

/* Insight Section  */
.insight-section{
    background-color: var(--light-grey);
    font-family: var(--font-primary) !important;
}

.image-space img{
    border-radius: 24px;
}

/* Insight section  */
.accordion{
    color:var(--primary-color);
}

.accordion-button{
    color: var(--primary-color) !important;
    font-size: 20px;
    font-weight: 500;
}

.accordion-button:hover{
    border:none !important;
}
.accordion-button:focus{
    border-color:var(--primary-color) !important;
}

.accordion-button:not(.collapsed){
    background-color: #fff;
    border: none !important; 
}

/* Subscribe Section */
.subscribe-card {
  background-color: var(--primary-color);
  border-radius: 0px 0px 0px 0px; /* Top-left, top-right, bottom-right, bottom-left */
  overflow: hidden;
}

.subscribe-content {
  padding: 4rem;
}

.whatsapp-icon{
    /* padding-bottom: 80px; */
    color:#fff !important;
    font-size: 40px;
}

.subscribe-title{
    font-size: 48px;
    font-weight: 400;
}

.asterisk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.8rem;
  font-family: monospace;
  line-height: 1;
  padding-top: 8px;
}

.subscribe-input {
  padding: 0.8rem 1.5rem;
  border: none;
}

.subscribe-input:focus {
  box-shadow: 0 0 0 0.25rem var(--primary-color);
}

.subscribe-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 0.8rem 2.5rem;
  transition: background-color 0.2s ease;
  font-size: 15px;
  font-weight:500;
}

@media (min-width: 768px) {
  .subscribe-input {
    width: calc(60% - 0.5rem);
  }
  
  .subscribe-btn {
    width: calc(40% - 0.5rem);
  }
}

.subscribe-btn:hover {
  background-color: #fff;
}

.subscribe-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

@media (max-width: 575.98px) {
    .subscribe-image-col img {
        min-height: 200px;
    }
    .subscribe-content {
        padding: 2rem 1rem;
    }
    .subscribe-title {
        font-size: 2.5rem;
    }
}
/* Reveal Up Animation */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) { /* For small devices and below */
  .reveal-up {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .subscribe-content {
    padding: 2.5rem 1.5rem;
  }
}

/* footer  */
.footer {
    background: #f5f3ef;
    padding: 60px 40px;
    border-radius: 0px 0px 20px 20px;
}

@media (max-width: 575.98px) {
    .footer {
        padding: 40px 20px;
    }
}

.footer-left img {
    /* height: 40px; */
    margin-bottom: 20px;
}

.footer-heading span {
    color: var(--text-lime-color);
}

.footer-text {
    margin-top: 15px;
    color: #000;
    font-size: 16px;
}

.footer-contact h6 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-mute);
}

.footer-contact .label {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.footer-contact .value {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-info .value {
    font-size: 16px;
    color: var(--primary-color);
    line-height: 1.6;
}

.email-value{
    text-decoration: none;
    color: var(--primary-color);
}

.email-value:hover{
    cursor:pointer;
    color: var(--text-lime-color);
}

.footer-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}


/* .mt-3 {
    margin-top: 20px;
} */

/* Footer Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e5e5;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-color);
    font-size: 22px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 19, 49, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
    .social-icons {
        justify-content: flex-start;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* Side Menu Social Icons */
.side-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.side-social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.side-social-icons a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-4px);
}

.search-highlight {
    background: #ffeb3b;
    color: #000;
    padding: 2px 4px;
    border-radius: 4px;
}


/* Hamburger */
.hamburger {
    width: 25px;
    cursor: pointer;
    margin-left: 15px;
}

.hamburger span {
    display: block;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Side Menu (Right Slide) */
.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #f0f0f0;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    padding: 30px;
    z-index: 1001;
    border-radius: 24px;
}

.side-menu.active {
    right: 0;
}

.side-header{
    font-size: 30px;
    font-weight:500;
    color:var(--primary-color);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 1000;
}

.overlay.active {
    display: block;
}

/* Menu Styling */
.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu li {
    margin: 10px 0;
}

.side-menu a {
    text-decoration: none;
    color: var(--text-mute);
}

/* Mobile Navigation in Side Menu */
.mobile-nav-links {
    display: none;
}

.mobile-nav-links a {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 500;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--text-lime-color);
}

/* Submenu */
.has-sub ul {
    display: none;
    padding-left: 15px;
}

.has-sub.active ul {
    display: block;
}

@media (max-width: 768px) {
    .mobile-nav-links {
        display: block;
    }
    .side-menu-contact {
        display: none;
    }
}


/* hero cards */
.custom-card {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    min-height: 250px;
    bottom:120px;
    color: var(--primary-color);
    /* font-size: 30px;
    font-weight: 500; */
}

@media (max-width: 575.98px) {
    .custom-card {
        min-height: auto;
        bottom: 0;
    }
    .custom-card.assets-bg .assets-text h2 {
        font-size: 1.5rem;
    }
    .stat-box {
        max-width: 100%;
    }
}

.assets-bg {
    background-color: #f1ede8;
}

.prof-card{
    background-color: #f1ede8;
}

.trust-card-bg {
    background: url('assets/images/hero-card2.webp') center/cover no-repeat;
}

.stat-box {
    border-radius: 25px;
    max-width: 200px;
}

.green-pattern-box img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.text-success {
    color: var(--primary-color) !important;
}

/* Dashboard Card responsive */
@media (min-width: 450px) {
    .dash-card-2 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 1025px) {
    .dash-card-1 {
        flex: 0 0 auto;
        width: 50%;
    }
    .dash-card-2 {
        flex: 0 0 auto;
        width: 25%;
    }
}

/* =============
 About Page  
=============== */


/* .who-title{
    font-size: 48px;
    line-height: 1.15;
    font-weight: 600;
}

.who-title span{
    color: var(--primary-color);
} */

.value-para{
    /* color: #000; */
    text-align: justify;
    font-size: 17px;
    line-height: 1.8;
    max-width: 90%;
}

.about-portrait-wrapper{
    position: relative;
    max-width: 430px;
    /* margin-left: auto; */
}

.about-portrait{
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}


.impact-para{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.stats-row{
    margin-top: 20px;
}

.service-hero-img {
    height: 65vh; /* Increased from 50vh to show more image vertically */
    object-position: center 25%; /* Center the image focus */
    width: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 24px 24px 24px 24px;
}

.about-impact{
    background-color: #f5f4f0;
    font-size: 30px;
    font-weight: 500;
    color: var(--primary-color);
}

.about-impact span{
    color: var(--text-lime-color);
}

.impact-para{
    font-size:14px;
    font-weight: 400;
}

.value-para{
    color: #000;
    text-align: justify;
    font-size: 16px;
    align-self:end;
    padding-bottom: 25px;
}

/* History Section  */
/* .history-bg {
  background-image: url('assets/images/history1.webp');
  background-color: #d3ccc4;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
} */

.history-bg {
    position: relative;
    min-height: 100vh; 
    background-image: url('assets/images/history/history1.jpg');
    background-size: cover;
    background-position: center;
    transition: background-image 0.6s ease-in-out;
    display: flex;
    align-items: center;
}

.history-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15); 
    z-index: 1;
}

.history-card-custom {
    background-color: #f4efeb;
    border-radius: 24px ! important;
    max-width: 600px;
    width: calc(100% - 60px);
    position: relative;
    z-index: 2;
    margin-top: 0px;
    margin-bottom:0px;
    top: 20vh;
    bottom: 30px;
    inset-inline-start: 30px;
    padding-left: 90px !important;
}

.about-hero-title {
    font-size: 48px;
}


@media (max-width:768px){

    .who-title{
        font-size: 38px !important;
    }

    .value-para{
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .about-portrait-wrapper{
        max-width: 320px;
        margin: auto;
    }

    .about-portrait{
        height: 450px;
    }
}

@media (max-width: 1024px) {
    .history-card-custom {
        max-width: 500px;
        top: 15vh;
        padding-left: 40px !important;
        inset-inline-start: 20px;
    }
    .timeline-buttons {
        padding: 2rem !important;
        margin-right: 5rem;
    }
    .timeline-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .history-card-custom {
        width: calc(100% - 30px);
        inset-inline-start: 3px;
        padding-left: 30px !important;
        top: 0;
        margin: 40px auto;
    }
    .history-bg {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
        padding: 40px 0;
    }
    .timeline-buttons {
        position: relative !important;
        bottom: auto !important;
        end: auto !important;
            flex-wrap: nowrap;
        justify-content: center;
            padding: 20px 10px !important;
            width: 100%;
            gap: 8px !important;
            margin-right: 0 !important;
        }
        .timeline-btn {
            padding: 8px 5px;
            font-size: 13px;
            flex: 1;
            text-align: center;
    }
    .who-title, .service-title {
        font-size: 36px !important;
    }
    .about-hero-title {
        font-size: 40px !important;
    }
    .why-us-card h3 {
        font-size: 24px;
    }
    .why-us-para {
        font-size: 16px;
    }
    .why-us-card {
        min-height: 350px;
    }
}

.timeline-buttons {
    z-index: 3;
    margin-right: 5rem;
}

.timeline-btn {
    background-color: rgba(255, 255, 255, 0.4);
    color: #333;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.timeline-btn:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.timeline-btn.active {
    background-color: #ffffff;
    color: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bg-lime {
    background-color: #ccff00;
    width: 32px;
    height: 32px;
}

.text-dark-green {
    color: #1a4a38;
}

/* Why us */
.why-us-card
{
	border-radius: 24px;
    background-color: var(--secondary-color);
    overflow: hidden;
	/* height: 100%; */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%; /* Ensure it takes full width of its column */
}

.why-us-card .card-title {
    min-height: 3.5rem; 
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 22px;
}

.why-us-para{
    font-size: 20px;
    font-weight: 400;
}

.dark-green-bg{
    background-color: var(--primary-color);
}

.why-us-card h3{
    font-size: 30px;
    font-weight:500;
    color: var(--secondary-color);
}

.why-us-text{
    color:var(--secondary-color);
}

/* =============

  Contact Page  
=============== */

.form-left{
  position: relative;
  z-index: 2;
}

.form-right{
    position: relative;
  z-index: 1;
  transform: translate(-20px);
}

.contact-para{
    margin-top: 15px;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 400;
}

.icon-circle {
    width: 55px;
    height: 55px;
    background-color: var(--primary-color); 
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-label {
    color: var(--text-mute); 
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-value {
    color: #111111;
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-form-img{
    min-height: 95vh; 
    background-image: url('assets/images/contact-form-img.jpg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .contact-form-img {
        min-height: 50vh; 
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 24px !important;
    }
}

@media (max-width: 450px) {
    .contact-form-img {
        display: none !important;
    }
    .consult-section{
        padding-top: 20px !important;
    }
    .navbar {
        flex-wrap: nowrap;
    }
    .search-input.active {
        width: 120px;
    }
    .hero-action-btns {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    .hero-action-btns .me-3 {
        margin-right: 0 !important;
    }
}

.form-content{
    padding: 24px;
}

.form-content h2{
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 400;
}

.form-content p{
    font-size: 16px;
}


.office-card
{
	border-radius: 24px;
    background-color: var(--secondary-color);
    overflow: hidden;
	/* height: 100%; */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.office-card .office-title {
    min-height: 3.5rem; 
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 22px;
}

.office-para{
    font-size: 20px;
    font-weight: 400;
}

.office-title{
    font-size: 30px !important;
    font-weight: 500;
}

.office-subtitle{
    font-size: 20px !important;
    font-weight:400 !important;
}


/* =============
 Service Page  
=============== */

.choose-card{
    border-radius: 24px;
    color: var(--primary-color);
}

.choose-card .choose-title {
    min-height: 3.5rem; 
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 22px;
}

.choose-card ul li{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    list-style-type: none;
}

.choose-card ul li i{
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 2px;
    border-radius: 50%;
    margin-right: 10px;
}

.bg-service-why-us {
  background-image: url('assets/images/service-why-us.jpg');
  background-color: #d3ccc4;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.service-card-title{
    font-size: 30px;
    font-weight: 500;
    color: var(--primary-color);
}

/* --- Card Container --- */
.service-card-xl {
    background-color: #f6f5f2; 
    border-radius: 28px;       
    overflow: hidden;          
    max-width: 400px;          
    font-family: inherit;      
}

.service-card-xl:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5; 
    overflow: hidden;
}

.service-card-xl-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    border-radius: 24px;
}

.service-card-xl-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
}

.service-xl-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
}

.service-icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;

}

@media (max-width: 768px) {
    .service-why-us-card h3, h4{
        font-size: 30px !important;
    }
}

@media (max-width:320px) {
    .hero-title{
        font-size: 32px !important;
    }
    .who-title, .service-title{
        font-size: 28px !important;
    }
    .trusted-title{
        font-size:21px !important;
    }
    .side-menu {
        width: 100%;
        right: -100%;
    }
    section.py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    section.pt-5 {
        padding-top: 1.5rem !important;
    }
    section.pb-5 {
        padding-bottom: 1.5rem !important;
    }
    .search-input.active {
        width: 90px;
    }
    .dashboard-card{
        padding: 20px !important;
    }
    .btn-primary-custom {
        padding: 6px 6px 6px 16px;
        font-size: 14px;
    }
    .btn-primary-custom .icon-circle {
        width: 32px;
        height: 32px;
    }
    .history-card-custom {
        width: calc(100% - 20px);
        margin: 20px auto;
        padding: 20px !important;
        inset-inline-start: 0;
    }
    .timeline-buttons {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    .timeline-btn {
        flex: 0 0 calc(50% - 5px) !important;
        font-size: 12px;
        padding: 8px 0;
    }
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 30px;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}