/* ================= ROOT ================= */ :root {
  --primary: #006eaf;
  --secondary: #b10e05;
  --dark: #1e1e1e;
  --gray: #6c757d;
  --light: #f4f6f8;
}
/* ================= GLOBAL ================= */
body {
  font-family: Poppins, sans-serif;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: Montserrat, sans-serif;
}
.section {
  padding: 60px 0
}
a {
  cursor: pointer
}
/* ================= TOP HEADER ================= */
.top-header {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}
/* ================= NAVBAR ================= */
.navbar {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}
.nav-link {
  color: #333 !important;
  cursor: pointer;
  padding: 15px 14px !important;
  padding: 15px 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.2s ease;
  font-size: 15px;
}
.nav-link:hover {
  color: var(--secondary) !important;
}
.navbar-nav .nav-link.active {
  color: var(--secondary) !important;
}
.dropdown-menu {
  border-radius: 5px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}
.dropdown-item {
  padding: 10px 18px;
  font-weight: 500;
}
.dropdown-item:hover {
  color: var(--secondary);
}
/* ================= BUTTON ================= */
.btn-common {
  padding: 10px 24px;
  border-radius: 4px;
  color: #fff;
  transition: .3s;
}
.btn-primary-custom {
  background: var(--secondary);
  color: #fff;
  padding: 10px 17px;
}
.btn-primary-custom:hover {
  background: var(--primary);
  color: #fff;
}
.btn-secondary-custom {
  background: var(--secondary);
  color: #fff;
  padding: 10px 17px;
}
.btn-secondary-custom:hover {
  background: var(--primary);
  color: #fff;
  padding: 10px 17px;
}
/* ================= BANNER ================= */
/*.carousel-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}*/
.carousel-caption {
  background: rgba(0, 0, 0, .55);
  padding: 20px;
  border-radius: 5px;
}
.carousel-caption h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, .6);
  border-radius: 50%;
  padding: 20px;
}
/* ================= SERVICES ================= */
.services-wrapper {
  background: #f8fafc; /* light corporate bg */
}
.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-subtitle {
  
  font-size: 15px;color: #475569;
}
/* Service Cards */
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 35px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary);
}
.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon i {
  font-size: 30px;
  color: #fff;
}
.service-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  text-align: center;
  /*text-justify: inter-word;
  hyphens: auto;*/
}
/* Mobile spacing */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}
/* ================= WHY CFR ================= */
.why-wrapper {
  background: #f8fafc;
}
.why-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.why-img {
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}
/* Headings */
.why-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.why-text {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}
/* List */
.why-list li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 15px;
  color: #334155;
  display: flex;
  align-items: center;
}
.why-list i {
  color: var(--secondary);
  margin-right: 10px;
  font-size: 16px;
}
/* Badge (reusable) */
.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}
/* Responsive */
@media (max-width: 768px) {
  .why-card {
    padding: 25px;
  }
}
/* ================= ABOUT US ================= */
.about-wrapper {
  background: #f8fafc; /* very light corporate bg */
}
.about-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.about-img {
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.about-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.about-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.about-text {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}
/* Responsive padding */
@media (max-width: 768px) {
  .about-card {
    padding: 25px;
  }
}
/* ================= HIGHLIGHT STRIP ================= */
.highlight-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  padding: 60px 0;
}
.highlight-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}
.highlight-subtitle {
  font-size: 15px;
  opacity: 0.9;
}
/* Icon Boxes */
.highlight-box {
  padding: 20px 10px;
  transition: all 0.3s ease;
}
.highlight-box i {
  font-size: 34px;
  margin-bottom: 12px;
  color: #ffffff;
}
.highlight-box h6 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}
/* Subtle hover (corporate, not flashy) */
.highlight-box:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}
/* Responsive text */
@media (max-width: 768px) {
  .highlight-title {
    font-size: 24px;
  }
}
/* FIXED CONTACT BAR */
.contact-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, .15);
  z-index: 999;
}
.contact-fixed a {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}
.contact-fixed i {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}
.contact-call {
  color: #0c7ec2
}
.contact-email {
  color: #c00f06
}
.contact-whatsapp {
  color: #25D366
}
/* ================= CLIENTS ================= */
.clients-wrapper {
  background: #f8fafc;
}
.clients-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
/* Scroll Area */
.client-wrapper {
  overflow: hidden;
  position: relative;
}
.client-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: client-scroll 35s linear infinite;
}
.client-wrapper:hover .client-track {
  animation-play-state: paused;
}
/* Logo Card */
.client-logo {
  background: #ffffff;
  padding: 18px 28px;
  border-radius: 8px;
 /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.client-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: 0.3s;
}
/* Animation */
@keyframes client-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ================= FOOTER ================= */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.footer-social a:hover {
  background: #0d6efd;
}
.footer-links-bar {
  background: #091425;
  padding: 15px 0;
}
.quick-links li {
  list-style: none;
  margin: 5px 15px;
}
.quick-links a {
  color: #cfd6df;
  font-size: 14px;
  text-decoration: none;
}
.quick-links a:hover {
  color: var(--secondary);
}
.footer-main {
  background: #084b72;
  color: #cbd5e1;
  font-size: 14px;
  overflow-x: hidden; /* ✅ horizontal scroll fix */
  margin-bottom: 76px;
}
/* Titles */
.footer-title {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/*
.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--secondary);
    display: block;
    margin-top: 6px;
}
*/
/* Lists */
.footer-list li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap; /* ✅ */
  word-break: break-word; /* ✅ */
}
.footer-list li span {
  flex: 1;
}
.footer-list li i {
  color: var(--secondary);
  font-size: 13px;
  margin-top: 3px;
}
/* Links */
.footer-list a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-list a:hover {
  color: var(--secondary); /* ❌ no padding-left (scroll fix) */
}
/* Newsletter */
.footer-text {
  font-size: 13px;
  color: #94a3b8;
}
.footer-input {
  background: #fff;
  border: 1px solid #334155;
  color: #fff;
}
.footer-input::placeholder {
  color: #94a3b8;
}
.footer-input:focus {
  border-color: var(--secondary);
  box-shadow: none;
}
.footer-btn {
  font-size: 14px;
  padding: 8px;
}
/* Bottom bar */
.footer-bottom {
  background: #0c2a3b;
  border-top: 1px solid #1e293b;
  padding: 12px 0;
  font-size: 13px;
  color: #94a3b8;
}
/* ================= SCROLL TOP ================= */
#scrollTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  display: none;
  z-index: 999;
}
/* ================= RESPONSIVE ================= */
/*
@media(max-width:992px) {
  .carousel-item img {
    height: 350px
  }
}
@media(max-width:768px) {
  .carousel-item img {
    height: 280px
  }
  .section {
    padding: 50px 0
  }
}
*/
/*
@media(max-width:576px) {
  .carousel-item img {
    height: 240px
  }
}
*/
/* SECTION */
.group-hero {
  position: relative;
  padding: 70px 5%;
  background-image: url("../images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
/* Dark corporate overlay */
.group-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.75), rgba(20, 60, 120, 0.65));
  z-index: 1;
}
/* Content always above overlay */
.group-hero > * {
  position: relative;
  z-index: 2;
}
/* HEADING */
.circle-wrapper {
  text-align: center;
  margin-bottom: 35px;
}
.circle-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #fff; /*linear-gradient(
    90deg,
    #0c7ec2,
    #1e3a8a,
    #7a0f1b,
    #0c7ec2
  );*/
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s linear infinite;
}
/* ICON */
.circle-heading i {
  font-size: 30px;
  color: #0c7ec2;
  background: linear-gradient(135deg, #0c7ec2, #7a0f1b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* GROUP word emphasis */
.circle-heading span {
  position: relative;
  padding: 0 6px;
}
.circle-heading span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0c7ec2, #7a0f1b);
}
/* RESPONSIVE */
@media(max-width:768px) {
  .circle-heading {
    font-size: 24px;
    gap: 8px;
  }
  .circle-heading i {
    font-size: 22px;
  }
}
/* CONTENT GRID */
.group-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
/* SERVICES */
.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 8px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: .35s ease;
  font-size: 15px;
}
/* ICON */
.services a i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  transition: .35s ease;
}
/* HOVER EFFECT */
.services a:hover {
  background: var(--primary);
  color: #fff;
}
.services a:hover i {
  background: #fff;
  color: var(--secondary);
}
/*.services a:hover img{
  background:#fff;
}*/
/* CENTER LOGO */
.center-circle {
  width: 280px;
  height: 280px;
  display: grid;
  place-items: center;
}
.logo-box {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 45px rgba(31, 60, 136, .35);
  position: relative;
}
.logo-box::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}
.logo-box img {
  width: 110px;
  height: auto;
}
/* ANIMATION */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%
  }
  100% {
    background-position: 100% 50%
  }
}
/* RESPONSIVE */
@media(max-width:992px) {
  .group-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .services {
    align-items: left;
  }
}
.dropdown-menu {
  min-width: 280px;
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid rgba(12, 126, 194, .25);
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.18);
}
/* ITEM */
.dropdown-item {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  padding: 10px 22px;
  transition: all .3s ease;
  position: relative;
}
/* LEFT INDICATOR BAR */
.dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #b10e05, #b10e05);
  opacity: 0;
  transition: opacity .3s ease;
}
/* HOVER */
.dropdown-item:hover {
  background: linear-gradient(90deg, rgba(12, 126, 194, .12), rgba(225, 29, 72, .10));
  color: #0c7ec2;
}
.dropdown-item:hover::before {
  opacity: 1;
}
/* ACTIVE */
.dropdown-item.active, .dropdown-item:active {
  background: linear-gradient(90deg, rgba(12, 126, 194, .18), rgba(225, 29, 72, .15));
  color: #0c7ec2;
}
/* Corporate Header */
.corporate-header {
/*  background: #2f6fae;*/
  padding: 25px 0;
  position: relative;background: rgba(37, 99, 235, 0.1);
}
/* Title */
.corporate-header h1 {
 color: var(--secondary);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
/* Breadcrumb wrapper */
.corporate-header .breadcrumb {
  /*
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-flex;
  margin-bottom: 0;
  backdrop-filter: blur(2px);
*/ background: rgba(255, 255, 255, 0.22);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
/* Breadcrumb links */
.corporate-header .breadcrumb-item a {
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
}
.corporate-header .breadcrumb-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}
/* Active breadcrumb */
.corporate-header .breadcrumb-item.active {
  color: var(--primary);
  font-weight: 600;

}
/* Separator */
.corporate-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--dark);
}
.about-wrapper {
  width: 100%;
  background-color: #f4f6f9;
}
/* ================= SECTION ================= */
.about-section {
  padding: 40px 0;
}
/* ================= CONTENT BOX ================= */
.about-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #e1e5ea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}


