@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Copperplate Gothic Bold';
    src: url('../fonts/CopperplateCC/otf/CopperplateCC-Bold.otf') format('opentype'),
         url('../fonts/CopperplateCC/ttf/CopperplateCC-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Body styling */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    /* background-color: #f5f5f5; */
    color: #000;
    font-size: 18px;
}

/* Headings use Poppins */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  line-height: 100%;
  margin-bottom: 0.5em;
}
p {
  line-height: 1.6;
  margin-bottom: 0.5em;
  font-size: 20px;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
ul {
  list-style-position: inside;
  margin-bottom: 0.5em;
}
.float_clear {
  clear: both;
}
.center {
  text-align: center;
}
.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  column-count: 2;
  column-gap: 40px;
  margin-bottom: 30px;
}

.custom-list li {
  position: relative;          /* REQUIRED */
  padding-left: 32px;          /* space for icon */
  margin-bottom: 10px;
}

.custom-list li::before {
  content: "\f192"; /* fa-circle-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #005C0D;
  font-size: 15px;
}

.custom-list ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* ----- Regular Circle Dot ----- */
.custom-list.regular li::before {
  content: "\f192"; /* Unicode for circle-dot */
  font-family: "Font Awesome 6 Free";
  font-weight: 400; /* regular */
  position: absolute;
  left: 0;
  top: 0; /* adjust for vertical alignment */
  color: #FFD900;
  font-size: 15px;
}

/* Main content */
main {
    margin: 20px auto;
    max-width: 800px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #fff;
}

.container {
    max-width: 1100px;   
    margin: 0 auto; 
    padding: 0;
}
.content_container a  {
  font-weight: bold;
  color: #5074F5;
}



/* Header */
header {
    padding: 20px 0;
    background: #fff;
}
header .logo {
    display: flex;           
    align-items: center;     
    text-decoration: none;
}

header .logo img {       
    height: auto;
    margin-right: 15px;   
    width: 450px;  
}

.logo-text {
    font-family: 'Copperplate Gothic Bold', serif;
    font-size: 40px;
    color: #5074F5;
    text-transform: uppercase;
}

.logo-text .big-letter {
    font-size: 50px;
    line-height: 1;
}


/* Navigation styling */
#main-nav {
    background: #5074F5;
    width: 100%;
}
#main-nav .nav-menu {
  display: flex;
  justify-content: space-between;  
  list-style: none;
  margin: 0;
  padding: 0;
}
#main-nav .nav-menu li {
  flex: 1; 
  text-align: center;
}
/* .nav-menu li:first-child {
  text-align: left;  
}
.nav-menu li:last-child {
  text-align: right; 
} */

#main-nav .nav-menu a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
}

#main-nav .has-submenu {
  position: relative;
}

#main-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0052cc;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 180px;
  border-radius: 0 0 4px 4px;
  z-index: 1000; 
}
#main-nav .submenu li a {
  padding: 10px 15px;
  text-align: left;
  display: block;
  color: #fff !important;
  text-transform: none;
  font-size: 16px;
}
#main-nav .submenu li a:hover {
  background: #0041a8;
}
#main-nav .has-submenu:hover > .submenu {
  display: block;
}
#main-nav .nav-menu .active a, #main-nav .nav-menu a:hover {
  color: #FFD900;
}
#main-nav {
    width: 100%;
    transition: box-shadow 0.3s ease;
}

/* When sticky */
#main-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Prevent layout jump */
#nav-placeholder {
    height: auto;
}


/* Mobile Header */
.mobile_header {
    background: #fff;
    border-bottom: 1px solid #eee;
    display: none;
}

.mobile_header {
    position: relative;
    z-index: 100;
}

/* When menu is open */
.mobile_header.menu-open {
    position: fixed;
    inset: 0;              /* top:0; left:0; right:0; bottom:0 */
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 99999;        /* Higher than everything */
    overflow-y: auto;
}

/* Make nav take full height */
.mobile_header.menu-open #mobile-nav {
    max-height: none;
    height: 100%;
    opacity: 1;
    transform: none;
    border-top: none;
    padding-top: 20px;
}

/* Prevent background scroll */
body.no-scroll {
    overflow: hidden;
}

.mobile_header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.mobile_header .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
}

.mobile_header.logo img {
    height: 36px;
}
.mobile_header .logo span{
    font-size: 20px;
    font-family: 'Copperplate Gothic Bold', serif;
    color: #5074F5;
    text-transform: uppercase;
}
.mobile_header .logo span.big-letter {
  font-size: 25px;
}

/* Hamburger */
.mobile_header .hamburger {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile_header .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: #5074F5;
}

#mobile-nav {
    background: #fff;
    border-top: 1px solid #eee;
    overflow: hidden;

    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

#mobile-nav.active {
    max-height: 600px; 
    opacity: 1;
    transform: translateY(0);
}

#mobile-nav .nav-menu, #mobile-nav .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mobile-nav.nav-menu li {
    border-bottom: 1px solid #eee;
}

#mobile-nav .nav-menu a {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: #000;
}
#mobile-nav .nav-menu a.active, #mobile-nav .nav-menu a:hover {
    background: #f0f0f0;
    color: #FFD900;
}

