:root {
  --hero-bg: #e77738;
  /* orange background */
  --text-white: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.footer-form input::placeholder{
  color: #000;
}


/* ================================
   GLOBAL FONT & TYPOGRAPHY
================================ */

/* GOOGLE FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

/* APPLY FONT EVERYWHERE */
*,
*::before,
*::after {
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}

/* SECTION TITLES */
.section-title,
h1,
h2 {
  font-size: 32px;
  font-weight: 700;
  color: #606060;
  line-height: 1.3;
}

/* SUB HEADINGS (OPTIONAL CONSISTENCY) */
h3,
h4 {
  font-weight: 600;
  color: #606060;
}

/* PARAGRAPH TEXT */
p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #606060;
}

/* SMALL TEXT / TAGLINES */
.small-text,
.tagline {
  font-size: 15px;
  font-weight: 400;
  color: #606060;
}

/* LINKS */
a {
  font-weight: 500;
  text-decoration: none;
}



/* HEADER */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.main-header.show {
  transform: translateY(0);
}

.header-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* MENU */
.menu {
  display: flex;
  gap: 20px;
  margin: 0;
}

.menu li {
  position: relative;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #606060;
  font-size: 15px;
  padding: 5px 0;
  font-weight: 400;
}

/* UNDERLINE ANIMATION */
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #e77738;
  transition: width 0.3s ease;
  border-radius: 50px;
}

.menu li:hover a::after,
.menu li.active a::after {
  width: 100%;
}

.menu li.active a {
  font-weight: 600;
}

/* SUBMENU DESKTOP */
.submenu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #e77738;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin: 0;
  padding-left: 5px;
  padding-right: 5px;
}

.submenu li a {
  color: #fff;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  padding: 8px 10px;
  border-bottom: 1px solid #fff;
}

.submenu li:last-child {
  border-bottom: 0;
}

.submenu a {
  font-size: 14px;
  color: #fff;
}

.menu li:hover .submenu li a:after {
  display: none;
}


/* BURGER ANIMATION */
.burger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #606060;
  left: 0;
  transition: all 0.35s ease;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 10px;
}

.burger span:nth-child(3) {
  top: 20px;
}

/* CLOSE ICON */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* ==============================
   OVERLAY
================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

/* overlay visible */
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==============================
   MOBILE MENU
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80vw;
  max-width: 360px;
  /* optional but recommended */
  height: 100vh;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px 20px 30px;
}

/* menu visible */
.mobile-menu.show {
  transform: translateX(0);
}

/* main list */
.mobile-menu>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ==============================
   MAIN MENU ITEMS
================================ */
.mobile-menu li {
  border-bottom: 1px solid #eef1f5;
}

/* top-level clickable text */
.mobile-menu a,
.submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  /* slate-800 */
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

/* tap feedback */
.mobile-menu a:active,
.submenu-toggle:active {
  background: #f8fafc;
}

/* ==============================
   ACTIVE STATE
================================ */
.mobile-menu li.active>a,
.mobile-submenu.active>.submenu-toggle {
  color: #f58220;
  font-weight: 600;
}

/* ==============================
   SUBMENU (ACCORDION)
================================ */
.mobile-submenu ul {
  list-style: none;
  padding-left: 10px;
  background: #f9fafb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* open state */
.mobile-submenu.open ul {
  max-height: 600px;
}

/* submenu links */
.mobile-submenu ul li a {
  padding: 10px;
  font-size: 15px;
  font-weight: 400;
  color: #4b5563;
  /* gray-600 */
}

/* hover */
.mobile-submenu ul li a:hover {
  color: #111827;
}

/* ==============================
   ARROW ICON
================================ */
.submenu-toggle .arrow {
  font-size: 20px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  color: #9ca3af;
}

.mobile-submenu.open .arrow {
  transform: rotate(90deg);
  color: #f58220;
}

/* ==============================
   SMOOTH FEEL EXTRAS
================================ */
.mobile-menu * {
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu::-webkit-scrollbar {
  width: 0;
}




/* RESPONSIVE */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }

  .burger {
    display: flex;
  }
}






