/*
Theme Name: Stepping Stone
Author: Lavanya
Version: 1.0
Description: Custom WordPress theme by Lavanya
*/
@font-face {
    font-family: 'Aptos Display';
    src: url('fonts/AptosDisplay.woff2') format('woff2'),
        url('fonts/AptosDisplay.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

html body p,
html body li,
html body span,
html body a,
html body div {
  font-size: 19px !important;
}
p {
  text-align: justify !important;
  
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word; 
  word-spacing: normal;
  line-height: 1.6;
}


.page-hero img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.page-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  max-height: 600px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .page-hero img {
    height: 420px;
  }
}

body:not(.home) {
  padding-top: 93px;
}

/* Header base styles */
/* Header base styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  height: auto;
  box-sizing: border-box;
}

.site-header.sticky-top {
  top:0 !important;
}

/* Transparent header only for homepage */
.home .site-header.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
  border-bottom: none !important;
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

/* When scrolled, add class 'scrolled' to make it fixed & visible */
.home .site-header.transparent-header.scrolled {
  position: fixed;
  background: #fff !important;
  border-bottom: 1px solid #eee !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.home .site-header.transparent-header.sticky-top {
  position: fixed !important;
  top: 0;
  background: #415A68 !important;
}

/* Optional: White nav links when over hero image */
.home .transparent-header .nav-menu li a {
  color: #fff;
  font-size:18px !important;
  font-family: "Noto Sans", sans-serif !important;
  font-style: normal;
  font-weight: normal;
}

.home .transparent-header .nav-menu li.current-menu-item > a,
.home .transparent-header .nav-menu li a:hover {
  color: orange;
}

/* Logo container */
.site-logo {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  margin-left: 0;
  z-index: 1100;
  padding-left: 0;
}

/* Restore original logo size */
body.home .site-logo img,
body:not(.home) .site-logo img {
  max-height: 83px;
  width: auto;
}

/* FIX: Optional logo top spacing */
body.home .site-logo {
  padding-top: 0;
}

/* Responsive logo adjustments */
@media (max-width: 1280px) {
  body.home .site-logo img,
  body:not(.home) .site-logo img {
    max-height: 83px;
  }
}

@media (max-width: 1024px) {
  body.home .site-logo img,
  body:not(.home) .site-logo img {
    max-height: 85px;
  }
}

@media (max-height: 650px) {
  .site-logo {
    top: 40%;
  }
}

/* Container for header content (nav) */
.site-header .container {
  width: 100%;
  max-width: 100%; /* FULL WIDTH */
  margin: 0 auto;
  padding-left: 35px; /* minimal side padding */
  padding-right: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

/* Header inner flex wrapper */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  box-sizing: border-box;
}

/* Navigation menu */
.nav-menu {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 15px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* Top-level list items */
.nav-menu > li {
  position: relative;
  padding: 0;
  white-space: nowrap;
}

/* Top-level links */
.nav-menu > li > a {
  font-family: "Noto Sans", sans-serif !important;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  padding: 8px 0;
  line-height: 1.5;
  display: inline-block;
}

/* Active top-level item */
.nav-menu > li.current-menu-item > a {
  color: orange;
}

.nav-menu > li > a {
  color: #000;
  border-bottom: 2px solid transparent;
}

/* Hover state (top-level only) */
.nav-menu > li > a:hover {
  color: #000;
  border-bottom: 2px solid orange;
}

/* Dropdown container */
.nav-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #E9F0F4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  z-index: 1000;
}

/* Show submenu on hover */
.nav-menu li:hover > ul {
  display: block;
}

/* Dropdown items */
.nav-menu li ul li {
  padding: 12px 20px;
  border-bottom: 1px solid #ccc;
}

/* Last item in dropdown (no border) */
.nav-menu li ul li:last-child {
  border-bottom: none;
}

/* Dropdown links */
.nav-menu li ul li a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  display: block;
  width: 100%;
}

/* Hover for dropdown links */
.nav-menu li ul li a:hover {
  color: orange;
}

/* Hide menu on small screens */
@media (max-width: 991.98px) {
  .nav-menu {
    display: none !important;
  }
}