/* Submenu */
#mobile-nav .has-submenu .submenu {
    background: #f9f9f9;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

#mobile-nav .has-submenu.active .submenu {
    max-height: 300px;
}

#mobile-nav .submenu a {
    padding-left: 32px;
    font-size: 0.95rem;
}

#mobile-nav .arrow {
    float: right;
    transition: transform 0.3s ease;
}

#mobile-nav .has-submenu.active .arrow {
    transform: rotate(180deg);
}

/* Base link styling */
#mobile-nav .nav-menu li {
    position: relative;
}

#mobile-nav .nav-menu a {
    position: relative;
    padding: 16px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px 12px;
}

/* Hover effect */
#mobile-nav .nav-menu a:hover {
    background: rgba(0, 102, 255, 0.08);
    color: #5074F5;
    transform: translateX(6px);
}

/* Animated left accent bar */
#mobile-nav .nav-menu li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    height: 0;
    width: 4px;
    background: linear-gradient(180deg, #5074F5, #FFD900);
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}

/* Expand accent on hover */
#mobile-nav .nav-menu li:hover::before {
    height: 70%;
}

/* ============================= */
/* ACTIVE PAGE STYLE */
/* ============================= */

/* WordPress current page classes */
#mobile-nav .current-menu-item > a,
#mobile-nav .current_page_item > a,
#mobile-nav .active > a {
    background: linear-gradient(90deg, rgba(0,102,255,0.12), rgba(255,188,25,0.15));
    color: #5074F5;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Stronger accent bar when active */
#mobile-nav .current-menu-item::before,
#mobile-nav .current_page_item::before,
#mobile-nav .active::before {
    height: 70%;
}

/* ============================= */
/* SUBMENU MODERN LOOK */
/* ============================= */

#mobile-nav .submenu {
    margin: 6px 12px 12px 20px;
    border-left: 2px solid rgba(0,102,255,0.2);
    padding-left: 10px;
    background: transparent;
}

/* Submenu links */
#mobile-nav .submenu a {
    font-size: 15px;
    padding: 12px 15px;
    border-radius: 6px;
}

/* Submenu hover */
#mobile-nav .submenu a:hover {
    background: rgba(255,188,25,0.15);
    color: #FFD900;
}

/* Active submenu item */
#mobile-nav .submenu .current-menu-item > a {
    color: #FFD900;
    font-weight: 600;
}




.mobile_header .hamburger span {
    transition: all 0.3s ease;
}

.mobile_header .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile_header .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.mobile_header .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* End of Mobile Header */



/* Banner */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* .home-banner {
  height: 500px; 
} */
.swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(10px); 
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
  width: calc(100% - 40px);
  opacity: 0;
  transition: opacity 450ms ease, transform 450ms ease;
  z-index: 10; 
}
.swiper-slide-active .slide-content {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}
.slogan-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 8px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.slogan-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.slogan-link {
  display: inline-block;
  padding: 10px 20px;
  background: #5074F5;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 5; 
  pointer-events: none; 
}
.slogan_banner {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff; 
  padding: 0 20px;
  z-index: 1;
  width: 100%; */
  text-align: center;
}
.slogan_banner h2 {
  padding: 20px;
  display: inline-block;
  line-height: 35px;
  text-transform: uppercase;
  font-size: 30px;
}
/* .banner_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
} */
.banner_content {
  /* position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;    
  justify-content: center;
  color: #fff;
  inset: 0;     */
  padding: 30px 0 20px;
}
.breadcrumbs a{
  color: #000;
}
.breadcrumbs {
  font-size: 16px;
  font-weight: 500;
}

.breadcrumbs a {
  position: relative;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Animated underline */
.breadcrumbs a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5074F5, #FFD900);
  transition: width 0.3s ease;
}

/* Hover effect */
.breadcrumbs a:hover {
  color: #5074F5;
  transform: translateY(-2px);
}

.breadcrumbs a:hover::after {
  width: 100%;
}

/* Current page */
.breadcrumb_last {
  color: #FFD900;
  font-weight: 600;
}

.banner_text .page_title {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.banner_text {
  text-align: center;
}


/* Back to Top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;

  /* Theme gradient */
  background: linear-gradient(135deg, #5074F5, #0052cc);

  color: #fff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  text-decoration: none;

  opacity: 0;
  transform: translateY(20px) scale(0.8);

  pointer-events: none;

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;

  z-index: 1000;
}

/* When visible */
#backToTop.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;

  animation: floatButton 3s ease-in-out infinite;
}

/* Hover Effect */
#backToTop:hover {
  background: linear-gradient(135deg, #FFD900, #e6a700);
  box-shadow: 0 12px 30px rgba(255, 188, 25, 0.6);
  transform: translateY(-4px) scale(1.1);
}

/* Icon animation */
#backToTop i {
  transition: transform 0.3s ease;
}

#backToTop:hover i {
  transform: translateY(-3px);
}