/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-color: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding-top: 0px;
}

/* Container width */
.hero-container {
  max-width: 1160px;
}

/* Title */
.hero-title {
  color: var(--text-white);
  font-size: 45px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center; margin-bottom: 50px;
}

.hero-title span {
  display: block;
  font-weight: 700;
}

.hero-title1 {
  color: var(--text-white);
  font-size: 45px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center; margin-bottom: 50px;
}

.hero-title1 span {
  display: block;
  font-weight: 700;
}
.hero-title1 span+span {
  display: block;
  font-weight: 400;
}

/* Illustration */
.hero-illustration {
  width: 100%;
  padding: 0;
}

.hero-illustration img {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}






.hero-text-wrapper {
    position: relative;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.hero-title {
    position: absolute;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* LOGO */
.logo-img {
    opacity: 0;
    transform: translateY(30px) scale(0.96);

    transition:
        opacity 1.6s ease,
        transform 1.6s ease;
}

.logo-img.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}



/* Slide from bottom to center */
.hero-title.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from center to top */
.hero-title.exit {
    opacity: 0;
    transform: translateY(-60px);
}





/* Identity Section */
.identity-section {
  padding: 100px 0;
  background: #fff;
}

.identity-container {
  max-width: 1160px;
}

/* Title */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #606060;
}

.title-line {
  display: block;
  width: 80px;
  height: 3px;
  background: #e8773a;
  margin: 12px auto 0;
}

/* Text */
.identity-text p {
  color: #606060;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* WE layout */
.we-wrapper {
  margin-top: 20px;
  position: relative;
}

.we-circle-wrap {
    display: inline-block; position: relative; z-index: 11;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.we-circle-wrap:hover {
    transform: scale(1.12);
}

.we-circle {
  width: 140px;
  height: 140px;
  background: #e77738;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 800;
  color: #fdb933;
  margin: auto;
  box-shadow: 0 0 0 5px #dcddde;
  transition: 0.5s;
}

.logo-up{ position: relative; z-index: 100;}


/* Items */
.we-item {
  position: relative;
  font-size: 16px;
  color: #606060;
}

.we-item p {
  font-size: 15px;
}

.we-left .we-item {
  margin-left: auto;
  padding-right: 40px;
}

.we-right .we-item {
  padding-left: 40px;
}

/* Lines & dots */
.we-item .line {
  position: absolute;
  top: 60%;
  width: 170px;
  height: 1px;
  background: #999;
}

.we-left .line {
  right: -150px;
}

.we-right .line {
  left: -150px;
}

.we-item .dot {
  position: absolute;
  top: 53%;
  width: 12px;
  height: 12px;
  background: #e8773a;
  border-radius: 50%;
  transform: translateY(-60%);
  z-index: 1;
}

.we-left .dot {
  right: 15px;
}

.we-right .dot {
  left: 15px;
}



.define-section {
  background: #fff4ea;
  padding: 120px 0;
}

.container {
  max-width: 1160px;
  margin: auto;
  position: relative;
  padding: 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #606060;
  font-weight: 700;
  margin-bottom: 0;
}

.title-line {
  width: 80px;
  height: 3px;
  background: #f07c2f;
  display: block;
  margin: 30px auto 40px;
}


/* ================================
   WHAT DEFINES US – HALF CIRCLE
================================ */

.define-section {
  background: #fdf2eb;
  padding: 100px 0 200px;
}






/* HALF CIRCLE – OPPOSITE DIRECTION */
.semi-circle-wrapper {
  position: relative;
  width: 520px;
  height: 300px;
  margin: 130px auto 0;
  overflow: visible;
  /* ✅ allow nodes to show */
}

/* ARC ONLY */
.semi-circle-wrapper::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 250px;
  left: 0;
  bottom: 0;
  border: 4px solid #ddd;
  border-top: none;
  border-radius: 0 0 350px 350px;
  z-index: 1;

  opacity: 0;
  transition: opacity 0.8s ease;
}




.semi-circle-wrapper.aos-animate::before {
  opacity: 1;
  transition-delay: 1.8s; 
}



/* MASK TOP HALF (THIS HIDES ARC, NOT CONTENT) */
.semi-circle-mask {
  position: absolute;
  top: -260px;
  left: 0;
  width: 520px;
  height: 260px;
  background: #fdf2eb;
  /* section bg color */
  z-index: 2;
}

/* CENTER LOGO */
.center-logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  height: 230px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* NODES */
.node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.35s ease;
  z-index: 3;
}