/* Reduce spacing on medium screens */
@media (max-width: 1280px) {
  .site-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-inner {
    gap: 10px;
    padding: 0;
  }

  .site-logo img {
    max-height: 83px !important;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-menu > li > a {
    font-size: 15px;
    padding: 5px 0;
  }
}

/* Further tighten for 1024px width */
@media (max-width: 1024px) {
  .site-logo img {
    max-height: 85px !important;
  }

  .nav-menu {
    gap: 8px;
  }

  .nav-menu > li > a {
    font-size: 14px;
    padding: 4px 0;
  }
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Video Banner */
/* Video Banner */
.video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.video-banner video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-banner .header-inner {
  position: relative;
  z-index: 2;
}

/* Banner Section */
.banner-slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Banner video */
.banner-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* Default center */
}

/* For tablets and mobiles, shift video slightly */
@media (max-width: 1199px) {
  .banner-slide video {
    object-position: center center;
  }
}
@media (max-width: 767px) {
  .banner-slide {
    height: auto;          /* allow container to shrink */
    min-height: 228px;     /* fallback for very small screens */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* fill space behind video */
  }

  .banner-slide video {
    width: 100%;
    height: auto;          /* scale height automatically */
    object-fit: contain;   /* show full video without cropping */
    object-position: center center;
    max-height: 100vh;     /* prevent overflowing screen */
  }

  .banner-caption-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.middle-section-text p
{
    font-family: 'Noto Sans', sans-serif !important;
}
/* Force full-width & remove default container padding */
.carousel-caption {
  z-index: 2;
  padding-top: 300px;
  display: flex;
  align-items: flex-start;
  height: 100%;
}

.carousel-caption .container {
  max-width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.carousel-caption .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.carousel-caption .col-lg-12 {
 /* margin-left: -72px !important; /* Exactly align with logo */
 margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Caption Headings */
.carousel-caption h3 {
  font-size: 3.2rem !important;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.carousel-caption p {
  font-size: 1.5rem !important;
  line-height: 1.5;
  color: white;
}
/* Add a parent class or ID to increase specificity */
.carousel-inner .carousel-caption p {
  font-size: 1.6rem !important;
}

/* Base button */

.carousel-caption a.btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #FF8836 0%, #EC7827 31%, #BD6128 100%);
  color: #fff;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 0px;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: 4%; 
  left: 12%;    
  transform: translateY(0) scale(1); 
  transform-origin: left bottom;
  z-index: 3;
}

/* Arrow effect inside span */
.carousel-caption a.btn span {
  display: inline-block;
  transition: 0.5s;
  position: relative;
}

.carousel-caption a.btn span:after {
  content: "»";      
  position: absolute;
  opacity: 0;          
  top: 0;
  right: -15px;       
  transition: 0.5s;
}

.carousel-caption a.btn:hover span {
  padding-right: 15px;
}

.carousel-caption a.btn:hover span:after {
  opacity: 1;          
  right: 0;           
}

.carousel-caption a.btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/* Standard responsiveness */
@media (max-width: 1199px) {
  .carousel-caption a.btn {
   
    left: 10%;
  }
}

@media (min-width: 1920px) {
  .carousel-caption a.btn {
  /*  top: 82%;*/
  }
}

@media (max-width: 991px) {
  .carousel-caption a.btn {
  /* top: 75%;*/
    left: 10%;
  }
}

/* Mobile-only smaller button */
@media (max-width: 767px) {
  .carousel-caption a.btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    padding: 22px 12px !important;
    font-size: 12px !important;
    position: absolute !important;
    top: 87% !important;
    left: 12% !important;
    transform: translateY(-50%) !important scale(1) !important;
    transform-origin: left bottom !important;
    z-index: 3 !important;
    background: linear-gradient(180deg, #FF8836 0%, #EC7827 31%, #BD6128 100%) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.5s ease-in-out !important;
  }

  .carousel-caption a.btn span {
    display: inline-block !important;
    position: relative !important;
    transition: 0.5s !important;
  }

  .carousel-caption a.btn span:after {
    content: "»" !important;
    position: absolute !important;
    opacity: 0 !important;
    top: 0 !important;
    right: -10px !important;
    transition: 0.5s !important;
  }

  .carousel-caption a.btn:hover span {
    padding-right: 10px !important;
  }

  .carousel-caption a.btn:hover span:after {
    opacity: 1 !important;
    right: 0 !important;
  }

  .carousel-caption a.btn:hover {
    opacity: 0.9 !important;
    transform: scale(1.03) !important;
  }
}

/* Caption Heading */
.carousel-caption .col-lg-12 h3 {
  font-size: 40px !important;
  line-height: 48px;
  padding-left: 0;
  margin-bottom: 1rem;
  padding-top: 74px;
}

.right-column {
  margin-left: 30px;
}

.logo-column {
  padding-left: 30px; 
}

/* Responsive headings */
@media (max-width: 767px) {
  .carousel-caption .col-lg-12 h3 {
    font-size: 1.7rem !important;
    line-height: 1.2;
    padding-left: 0;
    margin-bottom: 1rem;
    padding-top: 160px;
  }

  .carousel-caption .col-lg-12 {
    margin-left: -34px !important;
    padding-left: 0 !important;
  }
}



/* Footer Section */
.footer-top {
  background: #083d59;
  color: #fff;
  padding: 40px 0;
}

/* Outer full-width wrapper */
.footer-container-wide {
  width: 100vw;
  max-width: 100vw;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

/* Inner grid with max 1440px */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 53px;
  margin: 0 auto;
  padding-left: 0px;
  padding-right: 0px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-logo {
	margin-left: 47px;
  margin-bottom: 3rem;
  text-align: left; 
  display: block;    
  max-width:60%;
}
.footer-logo img {
  width: 220px !important;
  max-width: none !important;
  height: auto !important;
}
.footer-address p,.footer-address a{
    text-align:left;
    font-size:18px !important;
}
.card-hover-content {
    padding: 20px 20px;
}.service-card span.underline-white {
    margin: 10px 0px;
    display: block;
    position: relative;
    top: 10px;
}
.service-card .card-title{
    font-size:1.2rem !important;padding: 0 20px;
}
.footer-menu .footer-nav,
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
    font-size: 18px !important; /* same as footer address */
    color: #fff;
    text-decoration: none;
    line-height: 1.5; /* ensure proper spacing */
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
}

.social-icons a {
  color: white;
  font-size: 18px;
  margin-right: 10px;
}

.social-icons a:hover {
  color: #ffc107;
}

.subscribe-form {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  max-width: 100%;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 8px 12px;
  font-size: 12px;
  color: #09101D;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-transform: capitalize;
  width: 70%;
}

.subscribe-form button {
  padding: 8px 16px;
  background-color: #EC7827;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  text-transform: capitalize;
}

.footer-bottom {
  background-color: #edf3f6;
  padding: 15px 0;
  font-size: 14px;
  color: #333;
}

.footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  flex: 1 1 50%;
  max-width: 600px;
  font-size: 18px !important;
}

.footer-left {
  text-align: left;
}

.footer-right {
  text-align: right;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-left,
  .footer-right {
    text-align: center;
    max-width: 100%;
  }
}

@media (min-width: 1025px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-container {
    flex-wrap: nowrap;
  }
}


/* Section Title with Orange Underline */
.section-title {
  font-size: 3rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
letter-spacing: -2.55px;
}

.section-title::after {
  content: '';
  display: block;	
  width: 60px;
  height: 4px;
  background-color: #f36f21; 
  margin: 10px auto 0;
  border-radius: 2px;
}
.section-title-blu {
/*   font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -3px;
  position: relative;
  display: inline-block; */
  margin-bottom: 20px;
}

.section-title-blu::after {
  content: '';
  display: block;	
  width: 40px;
  height: 4px;
  background-color: #1B9ED5; /* Blue underline */
margin: 10px auto 30px;
	/*   border-radius: 2px; */
}
.section-title-wht{
   font-size: 3rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
letter-spacing: -2.55px;
}
.section-title-wht::after {
  content: '';
  display: block;	
  width: 60px;
  height: 4px;
  background-color: #f36f21; 
  margin: 5px 0 0 0; 
  border-radius: 2px;
}

/* Section Description Centering */
.section-description {
  margin: 0 auto 40px;
  color: #444;
}

/* White underline below service title */
.card-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 5px;
}

.card-title .underline-white {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  margin: 2px auto 0;
  border-radius: 1px;
}

.section-heading-wrapper {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-heading {
    font-size: 32px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    color: white;
    padding-bottom: 10px;
  }

 .section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #f7931e;
  margin: 10px auto 0;
}

/* Workshop box styling stays mostly same */
.workshop-box {
  text-align: left;
  overflow: hidden; /* prevents image overflow during zoom */
  
  
}

.workshop-box img {
  width: 100%;
  margin-bottom: 15px;
 
}

.workshop-box h5 {
  font-weight: bold;
	color:#8CC63F;
  margin-bottom: 10px;
}

.workshop-box p {
  text-align: justify !important;
  font-size: 15px;
  min-height: 100px;
  margin-bottom: 10px;
}

.workshop-box a {
  text-decoration: underline;
  color: white !important;
  font-size: 14px;
  display: inline-block;
}

/* ✅ Hover zoom effect */


/* Optional: lift the whole card slightly on hover */


/* Hover overlay (if you plan to use later) */

/* Staggering effects */
.workshop-wrapper {
  transition: margin-top 0.3s;
}

.workshop-wrapper.staggered-down {
  margin-top: 50px;
}

.workshop-wrapper.zigzag-down {
  margin-top: 60px;
}

.workshop-wrapper.zigzag-up {
  margin-top: 0;
}

/* Updated vertical spacing for more breathing room */
.custom-workshops-section {
  padding-top: 130px !important;
  padding-bottom: 130px !important;
}

/* Wider section layout */
.container-fluid.px-lg-5 {
  max-width: 1600px;
  margin: 0 auto;
}

/* ↓↓↓ NEW: Control workshop box width to reduce size ↓↓↓ */

/* On large screens: show more in a row */
@media (min-width: 992px) {
  .recent-workshops .col-md-3 {
    flex: 0 0 auto;
    width: 20%;
    max-width: 20%;
  }
}

/* On tablets and below: fallback to original sizing */
@media (max-width: 991px) {
  .recent-workshops .col-md-3 {
    width: 50%;
    max-width: 50%;
  }
}

/* On mobile: full width */
@media (max-width: 576px) {
  .recent-workshops .col-md-3 {
    width: 100%;
    max-width: 100%;
  }
}

  /* Optional: disable zigzag on small screens */
  @media (max-width: 767.98px) {
    .workshop-wrapper.staggered-down {
      margin-top: 0 !important;
    }
  }
/* Arrows: round, outside, white icon, green background */
/* Arrows style */
/* ===== Testimonial Card Redesign ===== */
.testimonial-card {
  background: #8CC63F;
  border-radius: 20px;
  padding: 50px;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
}

.testimonial-left {
  display: flex;
  align-items: flex-start;
  flex: 1;
  padding-left: 0px !important; /* keep uniform left padding */
  padding-right: 40px;
}

/* Quote symbol */
.quote-icon {
  font-size: 78px !important;
  color: #DE7E39;
  display: block;
  line-height: 1;
  margin-right: 20px; /* space between quote and content */
  margin-bottom: 0; /* remove extra bottom margin */
}

/* Inner content shifted slightly right */
.testimonial-content-inner {
  margin-left: 10px; /* adjust as needed */
}

/* Testimonial text */
.testimonial-text {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Author and company */
.testimonial-author {
  font-size: 16px;
  color: #fff;
  margin-top: 20px;
}

.testimonial-author strong {
  font-weight: 600;
}

.testimonial-author .separator {
  margin: 0 6px;
}

.testimonial-author .company img {
  margin-top: 10px;
}

/* Testimonial image */
.testimonial-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
}

/* Carousel Arrows */
.testimonial-arrow {
  background: transparent;
  border: none;
}

.carousel-arrow-icon {
  color: #fff;
  font-size: 32px;
}

/* Carousel Indicators */
.testimonial-indicators button {
  background-color: rgba(255,255,255,0.5); /* unselected */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
}

.testimonial-indicators .active {
  background-color: #ff7920 !important; /* selected color */
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-content {
    flex-direction: column;
    text-align: left; /* keep left alignment */
  }
  .testimonial-left {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .testimonial-content-inner {
    margin-left: 0; /* reset for mobile */
  }
  .testimonial-image {
    margin-top: 20px;
    align-self: center;
  }
}

.news-media-section {
  padding: 74px 0;
  text-align: center;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.underline {
  width: 40px;
  height: 4px;
  background: #00ADEE;
  margin: 0 auto 30px;
}

.news-media-section {
  padding: 74px 0;
  text-align: center;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.underline {
  width: 40px;
  height: 4px;
  background: #00ADEE;
  margin: 0 auto 30px;
}

.news-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.news-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: scale(1.01);
}

.news-item.featured {
  width: 48%;
}

.news-item:not(.featured) {
  width: 24%;
}

.news-image {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: background-size 0.3s ease;
}

/* Zoom effect on hover */
.news-image:hover {
  background-size: 110%;
}

/* Bottom overlay for all cards (semi-transparent) */
.news-overlay,
.featured .news-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 96, 128, 0.5); /* semi-transparent by default */
  color: #ffffff; /* bright white text */
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5); /* subtle shadow for readability */
}

/* Overlay text */
.news-bottom h3,
.news-overlay h3 {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Hover overlay (full opacity) */
.news-item:hover .news-overlay,
.news-item.featured:hover .news-bottom {
  background: rgba(0, 96, 128, 0.85);
  top: 0; /* expand overlay fully */
  bottom: 0;
  padding: 20px;
}

/* News content inside featured card */
.news-bottom .news-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Arrow Button */
.news-btn {
  width: 30px;
  height: 30px;
  z-index: 3; /* above overlay */
}

.news-btn svg {
  width: 100%;
  height: 100%;
}

/* View More Button */
.view-more {
  margin-top: 30px;
}

.view-more a {
  color: #8CC63F;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive Support */
@media (max-width: 768px) {
  .news-item {
    width: 100% !important;
  }
}


.cta-section {
  padding: 60px 0;
  background-color: #006993;
  color: white;
}
/*.cta-section .container {
  max-width: 1200px;
}*/

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-left h2 {
letter-spacing: -2.1px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}
.cta-left img {
  width: 100%;
  max-width:500px;
  border-radius: 0px;
}
.cta-right .contact-form input,
.cta-right .contact-form select,
.cta-right .contact-form textarea {
  border-radius: 0 !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  background: transparent !important;
  color: white !important;
  border: none !important;
  border-bottom: 1px solid #ffffff55 !important;
}

.cta-right .contact-form input::placeholder,
.cta-right .contact-form textarea::placeholder {
  color: #ffffffaa !important;
}

.cta-right .contact-form input:focus,
.cta-right .contact-form select:focus,
.cta-right .contact-form textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid #fff !important;
}

.cta-right .contact-form .input-group .form-select {
  max-width: 110px !important;
  border-right: none !important;
}

.cta-right .contact-form .input-group .form-control {
  border-left: none !important;
}

.cta-right .contact-form button.btn-submit {
  background-color: #F26E21 !important;
  color: white !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 10px 30px !important;
  font-weight: 500 !important;
}

.cta-right .contact-form button.btn-submit:hover {
  background-color: #d95f1c !important;
}

.form-wrapper.no-contact-bg .contact-section {
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .cta-grid {
    display: block !important; /* Force block layout instead of grid */
  }

  .cta-left,
  .cta-right {
    width: 100%;
    margin-bottom: 30px;
  }

  .cta-right {
    margin-bottom: 0;
  }
}


/* home logo slider */

.marquee-rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}

.marquee-row {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 40px;
  min-width: 200%; 
  animation: marquee-left 80s linear infinite; 
}

/* Reverse direction for certain rows */
.marquee-direction-right .marquee-track {
  animation: marquee-right 80s linear infinite;
}

/* Specific speed control per row */
.marquee-row-1 .marquee-track {
  animation-duration: 80s; 
}
.marquee-row-2 .marquee-track {
  animation-duration: 80s; 
}
.marquee-row-3 .marquee-track {
  animation-duration: 80s; 
}

.marquee-slide {
  flex: 0 0 auto;
  padding: 15px 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.marquee-slide img {
  max-height: 85px;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* Keyframes for left scroll */
@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Keyframes for right scroll */
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* --- WHAT WE DO SECTION CLEAN STYLES --- */


.service-card {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card-img {
  position: relative;
  z-index: 1;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: opacity 0.3s ease;
}

/* Ensure left alignment even if .text-center exists on the element */
.service-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: none;
  padding: 20px 20px 20px 35px; 
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  text-align: left !important;
}


.service-card .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;              
  padding: 0;
  line-height: 1.05;      
  display: block;
  width: 100%;
  position: relative;
}

/* UNDERLINE — works whether it's inside <h5> or as a sibling after it */
.service-card .card-title .underline-white,
.service-card .card-title + .underline-white,
.service-card .underline-white {
  display: block;
  width: 34px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  margin: 2px 0 4px 0;     
  padding: 0;
}

/* Description (hidden by default) */
.service-card .card-hover-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin: 0;             
  padding: 0;
  color: #fff;
  width: 100%;             
  text-align: left;
}

/* Description paragraph spacing kept minimal */
.service-card .card-hover-content p {
  font-size: 14px;
  margin: 0 0 8px 0;       
}

/* Read More stays left-aligned */
.service-card .read-more {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* Hover effects */
.service-card:hover .card-hover-content {
  opacity: 1;
  max-height: 500px;
}

.service-card:hover .card-overlay {
  opacity: 0.6;
}

.service-card:hover .card-body {
  justify-content: flex-start; /* lift title up to reveal content */
}
.service-card,
.service-card img,
.card-img img {
  border-radius: 0 !important;
}


/* ABOUT US SECTION */
/* Section underline (orange line under headings) */
.section-underline {
  width: 40px;
  height: 3px;
  background-color: orange;
  margin-bottom: 1rem !important;
}

/* Logo layout fixes */
.logo-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.logo-grid-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}

.logo-col {
  flex: 0 0 auto;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box {
  width: 100%;
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img.larger-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Decorative square base */
.decorative-top-right {
  position: absolute;
  top: -25px;
  right: 122px;
  width: 80px;
  height: 80px;
}

.decorative-top-right .pos1 {
  position: absolute;
  top: 0;
  right: -93px;
}

.decorative-top-right .pos2 {
  position: absolute;
  top: 41px;
  right: -86px;
}

.decorative-top-right .pos3 {
  position: absolute;
  top: 28px;
  right: -120px;
}

.decorative-bottom-left {
  position: absolute;
  bottom: 25px;
  left: -25px;
  width: 90px;
  height: 90px;
}

.decorative-bottom-left .pos1 {
  position: absolute;
  bottom: 2px;
  left: 105px;
}

.decorative-bottom-left .pos2 {
  position: absolute;
  bottom: 20px;
  left: 78px;
}

/* ------------------------------
   ✅ Responsive Adjustments
--------------------------------*/

@media (max-width: 991.98px) {
  .logo-col {
    width: 45%;
    height: 160px;
  }
}

@media (max-width: 767.98px) {
  .logo-col {
    width: 100%;
    height: 140px;
  }

  .logo-box {
    padding: 6px 10px;
    border-radius: 12px;
  }

  .logo-box img.larger-logo {
    max-height: 80%;
    max-width: 80%;
  }

  .decorative-top-right {
    right: 36px;
    top: -61px;
    width: 60px;
    height: 60px;
  }

  .decorative-top-right .pos1 {
    top: 0;
    right: 0;
  }

  .decorative-top-right .pos2 {
    top: 30px;
    right: 10px;
  }

  .decorative-top-right .pos3 {
    top: 28px;
    right: -20px;
  }

  .decorative-bottom-left {
    bottom: -20px;
    left: 0;
    width: 60px;
    height: 60px;
  }

  .decorative-bottom-left .pos1 {
    bottom: 0;
    left: 0;
  }

  .decorative-bottom-left .pos2 {
    bottom: 25px;
    left: 15px;
  }
}

/* Extra styles you already had */
.px-4 {
 
  padding-left: 4.5rem !important;
}

.mission-section .col-lg-6:last-child {
  padding-left: 1rem !important;
  box-sizing: border-box;
}

.square {
  display: inline-block;
  border-radius: 2px;
}

.green-box {
  width: 28px;
  height: 28px;
  border: 5px solid #8CC63F;
  opacity: 0.31;
}

.blue-box {
  width: 23px;
  height: 24px;
  border: 3px solid #1CA3DC;
  opacity: 0.57;
}

.white-box {
  width: 21px;
  height: 20px;
  border: 5px solid #FFFFFF;
  opacity: 0.28;
  display: inline-block;
}

.custom-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.custom-bullets li {
	text-align:justify;
  position: relative;
  padding-left: 35px; /* space for bullet */
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.custom-bullets li::before {
  content: "\2022";              
  position: absolute;
  left: 0;
  top: 0;               /* align with first line */
  color: #0078bc;            
  font-weight: bold;
  font-size: 31px;          
  line-height: 1;            
}

.object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.row.g-0 {
  margin-left: 0;
  margin-right: 0;
}

.about-section {
  position: relative;
  overflow: visible;
}

.about-bottom-image {
  position: absolute;
  bottom: -58px;
  right: 0px;
  width: 298px;
  height: auto;
  z-index: 1;
  opacity: 1;
}

.rotated-logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 884px;
  height: 1920px;
  background-color: #415A68;
  transform: translate(-50%, -50%) rotate(-90deg);
  z-index: 0;
  border-radius: 0px; 
}



/* Contact page*/
/* ===== CONTACT SECTION STYLING ===== */
.contact-section {
  background-color: #0E394E;
  color: #ffffff;
  padding: 60px 0;
}

.contact-section .section-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-section .section-subtitle {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact-details h5,
.contact-details h6 {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.contact-details p,
.contact-details a {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-details a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ef4c63; /* Or your brand highlight color */
}



/* ===== FORM STYLING ===== */
/* ===== CONTACT SECTION ===== */

.contact-section {
  background-color: #0E394E;
  color: #ffffff;
  padding: 60px 0;
}

.contact-section .section-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.contact-section .section-subtitle {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 40px;
  text-align: center;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details h5,
.contact-details h6 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.contact-details p,
.contact-details a {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
  word-break: break-word;
}

.contact-details a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-details .info-line {
  margin-bottom: 10px;
}

.contact-details .info-line a {
  color: #ffffff;
  text-decoration: none;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ef4c63;
}

.contact-section .btn-warning {
  background: linear-gradient(90deg, #C16328 0%, #FD8635 100%);
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
}

.contact-section .btn-warning:hover {
  opacity: 0.9;
}

/* === Responsive === */
@media (max-width: 767px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-section .section-title,
  .contact-section .section-subtitle {
    text-align: center;
  }

  .contact-details {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-details .info-line {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


/* === Full‑width Google Map Banner === */
/* === Full‑width Google Map Banner === */
.fullwidth-map {
  position: relative;
  width: 100vw;                       
  margin-left: calc(-50vw + 50%);     
  overflow: hidden;
  background: #063b55;               
}

.fullwidth-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Optional: taller banner on large screens */
@media (min-width: 992px) {
  .fullwidth-map { height: 380px; }
}



/* ===== SOCIAL ICONS ===== */
.social-icons a {
  color: #ffffff;
  font-size: 1.2rem;
  margin-right: 15px;
}

.social-icons a:hover {
  color: #fca311;
}

/* ===== FORM STYLING ===== */
.contact-section label {
  display: block;
  margin-bottom: -22px;
  font-weight: 500;
  color: #ffffff;
  font-size: 0.95rem;
}

.contact-section input,
.contact-section textarea,
.contact-section select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 0;
  border: none;
  font-size: 0.95rem;
  background-color: #ffffff;
  color: #000000;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: #999999;
}

.contact-section textarea {
  resize: vertical;
  height: 120px !important;
  margin-top: 5px;
}

/* Phone number input group */
.contact-section .input-group {
  display: flex;
  align-items: center;
}
/* Fix dropdown country list styles */
.iti__country-list {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  z-index: 9999;
}

.iti__country {
  color: #000;
}

.iti__country:hover {
  background-color: #f0f0f0;
}
/* Fix the +973 dial code text color */
.iti__selected-dial-code {
  color: #000 !important;
  font-weight: 500;
}

.contact-section .input-group-text {
  background-color: #eeeeee;
  color: #333333;
  border-radius: 4px 0 0 4px;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .contact-section {
    padding: 30px 15px;
  }
}

.profile-wrapper-main {
    background-color: #E1EFFA; 
    position: relative;
    overflow: hidden; 
    padding: 40px 0; /* Adds some space at the top/bottom */
}

/* -- 2. Green Accent Block (Bottom Right) -- */
.profile-green-accent {
    position: absolute;
    bottom: 38px;
    right: 0;
    width: 91px;
    height: 117px;
    background-color: #8DC63E;
    z-index: 1;
}

/* -- 3. Page Container (Holds Bar + Content) -- */
.profile-page-container {
    display: flex;
    max-width: 1100px; /* Or your site's content width */
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Sits above the green block */
}

/* -- 4. Vertical Bar (Left) -- */
.profile-vertical-bar {
    width: 60px;
    background-color: #37A2DB;
    flex-shrink: 0; /* Prevents the bar from shrinking */
}

/* -- 5. Main Content Area (Right of Bar) -- */
.profile-content-area {
    flex-grow: 1; /* Takes up the remaining space */
    width: 100%;
}

/* -- 6. Top Section (Grid) -- */
.profile-header-section {
    display: grid;
    grid-template-columns: 1fr; /* Single column by default for mobile */
}

/* -- 7. Left Column (White Box) -- */
.profile-col-left {
    color: #333333;
    padding: 30px;
    
    display: flex;            /* stack children vertically */
    flex-direction: column;    /* vertical layout */
    align-items: center;       /* center all children horizontally */
    text-align: center;        /* ensures inline elements like <a> are centered */
    gap: 10px;                 /* optional spacing between image, name, title, and LinkedIn */
}

.profile-linkedin-link {
    display: inline-block;     /* allows centering under flex/text-align */
}

.profile-main-image {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.profile-name {
	text-align:center;
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 5px 0;
}

.profile-title {
	text-align:center;
    font-size: 18px !important;
    font-weight: 400;
    color: #005a99; /* This color was in the original image, looks good */
    margin: 0 0 15px 0;
}

.profile-linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #0079c1; /* Matching the original blue */
    font-weight: 600;
    transition: opacity 0.3s ease;
}
.profile-linkedin-link:hover {
    opacity: 0.7;
}
.profile-linkedin-link svg {
    fill: #0079c1;
}

/* -- 8. Right Column (Blue Box) -- */
.profile-col-right {
    background-color: #37A2DB; /* User's specified blue */
    color: #ffffff;
    padding: 30px;
    font-size: 16px;
    line-height: 1.6;
}
.profile-col-right p {
    color: #ffffff;
    margin-bottom: 1.5em;
}
.profile-col-right p:last-child {
    margin-bottom: 0;
}

/* -- 9. Specializations Header (Orange) -- */
.profile-spec-header {
    background-color: #f37021;
    padding: 15px 30px; /* 30px padding to align with content */
}

.profile-spec-header h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-align: left; /* Explicitly left-aligned */
}

/* -- 10. Specializations Content (White) -- */
.profile-spec-content {
   
    padding: 24px;
    color: #333333;
}

.spec-intro {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0;
}

.spec-list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 15px;
}

.spec-list li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 5px;
}

/* -- Responsive Styles (Tablet & larger) -- */
@media (min-width: 768px) {
    /* Make the top section 2 columns on larger screens */
    .profile-header-section {
        /* 1fr for left col, 2fr for right col */
        grid-template-columns: 1fr 2fr; 
    }
}

/* On very small screens, you might want to hide the green block */
@media (max-width: 480px) {
    .profile-green-accent {
        display: none;
    }
    .profile-wrapper-main {
        padding: 20px 0; /* Reduce padding */
    }
    .profile-col-left,
    .profile-col-right,
    .profile-spec-header,
    .profile-spec-content {
        padding: 20px; /* Reduce padding */
    }
}
/* Our TEAM */
/* Hero Banner */
.team-hero {	
  position: relative;
  height: 308px;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Breadcrumb */
.breadcrumb-container {
  background: #fff;
  padding: 8px 0;
}
.breadcrumb-text {
  margin: 0;
  color: #426979;
  font-size: 14px;
}
.breadcrumb-text span {
  color: #EC7827;
}

.team-section {
  padding: 60px 0;
  background-color: #E7F0F4;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Container inside section centered and flexible */
.team-section .container {
  width: 100%;
  max-width: 1400px; /* keeps current proportions */
  margin: 0 auto;
  padding-left: 35px;
  padding-right: 35px;
  box-sizing: border-box;
}

/* Team intro stays proportional */
.team-intro {
  margin: 0 auto 40px auto;
  font-size: 1.4rem !important;
  color: #000;
  line-height: 1.6;
  text-align: left;
  padding: 0;
  max-width: 100%; /* ensures it stretches fully */
  box-sizing: border-box;
}

/* Team rows flexibly scale */
.team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center; /* center all cards for smooth spacing */
  margin: 0 auto 40px auto;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Second row centered */
.second-row {
  justify-content: center;
}

/* Team cards remain proportional */
.team-card {
  width: 100%;
  max-width: 455px;
  flex: 0 1 calc((100% - 2 * 40px) / 3);
}

/* Other styles remain same */
.team-card-inner {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.member-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.team-card-inner:hover .member-photo {
  transform: scale(1.05);
}

.member-name {
  font-size: 20px;
  font-weight: 600;
  color: #173f59;
  margin-bottom: 5px;
}

p.member-role {
  font-size: 14px;
  color: #3f6581;
  margin-bottom: 0;
  text-align: center !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .team-card {
    flex: 0 1 calc((100% - 2 * 30px) / 3); 
  }
}

@media (max-width: 991px) {
  .team-card {
    flex: 0 1 45%;
  }
}

@media (max-width: 767px) {
  .team-card {
    flex: 0 1 100%;
  }

  .team-intro {
    padding: 0 20px;
  }

  .team-row {
    padding: 0 20px;
  }
}


.bio-button {
  display: inline-flex;
  align-items: center;      
  justify-content: center;  
  background-color: #FB8533;  
  color: #fff;
  font-size: 14px !important;
  padding: 8px 20px;        

  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
  line-height: normal;      
}

.bio-button:hover {
  background-color: #8CC63F;
  transform: translateY(-2px);
}


.quote-block {
  position: relative;
  font-style: italic;
  font-size: 1.05rem;
  color: #2F5466;
  text-align: justify;
  line-height: 1.3;
  margin: 0 0 1rem 0;
  padding-left: 4rem;   
  padding-right: 4rem;  
}





.detail-box li {
  color: #0E394E;
}


@media (min-width: 1200px) {
  .about-section .mb-3 {
    width: auto;
    max-width: 600px; /* or any max width */
  }

  .about-section .right-column {
    padding-left: 5%;
    margin-top: 180px;
  }

  .carousel-item .text-dark {
    max-width: 650px;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .nav-menu li a {
    font-size: 15px;
    padding: 0 8px;
  }
}

@media (max-width: 1366px) {
  /* Allow testimonial box to be wider and stack */
  .testimonial-box {
    max-width: 90% !important;  /* relax width */
    padding: 2rem !important;
    flex-wrap: wrap !important; /* allow wrapping */
  }

  .testimonial-box > .text-dark {
    max-width: 100% !important;
    margin-left: 0 !important; /* remove left margin so text doesn't overflow */
    font-size: 15px;
    text-align: justify;
  }

  .testimonial-box > div.d-flex.align-items-center {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 1024px) {
  .testimonial-box {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .testimonial-box > .text-dark {
    margin-top: 20px !important;
  }
}
@media (min-width: 992px) {
  .custom-padding-section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}
@media (min-width: 992px) {
  .wide-container {
    max-width: 1400px;  /* wider on desktops */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;  /* keep side padding */
    padding-right: 15px;
  }
}
.wide-container-xl {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}
.recent-workshops .row {
  margin-left: 0;
  margin-right: 0;
}
.recent-workshops {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


@media (max-width: 768px) {
  .wide-container-xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.footer-container-wide {
  max-width: 1440px; /* or 1600px, based on your design */
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1024px) {
  .site-logo img {
    height: auto;
    max-height: 70px;
    width: auto;
    margin-left: -18px;
    padding-left: 0 !important;
  }
}
@media (max-width: 1200px) {
  .logo img {
    height: auto;
    max-height: 120px;
    width: auto;
    margin-left: 55px;
    padding-left: 0 !important;
  }
}
@media (max-width: 450px) {
    .banner-slide .container{
        left: 17%;
    }
}
#testimonialCarousel .carousel-control-prev{
    left: 0 !important;
    background:#7FC252;
}
#testimonialCarousel .carousel-control-next{
    right: 0 !important;
}
.carousel-caption{
    left:0 !important;
}
.value-item img {
    max-height: 100px;
    width: auto;
    height: auto;
}

.value-item{
    padding:20px;
}
.value-item h3{
    font-size:21px;
    
    font-weight: bold; 
    font-style: normal;
}
.value-item p{
    line-height: 27px;
    text-align: left;
}
.value-item:first-child {
    padding-left: 0px;
}
.topsectiontext {
            font-size: 7rem;
}
.middle-section{
    padding-left: 6rem;
}
.footer-top{
    text-align: left;
    font-size: 13px !important;
}
.font-aptos h3{

    font-family: 'Aptos Display' !important;
}
.aboutss{
    font-size: 1.5rem !important;
}
.breadcrumb-wrapper{
    padding-top:10px !important;
    padding-bottom:10px !important;
} 
.footer-menu li a,.footer-address,.footer-contact{
font-family: 'Noto Sans Myanmar', sans-serif !important;
}
.list-section li span{
    font-size:18px !important;
}
.footer-top-section h2{
    font-size:1.7rem;
}

@media only screen and (max-width: 560px) {
    .topsectiontext {
            font-size: 4rem;
    }.middle-section{
    padding-left: 0rem;
}.aboutss{
    font-size: 1.2rem !important;
}
.aboutvalues{
    flex-direction: column;
}
.value-item{
    padding-left:0px;
}
.footer-menu{
    margin-left:0px !important;
}
.footer-contact{
     margin-left:0px !important;
}
.founder-section .px-4{
    padding-left: 1.5rem !important;
}.founder-section h2{
    max-width:100% !important;
}
.quote-block{
    padding-right: 0rem;
    max-width:100% !important;
}
.footer-top .px-4,.vision-section .px-4{
    padding-left: 1.5rem !important;
}
.mission-section .px-4{
     padding-left: 0 !important;
}
}
.support-program li span {
    font-size: 19px !important;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1285px;
    }
}
@media (min-width: 1800px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1700px; margin: 0 auto;
    }
}