/* Floating animation */
@keyframes floatButton {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* End Back to Top */


/* Homepage */
.home_link {
  position: relative;
  font-weight: 600;
  color: #5074F5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

/* Animated underline */
.home_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #FFD900;
  transition: width 0.35s ease;
  background: linear-gradient(90deg, #5074F5, #FFD900);
}


/* Hover state */
.home_link:hover {
  color: #FFD900;
}

.home_link:hover::after {
  width: 100%;
}

/* Icon animation */
.home_link i {
  transition: transform 0.3s ease;
}

.home_link:hover i {
  transform: translateX(4px);
}

/* Card hover stronger effect */
.services_cards:hover {
  transform: translateY(-12px);
}

/* Text transition */
.service_title,
.service_link {
  transition: color 0.3s ease;
}

/* H2 underline animation */
.service_title {
  position: relative;
}

.service_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #5074F5;
  transition: width 0.35s ease;
}

/* Expand underline on hover */
.services_cards:hover .service_title::after {
  width: 60px;
}

/* Number animation */
.service_number {
  transition: all 0.4s ease;
}

/* On hover – number becomes filled */
.services_cards:hover .service_number {
  -webkit-text-stroke: 0;
  color: #FFD900;
  transform: scale(1);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

/* Arrow animation */
.service_link i {
  transition: transform 0.3s ease;
}

.services_cards:hover .service_link i {
  transform: translateX(6px);
}

/* Optional: Change text color on hover */
.services_cards:hover .service_title,
.services_cards:hover .service_link {
  color: #FFD900;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}
.services_cards:hover .cards_content h2::after {
    background: #FFD900;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    /* text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8); */
}
/* End Homepage */


/* Welcome Content */
.home_welcome {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;      /* Centers vertically */
  padding: 40px 0;
}
.home_welcome p {
  margin-bottom: 25px;
}
.cta_button1 {
  display: inline-block;
  padding: 10px 20px;
  background: #005C0D;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
}
.cta_button1:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); 
  opacity: 0.9; 
}
.center_button {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.slogan-link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); 
  opacity: 0.9; 
}


/* Home meet the principal */
.meet_principal {
  display: flex;
  justify-content: center; 
  padding: 20px 0;
}
.meet_principal_container {
  display: flex;
  align-items: center;        
  gap: 40px;                  
  width: 100%;
}
.meet_left {
  position: relative;        
  flex: 0 0 350px;          
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;           
  overflow: hidden;
}
.meet_left img {
  width: 352px;
  height: 325px;
  object-fit: cover;
  display: block;
  border-radius: 4px;    
  margin-left: 10px;  
}
.left-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #005C0D;
  color: #fff;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.6px;
  z-index: 10;
  pointer-events: none;       
  text-transform: uppercase;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.left-badge span{
  display: block;
}
.left-badge .years{
  font-size: 25px;
}

.meet_right {
  flex: 1 1 auto;
  min-width: 0;     
  position: relative;     
}
.meet_right_headings {
  padding-left: 15px;
  border-left: 5px solid #005C0D;
}
.meet_right h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8d9297;
  
}
.meet_right h2 {
  margin: 0 0 16px 0;
  font-size: 25px;
  line-height: 1.15;
  color: #222;
  font-weight: bold;
}
.meet_right p {
  margin: 0 0 12px 0;
  color: #444;
  line-height: 1.6;
}
.meet_right .learn-link {
  margin-top: 15px;
}



/* Services */
.services {
  display: flex;
  justify-content: center; 
  padding: 50px 0;
}
.services_container {
  width: 100%;
}
.services_container h2 {
  position: relative;
  margin-bottom: 25px;
}
.services_container h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #5074F5;
  display: block;
  margin-top: 8px;
}
.cards_content h2::after {
  width: 40px;
  background: #fff;
}

.services_cards_container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap; ;
}
.services_cards {
    position: relative;
    flex: 1 1 calc(33.333% - 20px);
    min-height: 255px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.services_cards img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}
.services_cards:hover img {
  transform: scale(1.08);
}
.services_cards::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 2;
    transition: background 0.3s ease;
}
.services_cards:hover::before {
    background: rgba(0, 0, 0, 0.3);
}
.cards_content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-transform: uppercase;
    /* Remove fixed padding */
    padding: 0 30px;
    
    /* Flexbox centering */
    display: flex;
    justify-content: center; /* horizontal centering if needed */
    align-items: center;     /* vertical centering */
    height: 100%;            /* take full height of card */
    text-align: left;        /* keep text aligned left */
}
.cards_content h3 {
    font-size: 55px;
    font-weight: 700;
    color: transparent; 
    -webkit-text-stroke: 2px #FFD900;
    text-stroke: 2px #FFD900; 
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 100%;
}
.cards_content h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 0; 
}
.cards_content a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.cards_content a i{
  margin-left: 5px;
}
.services_cards:hover .cards_content span i {
    transform: translateX(4px);
    transition: 0.2s ease;
}

/* Title & arrow row */
.service_title {
    display: flex;
    align-items: center; /* vertical align arrow with text */
    gap: 8px; /* space between title and arrow */
    position: relative;
    transition: color 0.3s ease;
}

/* Underline animation for title */
.service_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #5074F5;
  transition: width 0.35s ease;
}