.about-box h4 {color:var(--primary);}


/* 
================= IMAGE ================= */
.about-img {
  border-radius: 6px;
  border: 1px solid #e1e5ea;
}
/* ================= HEADING ================= */
.section-title i {
  color: var(--secondary) !important;
}
/* LEFT BORDER */
.section-title::before {
  content: "";
  width: 5px;
  height: 100%;
  /* background-color: #0d6efd;*/
  position: absolute;
  left: -15px;
  top: 0;
  border-radius: 3px;
}
/* UNDERLINE */
.section-title::after {
  content: "";
  width: 70px;
  height: 2px;
  /*background-color: #2866a1;*/
  position: absolute;
  left: 0;
  bottom: -10px;
}
/* ================= TEXT ================= */
.section-text {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
  margin-bottom: 0px;
}
/* ================= LIST WITH ICON ================= */
.about-list {
  list-style: none;
  padding-left: 10px;
  margin-top: 20px;
}
strong {
  font-weight: bold;
}
.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--secondary) line-height: 1.7;
}
/* ICON */
.about-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--secondary);
  font-size: 16px;
}
/* ================= CONTACT US SECTION ================= */
.contact_us {
  padding: 60px 0;
  background: #f6f9fc;
  font-family: 'Montserrat', sans-serif;
}
#enquiryForm .form-control {
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid #cfd8e3;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}
.form-group {
  margin-bottom: 1rem;
}
/* ================= MAP BOX ================= */
.map-box iframe {
  border: 1px solid #dbe3ec !important;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}
/* ================= INFO BOX (ADDRESS / PHONE / EMAIL) ================= */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 8px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  margin-bottom: 18px;
  transition: .3s ease;
}
.info-item:hover {
  transform: translateY(-4px);
}
.info-item i {
  font-size: 22px;
  color: var(--secondary);
  /* background:#fbecea;*/
  padding: 12px;
  border-radius: 50%;
}
.info-item h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
}
.info-item p, .info-item a {
  margin: 0;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}