/* NODE POSITIONS (DOWNWARD ARC) */
.node-1 {
  left: -260px;
  top: 0;
}

.node-2 {
  left: -190px;
  top: 170px;
}

.node-3 {
  left: 31%;
  bottom: -120px;
  transform: translateX(-50%);
  flex-direction: column;
}

.node-4 {
  right: -190px;
  top: 170px;
}

.node-5 {
  right: -260px;
  top: 0;
}

/* ICON CIRCLES */
.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  border: 5px solid #dedbd5;
}

.circle.yellow {
  background: #ffc44d;
}

.circle.orange {
  background: #f07c2f;
}

.circle img {
  transition: transform 0.35s ease;
}

/* HOVER EFFECT */
.node:hover .circle {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.node:hover .circle img {
  transform: rotate(8deg);
}

.mobile{ display: none;}


/* TEXT CONTENT */
.content {
  max-width: 200px;
  opacity: 0.75;
  transition: all 0.35s ease;
}

.node:hover .content {
  opacity: 1;
  transform: translateY(-4px);
}

.content h4 {
  color: #e77738;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 800;
}

.content p {
  font-size: 17px;
  line-height: 20px;
  color: #606060;
  margin-bottom: 0;
}

.content.left {
  text-align: right;
}

.content.right {
  text-align: left;
}

.content.center {
  text-align: center;
}

/* ================================
   RESPONSIVE
================================ */






/* Services Section */
.services-section {
  padding: 100px 0;
  background: #fff;
}

.services-container {
  max-width: 1160px;
}

/* Service Box */
.service-box {
  position: relative;
  height: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-bottom: 7px solid #e77738;
  /* permanent bottom border */
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Hover background overlay */
.service-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #e77738;
  /* same orange tone */
  transition: height 0.45s ease;
  z-index: 0;
}

/* Hover state */
.service-box:hover::before {
  height: 100%;
}

.service-box:hover h5,
.service-box:hover p,
.service-box:hover a {
  color: #fff;
}

.service-box:hover .icon img {
  filter: brightness(0) invert(1);
}

/* Keep content above overlay */
.service-box * {
  position: relative;
  z-index: 1;
}

/* Icon */
.service-box .icon {
  margin-bottom: 15px;
}

.service-box .icon img {
  max-height: 66px;
}

/* Title */
.service-box h5 {
  font-size: 24px;
  font-weight: 700;
  color: #606060;
  margin-bottom: 10px;
  min-height: 60px;
}

/* Description */
.service-box p {
  font-size: 16px;
  font-weight: 500;
  color: #606060;
  line-height: 1.3;
  margin-bottom: 0;
  min-height: 85px;
}

/* Link */
.service-box a {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #e8773a;
  text-decoration: none;
}

.service-box a:hover {
  text-decoration: underline;
}


/* Operate Section */
.operate-section {
  padding: 100px 0;
  background: #fff3ea;
}

.operate-container {
  max-width: 1160px;
}

/* Text */
.operate-text p {
  font-size: 18px;
  color: #606060;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Flag Box */
.flag-box {
  width: 121px;
  height: 137px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  cursor: pointer;
}

.flag-box img {
  width: 100%;
  transition: transform 0.4s ease;
}

/* Hover Animation */
.flag-box:hover {
  transform: translateY(-8px);
}

.flag-box:hover img {
  transform: scale(1.08);
}

/* Country Name */
.operate-section h6 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #606060;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 767px) {
  .flag-box {
    width: 90px;
    height: 90px;
  }
}


.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
}


.site-footer {
  background: #f2f2f2;
  padding-top: 70px;
  border-top: 4px solid #fff;
}

.footer-top {
  padding-bottom: 60px;
}