/* Expand underline on hover */
.services_cards:hover .service_title::after {
  width: 60px;
  background: #FFD900;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Arrow animation */
.service_arrow {
  transition: transform 0.3s ease;
}

.services_cards:hover .service_arrow {
  transform: translateX(6px);
}

/* Optional: Change title color on hover */
.services_cards:hover .service_title {
  color: #FFD900;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}


/* Featured */
.featured {
  padding: 30px 0;
  background: #ffffcc;
}
.featured_container {
  display: flex;
  gap: 30px; 
}
.featured_container img {
  max-width: 250px; 
  height: auto;
  flex-shrink: 0; 
}
.featured_content {
  flex: 1;
}
.featured_content h2 {
  font-size: 20px;
  margin-bottom: 25px;
}

.featured_content p {
  margin-bottom: 10px;
}

/* Testimonial */
.testimonial {
  padding: 50px 0;
}
.testimonial_container {
  display: flex;
    gap: 40px;
    width: 100%;
}
.testimonial_left {
  width: 45%;
}
.testimonial_headings {
  padding-left: 15px;
  border-left: 5px solid #005C0D;
}
.testimonial_headings h3{
    margin: 0 0 6px 0;
    font-size: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #8d9297;
}
.testimonial_headings h2 {
    margin: 0 0 16px 0;
    font-size: 25px;
    line-height: 1.50;
    color: #222;
    font-weight: bold;
}
.testimonial_item img{
  width: 100px !important;
  height: 100px !important;
  display: block;
  margin-bottom: 1.5rem !important;
}
.testimonial_item .line {
  width: 60px;
  height: 5px;
  background-color: #005C0D !important;
  margin-bottom: 1rem !important;
}
.testimonial_item p {
  margin-bottom: 1rem;
}
.testimonial_item h5 {
  font-size: 18px;
}

/* minor helper styles to integrate Owl with your design */
.testimonial_right { position: relative; max-width: 720px; margin: 0 auto; }

/* make sure owl items center their content */
.owl-item { }

/* keep your next-prev visible and clickable */
.next-prev { 
  display: flex; 
  gap: 1rem; 
  cursor: default; 
}
.next-prev span {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #005C0D;
  color: #005C0D;
  font-weight: 600;
  cursor: pointer;
  user-select: none;

}
.next-prev span:active { transform: translateY(1px); }

.testimonial_item { max-width: 100%;}


.footer {
  background-color: #5074F5;
  text-align: center;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}
.footer a {
  text-decoration: none;
  color: #fff;
}
.footer_menu {}
.footer_menu ul {
  list-style: none;             
  padding: 0;
  margin: 0;
  display: flex;                
  justify-content: center;     
}
.footer_menu li {
  margin: 0 10px;              
  position: relative;
}
.footer_menu li:not(:last-child)::after {
  content: "|";                 
  margin-left: 10px;            
}
.footer_menu a {
  text-decoration: none;     
  font-family: 'Poppins', sans-serif;
  font-size: 18px;   
}
.footer_menu a:hover {
  text-decoration: underline;           
}
.footer_contact {
  margin: 10px 0;
}
.footer_contact .line {
  margin: 0 5px;
}
/* footer contact animation */
.footer_contact a {
  position: relative;
  text-decoration: none;
  display: inline-block;   
  transition: color 0.3s ease;
}

.footer_contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #FFD900;   
  transition: width 0.3s ease;
}

.footer_contact a:hover::after {
  width: 100%;
}


.footer_follow {
    display: flex;
    align-items: center; 
    gap: 8px; 
    justify-content: center;
    margin-bottom: 10px;
}
.footer_follow img {
    vertical-align: middle;
    width: 80px;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer_follow a:hover img {
    filter: grayscale(1);
    transform: scale(1.05); /* optional subtle zoom */
}


/* Page Content */
.page_content {
  padding: 40px 0;
}
.section_title_top {
    display: inline-block;
    border: 2px solid #5074F5;
    color: #5074F5;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 4px;
    margin-bottom: 14px;
}
.page_content .section_title{
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
}

/** 
Company page 
*/
/* Mission Card (clean minimal version) */

.mission_card {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.mission_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.mission_card .mission-statement {
    font-size: 22px;
    color: #5074F5;
    font-weight: bold;
}
.mission_text{
  width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.vision img, .meet_founder img, .approach img{
  float: left;
  width: 230px;           
  max-width: 40%;
  height: auto;
  margin: 0 20px 15px 0;
}
.approach img {
  width: 400px;  
}
.vision ul {
  padding-left: 20px;
}
.vision::after {
  content: "";
  display: block;
  clear: both;
}
.custom-icon-mission, .custom-icon-vision {
  display: block;
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.custom-icon-mission {
  background-image: url("../images/icons/bullseye.png");
}

.custom-icon-vision {
  background-image: url("../images/icons/vision.png");
}

.vision_section {
    padding: 30px 0;
}

.vision_header {
    margin-bottom: 40px;
}

.vision_intro_line {
    width: 70px;
    height: 4px;
    background: #5074F5;
    margin: 15px auto 0;
    border-radius: 3px;
}

.vision_content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vision_image {
    flex: 1;
}

.vision_image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.vision_image img:hover {
    transform: scale(1.03);
}

.vision_text {
    flex: 1;
}

.vision_intro {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
}

.vision_text ul {
    margin-bottom: 25px;
}

.vision_closing {
    font-size: 18px;
    color: #444;
    font-style: italic;
    border-left: 4px solid #005C0D;
    padding-left: 15px;
}

.vision_text .custom-list li {
    margin-bottom: 14px;
    font-size: 18px;
}

.vision_content {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.vision_list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.vision_list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 22px 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.vision_list li:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.vision_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #5074F5;
    transition: width 0.3s ease;
}

.vision_list li:hover::before {
    width: 8px;
}

/* Add decorative bullet */
.vision_list li::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 28px;
    width: 10px;
    height: 10px;
    background: #005C0D;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 92, 13, 0.15);
}

/* Add space so text doesn't overlap bullet */
.vision_item_content {
    padding-left: 20px;
}

.vision_number {
    font-size: 22px;
    font-weight: bold;
    color: #5074F5;
    min-width: 50px;
    text-align: center;
    border: 2px solid #5074F5;
    border-radius: 50%;
    padding: 10px 0;
    line-height: 1;
    transition: all 0.3s ease;
}

.vision_list li:hover .vision_number {
    background: #5074F5;
    color: #fff;
    transform: scale(1.1);
}

.vision_item_content h4 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
}

.vision_item_content p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.company_card,
.founder_card,
.cta_card,
.approach_content {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.company_card:hover,
.founder_card:hover,
.cta_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.section_header {
    margin: 60px 0 40px;
}

.section_line {
    width: 70px;
    height: 4px;
    background: #5074F5;
    margin: 15px auto 0;
    border-radius: 3px;
}

.founder_layout {
    display: flex;
    gap: 50px;
    align-items: stretch; 
}


.founder_image {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
}

.founder_photo_wrap {
    position: relative;
    width: 100%;
}

.founder_photo {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    margin-bottom: 20px;
}

.founder_caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px 18px 18px;
    box-sizing: border-box;

    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;

    border-radius: 0 0 12px 12px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0) 100%
    );
}

.water_tower {
    /* width: 170px; */
    margin-top: auto;
    opacity: 0.95;
    border-radius: 12px;
}
.water_tower_mobile {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
}


.quote_card {
    text-align: center;
    font-style: italic;
    font-size: 22px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}
.quote_services {
  max-width: 800px;
}

.quote_card span {
    color: #000;
    font-style: normal;
    display: block;
}

.approach_layout {
    display: flex;
    gap: 50px;
}

.approach_image {
    flex: 1;
}

.approach_image img {
    border-radius: 12px;
}

.approach_text {
    flex: 1;
}

.cta_card {
    
}
.center-button-container {
  text-align: center;
}

.cta_card h2 {
    margin-bottom: 20px;
}

/* ============================= */
/* SERVICES – NEW PREMIUM STYLE  */
/* ============================= */

.services_section {
    padding: 60px 0;
}


/* Cards Grid */
.services_cards_container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Service Card */
.service_card {
    flex: 1 1 calc(33.333% - 30px);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

/* Hover Effect */
.service_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Image */
.service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* .service_card:hover .service_image img {
    transform: scale(1.08);
} */

/* Content */
.service_content {
    padding: 25px;
}

.service_content h3 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.service_content p {
    font-size: 18px;
    color: #222;
    line-height: 1.6;
}
.service_content .sub-heading {
  padding: 20px;
}
.service_content .sub-heading h4{
  color: #5074F5;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.service_area {
  margin-top: 50px;
}

/* Company page */


/* Page container */
.homepage_container {
background: #FFF;
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.12) 29%, rgba(0, 102, 255, 0.15) 57%, rgba(0, 102, 255, 0.2) 100%);
}
.page_container {
    min-height: 100vh;               
    background-image: url("../images/background_1920pxx1080px.png");
    background-size: cover;          
    background-position: center;     
    background-repeat: no-repeat;
    background-attachment: fixed;    
}
/* End page container */