/* ================= CONTACT FORM ================= */
#enquiryForm {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}
#enquiryForm label {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}
#enquiryForm input .form-control {
  font-size: 14px;
  padding: 10px 12px;
  padding-left: 12px;
  box-shadow: none;
  border: 1px solid #d0d8e5;
  height: 46px;
  border-radius: 6px;
}
#enquiryForm .form-control:focus {
  border-color: #b03224;
  box-shadow: 0 0 0 2px rgba(176, 50, 36, .15);
}
/* Enquiry Heading */
#enquiryForm legend {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 20px 0 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}
#enquiryForm i {
  color: var(--secondary);
  font-size: 18px;
}
textarea .form-control {
  height: 100px;
}
/* ================= SUBMIT BUTTON ================= */
#enquiryForm .btn-primary {
  background: var(--orange);
  border: none;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  transition: .3s;
}
#enquiryForm .btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
}
/* ================= CAPTCHA ================= */
.g-recaptcha {
  margin: 20px 0;
}
/* ================= MOBILE ================= */
@media(max-width:768px) {
  .contact_us {
    padding: 40px 0;
  }
  #enquiryForm {
    padding: 20px;
  }
  .info-item {
    text-align: left;
  }
}
.input-icon {
  position: absolute;
  left: 14px;
  top: 38px;
  font-size: 15px;
  color: #b03224;
  pointer-events: none;
}
.textarea-icon {
  top: 42px;
}
/* ================= MAIN SECTION ================= */
.policy-content {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e1e5ea;
  margin-top: 40px;
  margin-bottom: 40px;
}
/* ================= PARAGRAPH & LIST ================= */
.policy-content p, .policy-content li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}
/* ================= H3 (MAIN HEADINGS) ================= */
.policy-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 12px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 0px;
}
/* Left blue bar */
.policy-content h3::before {
  content: "";
  width: 5px;
  height: 100%;
  /*    background-color: #0d6efd; */
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3px;
}
/* Underline accent */
.policy-content h3::after {
  content: "";
  width: 70px;
  height: 2px;
  /* background-color: #f60;*/
  position: absolute;
  left: 0px;
  bottom: -8px;
}
/* ================= H4 (SUB HEADINGS) ================= */
.policy-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: #04427D;
  margin-top: 15px;
  /*  margin-bottom: 12px;*/
}
/* ================= H5 (INNER POLICY POINTS) ================= */
.policy-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 25px;
  margin-bottom: 8px;
}
/* ================= LIST STYLE ================= */
.policy-content ul {
  margin-top: 12px;
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
}
.policy-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
/* Icon bullets */
.policy-content ul li::before {
  content: "\f058"; /* check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--secondary);
  font-size: 15px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .policy-content {
    padding: 35px 25px;
  }
  .policy-content h3 {
    font-size: 22px;
  }
  .policy-content h4 {
    font-size: 20px;
  }
}
.corporate-strengths {}
.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.strength-card {
  background: rgba(255, 255, 255, .95);
  border-radius: 18px;
  padding: 28px 26px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}
.strength-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strength-card .icon i {
  font-size: 28px;
  color: #fff;
}
.strength-card h4 {
  font-size: 18px;
  font-weight:600;
  color: #0f172a;
  margin-bottom: 12px;
}
.strength-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}
.corporate-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}
.corporate-list li {
  position: relative;
  padding: 10px 12px 10px 38px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  font-size: 15px;
  color: #334155;
  transition: all .3s ease;
  text-align: left;
}
.corporate-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #1e3c72;
  font-size: 16px;
}
/*.corporate-list li:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}*/
.services-page {
  background: #f8fafc;
  padding: 70px 0;
}
.service-row {
  margin-bottom: 30px;
  padding: 50px 0px;
}
.service-content {
  background: #ffffff;
  padding: 42px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
}
.service-content p {
  text-align: justify;
}
.service-content h3 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 24px;
  color: var(--primary);
}
.service-content h4 {
  margin-top: 20px;
  font-weight: 600;
}
/*.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0c7ec2,#7a0f1b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}*/
.service-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}
.service-list {
  padding-left: 18px;
}
.service-list li {
  margin-bottom: 6px;
  font-weight: 500;
}
.center-circle {
  position: relative;
  width: 100%;
  height: 420px; /* adjust if needed */
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Planet wrapper */
.planet {
  position: relative;
  width: 320px;
  height: 320px;
}
/* Rotating Earth */
.planet__earth {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url("../images/earth2.jpg");
  background-size: cover;
  background-position: center;
  box-shadow:
    inset -30px -10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.5);
  animation: earthRotate 60s linear infinite;
}
/* Static Logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
/* Earth Rotation */
@keyframes earthRotate {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 200% center;
  }
}
/* CENTER HOLDER */
.center-globe {
  position: relative;
  width: 320px;
  height: 320px;
  margin: auto;
}
/* EARTH */
.earth {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url("../images/earth2.jpg") repeat-x;
  background-size: cover;
  animation: rotateEarth 40s linear infinite;
  box-shadow:
    inset -30px -10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.6);
}
/* LOGO ON TOP (STATIC) */
.globe-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
/* SMOOTH EARTH ROTATION */
@keyframes rotateEarth {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1000px 0;
  }
}