.footer-logo {
  max-width: 325px;
  margin-bottom: 18px;
}

.footer-locations a {
  font-size: 19px;
  font-weight: 300;
  color: #606060;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-locations span {
  margin: 0 5px;
  color: #606060;
}

.footer-locations a:hover {
  color: #e8773a;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 15px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.footer-links a {
  color: #606060;
  font-size: 19px;
  text-decoration: none;
  position: relative;
  padding-left: 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
  font-weight: 400;
}

.f-br {
  border-right: 1px solid #a6aaab;
}


/* underline animation */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #e8773a;
  transition: width 0.35s ease;
}

.footer-links a:hover {
  color: #e8773a;
  padding-left: 6px;
  font-weight: 500;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-col h5 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #606060;
}

.footer-col p {
  font-size: 19px;
  line-height: 22px;
  color: #606060;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #999;
  padding: 8px 5px;
  margin-bottom: 20px;
  background: transparent;
  font-size: 15px;
  font-weight: 300;
}

.footer-form input:focus {
  outline: none;
  border-bottom-color: #e8773a;
}

.footer-form button {
  background: #6b6f77;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.footer-form button:hover {
  background: #e8773a;
}

.footer-bottom {
  background: #e77738;
  padding: 15px 0;
  color: #fff;
  font-size: 16px;
}


/* ABOUT US PAGE CSS */

.font38 {
  font-size: 38px;
}

.font32 {
  font-size: 32px;
}

/* =========================
   SECTION
========================= */
.purpose-section {
  padding: 100px 20px;
  background: #fdf2eb;
}

.purpose-container {
  max-width: 1160px;
  margin: auto;
  text-align: center;
}

/* =========================
   HEADING
========================= */


.purpose-subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 70px;
}

/* =========================
   GRID
========================= */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.center-box {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
}

.purpose-item {
  padding: 0 30px; transition: all 1.5s !important;
}

.purpose-item:nth-child(1)::after, .purpose-item:nth-child(3)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #bfc0be;
}

.purpose-item:nth-child(3)::after {
  right: auto;
  left: 0;
}

.purpose-item:hover{
  transform: scale(1.05) !important;
  transition: all 0.5s !important;
}


/* =========================
   ICONS
========================= */
.purpose-item .icon {
  margin-bottom: 25px;
  min-height: 145px;
}

.purpose-item .icon svg {
  width: 80px;
  height: auto;
}

/* =========================
   TEXT
========================= */
.purpose-item h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #606060;
}

.purpose-item p {
  font-size: 17px;
  font-weight: 400;
  color: #606060;
  line-height: 1.5;
  margin-bottom: 0;
}



/* =========================
   SECTION
========================= */
.approach-section {
  padding: 100px 20px;
}

.approach-container {
  max-width: 1160px;
  margin: auto;
  text-align: center;
}

/* =========================
   HEADER
========================= */
.approach-title {
  font-size: 32px;
  font-weight: 700;
}

.approach-underline {
  width: 70px;
  height: 3px;
  background: #f26a21;
  margin: 14px auto 25px;
}

.approach-desc {
  max-width: 890px;
  margin: auto;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
}

/* =========================
   DIAGRAM WRAPPER
========================= */
.approach-diagram {
  position: relative;
  width: 700px;
  height: 500px;
  margin: 90px auto 0;
}

/* CENTER LINES */
.approach-diagram::before,
.approach-diagram::after {
  content: "";
  position: absolute;
  background: #dcddde; 
  
  opacity: 0;
  transition: opacity 0.8s ease;
}

.approach-diagram::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);



}

.approach-diagram::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);

}


.approach-diagram.aos-animate::before, .approach-diagram.aos-animate::after {
  opacity: 1;
  transition-delay: 1s; 
}


/* =========================
   CENTER CIRCLE
========================= */
.center-circle {
  position: absolute;
  width: 185px;
  height: 185px;
  background: #fdb933;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  z-index: 2;
  box-shadow: none;
  border: 5px solid #dcddde;
}