/* Services Page */
.services_section ul {
  padding-left: 30px;
}

.two-columns {
    display: flex;
    gap: 60px;
}

.two-columns > ul {
    width: 50%;
}

.two-columns ul ul {
    margin-top: 8px;
}

.two-columns .custom-list {
  column-count: 1;
}

/* Services Page Image Fix – Card Based */
.engineering .service_image img,
.design .service_image img,
.onsite .service_image img {
    float: none;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.services_section .service_card {
  margin-top: 40px;
}

.services_section .service_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta_wrapper {
  text-align: center;
}


.service_card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-top: 40px;
}
.service_intro_row {
    display: flex;
    padding: 30px 20px;
}
.service_image {
    flex: 0 0 380px;
    min-height: 300px;
    overflow: hidden;
}
.service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.onsite_image {
  height: 500px;
}
.onsite_image img {
    /* object-fit: contain !important; */
}

.service_intro_text {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8faff;
    border-left: 4px solid #5074F5;
}

.service_intro_text p {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
}

.service_intro_text p:last-child {
    margin-bottom: 0;
}

/* Bullets content below the intro row */
.service_content {
    padding: 30px 40px;
    border-top: 1px solid #eee;
}

.service_content h3 {
    /* font-size: 18px; */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service_content h3:first-child {
    margin-top: 0;
}

.sub_headings {
    padding-left: 15px;
    border-left: 5px solid #005C0D;
}
.sub_headings h3 {
    margin: 0 0 16px 0;
    font-size: 25px;
    line-height: 1.15;
    color: #222;
    font-weight: bold;
    text-align: left;
}
/* Services Page */


/* Community Page */

.community_section {
    padding: 30px 0;
}

/* Card container */
.community_card {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.community_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Split layout */
.community_layout {
    display: block;
    align-items: center;
    gap: 60px;
}

/* Image */
.community_banner_image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 16px;
    margin-top: 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    position: relative;
}

.community_banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text */
.community_text {
    flex: 1;
}

.community_text p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #444;
}

.community_highlight {
    padding: 20px 0;
}

.community_intro_text {
    max-width: 750px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    color: #444;
}

/* Grid Layout */
.community_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.community_org_card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

/* Hover */
.community_org_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Accent line animation */
.community_org_card::before {
    content: "";
    width: 60px;
    height: 4px;
    background: #5074F5;
    display: block;
    margin-bottom: 20px;
    transition: width 0.3s ease;
}

.community_org_card:hover::before {
    width: 100px;
}

/* Title */
.community_org_card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #222;
}

/* Description */
.community_org_card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Link */
.community_org_card a {
    font-weight: 600;
    color: #005C0D;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.community_org_card a:hover {
    color: #FFD900;
    transform: translateX(4px);
}
/* End Community Page */



/* 404 Page */
.page_404_container {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #3b82f6 0%,
    #7c7cff 50%,
    #a78bfa 100%
  );
  color: #fff;
  padding: 60px 20px;
}

.page_404_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.page_404_image img {
  max-width: 100%;
  height: auto;
  /* animation: float 4s ease-in-out infinite; */
  border-radius: 10px;
}

.page_404_image {
  flex: 0 0 60%;
}

.page_404_text {
  flex: 0 0 40%;
}

.page_404_text h1 {
  font-size: 120px;
  line-height: 1;
  margin: 0;
  font-weight: 800;
}

.page_404_text h2 {
  font-size: 32px;
  margin: 10px 0;
}

.page_404_text p {
  font-size: 18px;
  max-width: 420px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn_404 {
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #764ba2;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn_404:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}



/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Glitch effect */
.glitch {
  position: relative;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: 2px;
}

/* Duplicate layers */
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

/* Red channel */
.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #ff3b3b;
  animation: glitchTop 3.5s infinite linear alternate-reverse;
}

/* Blue channel */
.glitch::after {
  left: -2px;
  text-shadow: -2px 0 #00eaff;
  animation: glitchBottom 2.8s infinite linear alternate-reverse;
}

/* 404 link design */
.link_404 {
  position: relative;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Gradient animated underline */
.link_404::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: #FFD900;
  transition: width 0.35s ease;
  border-radius: 2px;
}

/* Hover effect */
.link_404:hover {
  color: #FFD900;
  transform: translateY(-2px);
}

/* Animate underline */
.link_404:hover::after {
  width: 100%;
}

/* Top slice glitch */
@keyframes glitchTop {
  0% {
    clip-path: inset(0 0 85% 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(0 0 40% 0);
    transform: translate(-4px, -2px);
  }
  40% {
    clip-path: inset(0 0 60% 0);
    transform: translate(4px, 2px);
  }
  60% {
    clip-path: inset(0 0 30% 0);
    transform: translate(-2px, 0);
  }
  80% {
    clip-path: inset(0 0 70% 0);
    transform: translate(2px, -1px);
  }
  100% {
    clip-path: inset(0 0 90% 0);
    transform: translate(0);
  }
}

/* Bottom slice glitch */
@keyframes glitchBottom {
  0% {
    clip-path: inset(85% 0 0 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(40% 0 0 0);
    transform: translate(4px, 2px);
  }
  40% {
    clip-path: inset(60% 0 0 0);
    transform: translate(-4px, -2px);
  }
  60% {
    clip-path: inset(30% 0 0 0);
    transform: translate(2px, 0);
  }
  80% {
    clip-path: inset(70% 0 0 0);
    transform: translate(-2px, 1px);
  }
  100% {
    clip-path: inset(90% 0 0 0);
    transform: translate(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .page_404_content {
    flex-direction: column;
    text-align: center;
  }

  .page_404_text h1 {
    font-size: 90px;
  }
}

/* End 404 Page */


/* Resources */
.resources_intro_section {
    padding: 40px 0 20px;
}

.resources_intro_card {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    margin: 0 auto 40px auto;
    transition: all 0.3s ease;
}

.resources_intro_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.resources_intro_card p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.resources_intro_card p:last-child {
    margin-bottom: 0;
}

.resources_library_section {
    padding-bottom: 60px;
}

.library-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}
.library-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.library-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.library-icon {
    font-size: 50px;
    color: #FFD900;
    margin-bottom: 15px;
    text-align: center;
}
.library-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 25px;
}
.library-card p {
    flex-grow: 1;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}
.download-btn {
    background: #005C0D;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

/* sliding yellow background */
.download-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: #FFD900;
    transform: skewX(-20deg); /* ⭐ slanted effect */
    transition: left 0.4s ease;
    z-index: -1;
}

.download-btn:hover {
    color: #000;
}

.download-btn:hover::before {
    left: 0;
}

.library-card .resources_visit {
  margin-top:10px; 
  font-size: 14px; 
  color:#555;
}

.library-card .resources_visit a {
  color: #005C0D;
  font-weight: bold;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.library-card .resources_visit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #FFD900;
  transition: width 0.3s ease;
}

.library-card .resources_visit a:hover {
  color: #FFD900;
}

.library-card .resources_visit a:hover::after {
  width: 100%;
}

/* End Resources */




/* Animations */
.slide-in-bottom {
	-webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/* End Animations */



/** 
  Under Construction CSS 
**/
/* Fullscreen container */
.under_construction_container {
    position: relative;
    height: 100vh;
    background: url('../images/under_construction_03.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

/* Dark overlay */
.under_construction_container .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.6));
    z-index: 1;
}

/* Content */
.construction-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    animation: fadeUp 1.5s ease forwards;
    opacity: 0;
}

/* Title */
.title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #FFD900, #5074F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: float 4s ease-in-out infinite;
}

/* Subtitle */
.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

/* Button */
.home-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #FFD900, #5074F5);
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Button Hover Animation */
.home-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.4);
}