/* =========================
   ITEM BOX
========================= */
.approach-item {
  position: absolute;
  width: 280px;
  text-align: center;

  transition:
    transform 0.4s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.4s ease,
    background 0.4s ease;

  will-change: transform;

}

.approach-item:hover {
  transform: translateY(-10px) scale(1.06);
}

.approach-item:hover img {
  transform: scale(1.15) rotate(2deg);
}

/* text color highlight */
.approach-item:hover h4 {
  color: #f58220;
}

.approach-item img {
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.approach-item h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

/* POSITIONS */
.item-top-left {
  top: 0;
  left: 0;
}

.item-top-right {
  top: 0;
  right: 0;
}

.item-bottom-left {
  bottom: 0;
  left: 0;
}

.item-bottom-right {
  bottom: 0;
  right: 0;
}


/* CORE BUSINESS PAGE */

/* ==========================
   INDIA SECTION
========================== */

.india-section {
  background: #fdf1eb;
  padding: 100px 0;
}

.bg-white {
  background: #fff;
}

.india-container {
  max-width: 1160px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT */
.india-left {
  text-align: center;
}

.india-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #606060;
}

.india-illustration img {
  max-width: 100%;
  height: auto;
  transition: .5s;
}

.india-illustration img:hover{
  transform: scale(1.05);
}


/* RIGHT */
.india-right p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #606060;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 991px) {
  .india-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .india-left {
    text-align: center;
  }

  .india-title {
    font-size: 26px;
  }
}


/* =========================
   SERVICES SECTION
========================= */

.services-section1 {
  background: #fff;
  padding: 100px 0 100px 0;
}

.services-container {
  max-width: 1160px;
  margin: auto;
  text-align: center;
}

.services-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #606060;
  margin-bottom: 80px;
}

/* =========================
   SERVICES GRID – FIXED BORDERS
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 25px;
  /* ✅ GAP BETWEEN ROWS */
}

.service-item {
  padding: 0 20px 20px;
  position: relative; 

  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1), box-shadow 0.4s ease, background 0.4s ease;
    will-change: transform;
}
.service-item img {
transition: transform 0.4s ease;
}
.service-item:hover img {
    transform: scale(1.15) rotate(2deg);
}


.service-icon {
  margin-bottom: 20px;
}

.service-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #606060;
  min-height: 45px;
}

.service-item p {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  min-height: 100px;
  margin-bottom: 0;
}

/* VERTICAL LINE WITH GAP AT BOTTOM */
.service-item:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 30px);
  /* GAP SIZE */
  background: #cfcfcf;
  width: 1px;
}

/* HORIZONTAL LINE (BETWEEN ROWS ONLY) */
.service-item:nth-child(-n+4)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cfcfcf;
}

.service-item a {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
  text-decoration: none;
}

.service-item a:hover {
  color: #f57c00;
}


/* SECTION BASE */
.global-services {
  background: #fff4eb url("../images/map-bg.jpg") center top -50px no-repeat;
  padding: 100px 0 140px;
  text-align: center;
  min-height: 950px;
  background-size: cover;
}



/* GRID */
.country-grid {
  max-width: 1160px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* BOX */
.country-box {
  width: 33.33%;
  background: #e46f2e;
  color: #fff;
  padding: 40px 30px;
  overflow: hidden;
  height: 180px;
  /* collapsed height */
  transition: height 0.45s ease, box-shadow 0.45s ease;
  position: relative;
  border: 3px solid #dad2cd;
}

/* EXPAND ON HOVER */
.country-box:hover {
  height: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.country-box.india:hover {
  height: 395px;
}

.country-box.singapur:hover {
  height: 505px;
}

/* HEADER */
.country-header img {
  margin-bottom: 12px;
}

.country-header h3 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}

/* LIST */
.country-list {

  text-align: left;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
  margin: 0;
  padding: 0;
  margin-top: 25px;
}

.country-box:hover .country-list {
  opacity: 1;
  transform: translateY(0);
}

/* LIST ITEMS */
.country-list li {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 0;
  list-style: disc;
  margin-left: 18px;
}




/* SECTION */
.experts-section {
  background: #fff4eb;
  padding: 100px 0 120px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}



/* GRID */
.experts-grid {
  max-width:1100px;
  margin: auto;
  display: flex;
  gap: 55px;
  text-align: center;
  place-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.experts-grid a {
  text-decoration: none;
  color: inherit;
  display: inline;
    width: 21%;
}

.center-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-top: 30px;
}


/* CARD */
.expert-card img {
  width: 237px;
  height: 237px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #cbcaca;
  transition: transform .35s ease;
  filter: grayscale(1);
}

.expert-card:hover img {
  transform: scale(1.03);
  filter: grayscale(0);
  border: 8px solid #e77738;
}

.expert-card h4 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
}