/* Rotating gear */
.gear {
    font-size: 60px;
    margin-bottom: 20px;
    animation: rotateGear 6s linear infinite;
}

/* Animations */
@keyframes rotateGear {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* End Under Construction CSS */


/**
  Contact page 
**/
/* Contact Section Layout */
.contact_section {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    align-items: flex-start;
}

.contact_left,
.contact_right {
    flex: 1;
}

/* Section Headings */
.contact_left h2,
.contact_right h2 {
    margin-bottom: 25px;
    font-size: 24px;
    text-transform: uppercase;
    position: relative;
}

.contact_left h2::after,
.contact_right h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #5074F5;
    display: block;
    margin-top: 8px;
}

/* Contact Info List */
.contact_info_list {
    list-style: none;
    padding: 0;
}

.contact_info_list li {
    margin-bottom: 20px;
    position: relative;
}

.contact_info_list a,
.info_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
}

.contact_info_list i {
    font-size: 20px;
    color: #005C0D;
    margin-top: 4px;
    transition: transform 0.3s ease;
}

/* Hover Animation */
.contact_info_list a:hover,
.contact_info_list .info_item:hover {
    transform: translateX(8px);
}

.contact_info_list a:hover i,
.contact_info_list .info_item:hover i {
    transform: scale(1.2);
    color: #FFD900;
}

.contact_image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.contact_image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
    transition: transform 0.4s ease;
}

.contact_image img:hover {
    /* transform: scale(1.04); */
}

/* Tooltip */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 35px;
    top: -30px;
    background: #5074F5;
    color: #fff;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

[data-tooltip]:hover::after {
    opacity: 1;
}

/* FORM */
.contact_form input,
.contact_form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact_form input:focus,
.contact_form textarea:focus {
    border-color: #5074F5;
    box-shadow: 0 0 8px rgba(0,102,255,0.2);
    outline: none;
}

.form_row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form_row input {
    /* flex: 1; */
}

textarea {
    resize: vertical;
}

/* Checkbox Row */
/* Checkbox Section */
.checkbox_row {
    flex-direction: column;
}

.checkbox_title {
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 16px;
}

.checkbox_title span {
    color: red;
}

/* Horizontal Layout */
.checkbox_group {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
}

/* Individual Checkbox */
.checkbox_item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Checkbox Styling */
.checkbox_item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #5074F5;
    cursor: pointer;
}

/* Hover Effect */
.checkbox_item:hover {
    color: #5074F5;
    transform: translateY(-2px);
}

.checkbox_row label {
    font-size: 16px;
    cursor: pointer;
}

.checkbox_row input {
    margin-right: 8px;
}

.checkbox_item span {
    white-space: nowrap; 
}

.contact_right {
    flex: 1.2;  
}

/* Submit Button */
.submit_btn {
    background: #5074F5;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
}

.submit_btn:hover {
    background: #004fcc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Intro Animations */
.slide-in {
    animation: slideLeft 0.8s ease forwards;
    opacity: 0;
}

.slide-in-delay {
    animation: slideRight 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes slideLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Form Group */
.form_group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.full_width {
    width: 100%;
}

.error_msg {
    color: #d93025;
    font-size: 14px;
    margin-top: 5px;
    height: 18px;
}

.email_reminder {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
    display: block;
}

.email_reminder i {
    color: #005C0D;
    margin-right: 4px;
}

/* Invalid Field */
.input_error {
    border-color: #d93025 !important;
    box-shadow: 0 0 6px rgba(217,48,37,0.2);
}

/* Disabled Button */
.submit_btn:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.contact_page p {
  font-size: 17px;
}

.contact_disclaimer {
    margin-top: 60px;
    /* padding: 50px;
    background: #ffffff;
    border-radius: 16px;
    border-top: 4px solid #5074F5;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06); */
    transition: all 0.3s ease;
}

.contact_disclaimer:hover {
    /* transform: translateY(-6px); */
    /* box-shadow: 0 20px 50px rgba(0,0,0,0.08); */
}

.contact_disclaimer p {
    font-size: 15px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 5px;
    font-style: italic;
}

.contact_disclaimer p:last-child {
    margin-bottom: 0;
}

.contact_disclaimer strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5074F5;
}

#subjectRow {
    display: none;
}