.expert-card p {
  font-size: 15px;
  color: #606060;
  line-height: 1.4;
  margin-bottom: 0;
}

/* POPUP */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  transition: .4s;
  z-index: 999;
}

.popup:target {
  opacity: 1;
  visibility: visible;
}

/* POPUP CONTENT */
.popup-content {
  background: #fff;
  width: 520px;
  max-width: 90%;
  padding: 40px;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  transition: .4s;
}

.popup:target .popup-content {
  transform: translate(-50%, -50%);
}

/* CLOSE */
.close {
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 28px;
  color: #606060;
  text-decoration: none;
}

.modal .close {
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 28px;
  color: #606060;
  text-decoration: none;
  border: 0;
  line-height: normal;
}





.smart-solutions {
  padding: 90px 0;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
}

.smart-solutions .container {
  max-width: 1160px;
  margin: auto;
  padding: 0 20px;
}


.solutions-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

/* Left Logo */
.solutions-logo {
  display: flex;
  justify-content: center;
}

.logo-circle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle img { max-width: 100%;}

/* Right Cards */
.solutions-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.solution-card {
  background: #fff;
  border-left: 5px solid #e77738;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.solution-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: #606060;
  margin-bottom: 6px;
}

.solution-card h4 strong {
  font-weight: 800;
  color: #e77738;
}

.solution-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #606060;
  margin-bottom: 0;
}



.font24 {
  font-size: 24px !important;
  font-weight: 600;
  color: #606060 !important;
  margin-bottom: 80px;
}


.careers-section {
  background: #fff3ea;
  padding: 90px 0;
  font-family: 'Montserrat', sans-serif;
}

.careers-section .container {
  max-width: 1160px;
  margin: auto;
  padding: 0;
}



/* GRID */
.careers-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

/* LEFT */
.careers-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #606060;
  margin-bottom: 18px;
}

.orange-title {
  color: #f26c23;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.small-text {
  font-size: 14px !important;
  color: #606060;
  font-style: italic;
}

/* FORM */
.career-form {
  margin-top: 20px;
}

.career-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #606060;
}

.career-form input {
  width: 100%;
  padding: 5px 12px;
  margin-bottom: 16px;
  border: 1px solid #d8cfc9;
  background: transparent;
  font-family: inherit;
}

.captcha-box {
  border: 1px solid #d8cfc9;
  padding: 16px;
  margin: 16px 0;
  font-size: 14px;
  color: #606060;
}

/* RIGHT */
.careers-right {
  font-size: 15px;
  color: #606060;
}

.process-list {
  padding-left: 18px;
  margin-bottom: 30px;
}

.process-list li {
  margin-bottom: 28px;
  line-height: 1.6;
}

.process-list strong {
  color: #606060;
}

/* BUTTON */
.btn-orange {
  display: inline-block;
  background: #f26c23;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.btn-orange:hover {
  background: #d85d1f;
}




.max-width-890 {
  max-width: 920px;
}


.global-offices {
  padding: 100px 0;
  text-align: center;
  background: #fdf2eb;
}



.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: auto;
}

.office-card-cnt {
  position: relative;
}

.office-card {
  position: relative;
  overflow: hidden;
}

.office-card img {
  width: 100%;
  display: block;
}

/* COUNTRY NAME */
.office-card-cnt h4 {
  margin-top: 25px;
  font-size: 22px;
  color: #606060;
}

/* OVERLAY */
.office-overlay-cnt {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #e77738;
  color: #fff;
  padding: 20px;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
}

.office-card-cnt:hover .office-overlay-cnt {
  transform: translateY(0);
}

/* INDIA 3 COLUMN LAYOUT */
.office-overlay.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.office-overlay strong {
  font-size: 17px;
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.office-grid a {
  color: #fff;
  margin-top: 10px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}

.office-overlay p {
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0;
}

.country-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}




.connect-section {
  padding: 100px 20px;
  text-align: center;
  background: #fff;
}



.subtitle {
  margin: 0 auto 60px;
  font-size: 20px;
  color: #606060;
  font-weight: 500;
}

.connect-form {
  margin: auto;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 50px;
}

/* MATERIAL INPUT */
.md-field {
  position: relative;
  margin-top: 20px;
}

.md-field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #606060;
  font-size: 16px;
  padding: 10px 0;
  background: transparent;
  outline: none;
}

.md-field label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 16px;
  color: #606060;
  pointer-events: none;
  transition: 0.3s ease;
}

/* Floating label */
.md-field input:focus~label,
.md-field input:valid~label {
  top: -10px;
  font-size: 13px;
  color: #f26c23;
}

/* Animated underline */
.md-field .bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f26c23;
  transition: 0.3s ease;
}

.md-field input:focus~.bar {
  width: 100%;
}

/* SUBMIT BUTTON */
.submit-btn {
  margin-top: 80px;
  padding: 16px 90px;
  background: #f26c23;
  color: #fff;
  border: none;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #e35e1c;
}




.profile-section {
  background: #e77738;
  padding: 80px 40px;
  color: #ffffff;
}

.member-img {
  width: 300px;
  height: 300px;
  border: 6px solid #feb836;
  border-radius: 50%;
  margin: 0 auto;
}

.member-img img {
  width: 100%;
}

.member-social {
  display: flex;
  margin-top: 80px;
  justify-content: space-between;
}

.member-content {
  border-left: 3px solid #fdb934;
  padding-left: 50px;
  text-align: left !important;
  min-height: 450px;
}

.member--title {
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 20px;
  color: #fdb932;
  font-weight: 700;
}

.member--title span {
  font-weight: 400;
  color: #fff; font-size: 22px;
}

.member-content p {
  line-height: 22px;
  color: #fff;
}

.member-social.mobile {
  display: none;
}

.member-social a.linkedin {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  color: #606060;
  font-size: 20px;
  margin: 0 5px;
  position: relative;
}

.member-social a.linkedin img {
  max-width: 24px;
  height: 24px;
}

.member-social a.linkedin:after {
  position: absolute;
  right: -8px;
  top: 0;
  height: 40px;
  width: 2px;
  background: #fff;
  content: '';
}

.member-social a.linkedin:last-child:after {

  display: none;

}

.member-social a.linkedin:hover {

  background: #fdb934;

}

/* OVERLAY BACKGROUND */
.modal .modal-header {
  border-bottom: 0;
}

/* CARD */
.service-card {
  background: #ffffff;

  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  border-radius: 6px;
}

.icon-box-cnt {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.service-left {
  padding-right: 30px;
}

/* LEFT SECTION */
.service-left h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #606060;
  margin-bottom: 0;
}

.service-left .intro {
  font-weight: 600;
  color: #606060;
  margin-bottom: 10px;
  font-size: 16px;
}

.service-left p {
  font-size: 15px;
  line-height: 1.6;
  color: #606060;
}

/* ICON */
.icon-box {}

.icon-box img {
  width: 100%;
  height: auto;
}

/* RIGHT SECTION */
.service-right {
  padding-left: 30px;
  border-left: 2px solid #f58220;
}

.service-right h4 {
  font-size: 16px;
  font-weight: 600;
  color: #f58220;
  margin-bottom: 15px;
}

.service-right ul {
  padding-left: 18px;
  margin: 0;
}

.service-right li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.5;
}



.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #f58220;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;

  z-index: 9999;
}

/* visible state */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover */
.back-to-top:hover {
  background: #e46f0f;
}

/* icon */
.back-to-top img {
  max-width: 50%;
  filter: grayscale(1) invert(1);
}