.dots::after {
    content: '';
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
    0%   { content: ''; }
    33%  { content: '.'; }
    66%  { content: '..'; }
    100% { content: '...'; }
}

/* #subject.auto-filled {
    background: rgba(255,188,25,0.1);
    border: 2px solid #FFD900;
} */
/**
  End Contact page 
**/



/* Responsive */
/* Laptops */
@media screen and (max-width: 1200px) {
    .container {
      padding-left: 15px;
      padding-right: 15px;
    }
}

/* Tablets */
@media screen and (max-width: 992px) {
  #main-nav .nav-menu a {
    font-size: 15px;
  }
  .meet_principal_container {
    gap: 20px;
  }
  .library-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact Page */
  .contact_section {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .form_row {
    flex-direction: column;
  }

  .submit_btn {
    width: 100%;
  }
  


  /* Company Page */
  .vision_content {
      flex-direction: column;
      padding: 30px;
  }

  .vision_image,
  .vision_text {
      width: 100%;
  }
  .founder_layout,
  .approach_layout {
    flex-direction: column;
  }
  .service_card {
    flex: 1 1 calc(50% - 20px);
  }
  .mission_text {
    width: 100%;
  }

  /* Community */
  .community_layout {
      flex-direction: column;
      gap: 30px;
  }
  .community_grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Phones */
@media screen and (max-width: 768px) {

  /* Banner Phone */ 
  .banner_text .page_title {
    margin: 0;
  }

  .container {
    max-width: 100%;
  }
  .logo {
    justify-content: center;
  }
  .logo span {
    font-size: 20px;
  }
  .logo img {
    width: 250px;
    height: auto;
  }

  header, #main-nav, #nav-placeholder {
    display: none;
  }
  .mobile_header {
    display: block;
  }
  .slogan_banner h2 {
    line-height: 100%;
    font-size: 20px;
  }
  .home_welcome {
    padding: 25px 0;
  }

  .slogan_banner h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .slogan_banner h2 span {
    display: block;
  }
  .slogan_banner h2 span:nth-child(2) {
    width: 70px;
    height: 4px;
    background: #000; 
    margin: 15px 0;
    font-size: 0; 
  }




  .meet_principal_container {
    display: block;
  }
  .meet_left {
    height: auto;
  }
  .meet_left img {
    width: auto;
    height: auto;
    margin: 0 auto
  }
  .meet_right {
    padding: 20px 0;
  }
  .meet_right h2 {
    font-size: 20px;
  }
  .meet_right h3 {
    font-size: 14px;
  }

  .services {
    padding: 20px 0 30px;
  }
  .services_cards_container {
    display: block;
  }
  .services_cards {
    margin-bottom: 10px;
  }

  .container h2 {
    font-size: 20px;
  }

  .vision img,.meet_founder img, .approach img {
    float: none;
    max-width: 100%;
    width: 60%;
    display: block;
    margin: 0 auto 15px auto;
  }
  .approach img {
    width: 100%;  
  }
  .cards_content {
    padding: 100px 0;
  }
  .water_tower_mobile {
    display: block;
  }
  .water_tower_desktop {
    display: none;
  }

  /* Company Page */
  .founder_layout {
    display: block;
  }

  /* Services */
  .engineering img, .design img, .onsite img {
    float: none;
    max-width: 100%;
    width: 100%;
    display: block;
    margin: 0 auto 15px auto;
  }
  .two-columns {
    display: block;
  }
  .service_intro_row {
      flex-direction: column;
  }
  .service_image {
      flex: none;
      height: 220px;
      min-height: unset;
  }
  .service_intro_text {
      border-left: none;
      border-top: 4px solid #5074F5;
      padding: 24px 20px;
  }
  .service_content {
      padding: 24px 20px;
  }
  .custom-list {
    column-count: 1;
  }


  /* Community  */
  .community_intro img {
    float: none;
    max-width: 100%;
    width: 90%;
    margin: 0 auto 15px auto;
  }
  .community_desktop {
    display: none;
  }
  .community_mobile {
    display: block;
  }

  .library-list {
      grid-template-columns: 1fr;
  }
  .community_grid {
    grid-template-columns: 1fr;
  }

  .community_banner_image {
    height: 200px;
    border-radius: 10px;
  }

  /* Under Construction */
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }


  /* Contact Page */
  .checkbox_group {
    flex-direction: column;
    gap: 10px;
  }
  .checkbox_item input[type="checkbox"] {
    flex: unset;
  }


  /* Company Page */
  .vision_section {
    padding: 20px 0;
  }

  .vision_intro {
    font-size: 18px;
  }

  .vision_text .custom-list li {
    font-size: 16px;
  }

  .service_card {
    flex: 1 1 100%;
  }

  .services_intro {
    font-size: 16px;
  }

}

/* Small phones */
@media screen and (max-width: 576px) {
  .slogan_banner h2 {
    font-size: 20px;
  }
  .footer_contact span {
      display: block;
  }
  .footer_contact .line {
      display: none;
  }
}