/* ========== ICC WEBSITE STYLES ========== */

/* ---------- Root Variables ---------- */
:root {
  --primary-color: #c9a227;
  --primary-dark: #a8851f;
  --dark-navy: #0f1629;
  --dark-navy-light: #1a2744;
  --dark-bg: #0a0f1a;
  --white: #ffffff;
  --body-font: 'Inter', sans-serif;
  --heading-font: 'Unbounded', sans-serif;
}

/* ---------- Global Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  color: #333;
  overflow-x: hidden;
  background-color: #00192B;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
}

/* ========== HEADER SECTION ========== */
.header-section {
  background-color: var(--dark-navy);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-section .navbar {
  padding: 0.5rem 0;
}

/* Logo */
.header-logo {
  height: 65px;
  width: auto;
}

/* Navigation Links */
.header-section .navbar-nav {
  gap: 0.5rem;
}

.header-section .nav-link {
  font-family: var(--body-font);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
  position: relative;
}

.header-section .nav-link:hover,
.header-section .nav-link.active {
  color: var(--white);
}

/* .header-section .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--primary-color);
} */

/* Get Consultant Button */
.btn-get-consultant {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.btn-get-consultant:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
}

/* Phone Button */
.btn-phone {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-phone:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #000;
}

/* Header Actions */
.header-actions {
  margin-left: 1rem;
}

/* Mobile Toggle */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ========== UTILITY CLASSES ========== */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-dark-navy {
  background-color: var(--dark-navy) !important;
}

/* Body padding for fixed header */
body {
  padding-top: 85px;
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 22, 41, 0.7) 0%, rgba(15, 22, 41, 0.4) 60%, transparent 100%);
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.hero-description {
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-outline {
  font-family: var(--body-font);
  background-color: #ffffffeb;
  border: 1px solid var(--dark-navy);
  color: #0f1629;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  border-radius: 0;
  transition: all 0.3s ease;

}

.btn-hero-outline:hover {
  background: none;
  color: white;
  border: solid 1px white;
  box-shadow: 0px 6px 16px rgb(45, 45, 45);
}

.btn-hero-dark {
  font-family: var(--body-font);
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-hero-dark:hover {
  background: #ffffffeb;
  color: #0f1629;
  box-shadow: 0px 6px 16px rgb(45, 45, 45);
}

/* HERO TEXT INITIAL STATE */
.hero-content>* {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 0.9s ease forwards;
}

/* STAGGER DELAYS */
.hero-title {
  animation-delay: 0.2s;
}

.hero-subtitle {
  animation-delay: 0.4s;
}

.hero-description {
  animation-delay: 0.6s;
}

.hero-buttons {
  animation-delay: 0.8s;
}

/* KEYFRAMES */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== KEY POINTS SECTION ========== */
.key-points-section {
  background-color: #00192B;
  padding: 3rem 0;
}

.key-points-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.key-point-item {
  text-align: center;
  padding: 0 2rem;
}

.key-point-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
}

.key-point-label {
  font-family: var(--body-font);
  font-size: 0.99rem;
  font-weight: 300;
  color: rgb(255 255 255 / 71%);
  margin: 0;
}

.key-point-divider {
  width: 1px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
}

/* animation of key poit */
/* INITIAL STATE */
.key-point-item {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.7s ease;
}

/* ACTIVE STATE */
.key-point-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Optional number emphasis */
.key-point-item.animate .key-point-number {
  transition: transform 0.6s ease;
}

.key-point-item.animate .key-point-number {
  transform: scale(1.05);
}

/* ========== SECTION HEADER (COMMON) ========== */
.section-header {
  margin-bottom: 3rem;
}

.section-label {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-description {
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.dropdown-menu {
  background-color: rgba(2, 32, 69, 1) !important;
  /* Background color */
  min-width: 260px;
  padding: 15px 0;

}

.dropdown-menu .dropdown-item {
  color: white !important;
  /* Font color */
}

.dropdown-menu .dropdown-item {
  padding: 12px 25px;
  font-size: 15px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 50, 100, 0.8);
  color: white;
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio-section {
  background-color: #00192B;
  padding: 5rem 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  height: 450px;
  cursor: pointer;
}

.portfolio-image {
  width: 100%;
  height: 100%;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, transparent -10%, rgba(0, 25, 43, 0.95) 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-category {
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.portfolio-title {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.portfolio-subtitle {
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.portfolio-link {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  background-color: var(--white);
  color: var(--dark-navy);
  border-color: var(--white);
}

.btn-portfolio-outline {
  font-family: var(--body-font);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 0.6rem 2rem;
  font-size: 0.85rem;
  font-weight: 400;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-portfolio-outline:hover {
  background-color: var(--white);
  color: var(--dark-navy);
  border-color: var(--white);
}

/* ========== SERVICES SECTION ========== */
.services-section {
  background-color: #00192B;
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0px;
  padding: 2rem;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: transform 0.4s ease;
  z-index: 1;
}

.service-card:hover .service-card-bg {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 25, 43, 0.75) 0%, rgba(0, 25, 43, 0.9) 100%);
  opacity: 1;
  z-index: 2;
  mix-blend-mode: hard-light;
}

.service-card-content {
  position: relative;
  z-index: 3;
}

.service-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.7rem;
  line-height: 1.3;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.service-check img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-item-content h4 {
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.service-item-content p {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.img-hover-box {
  overflow: hidden;
  /* important */
  border-radius: 16px;
}

.cncpt-img {
  width: 100%;
  transition: transform 0.6s ease;
}

/* Hover zoom */
.img-hover-box:hover .cncpt-img {
  transform: scale(1.1);
}


/* ========== VALUES SECTION ========== */
.values-section {
  background-color: #00192B;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}



.values-container {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-bg-text {
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-size: 8.5rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  text-transform: capitalize;
  letter-spacing: 5px;
}

.values-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.value-item {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 1rem;
}

.value-separator {
  display: inline-flex;
  align-items: center;
  margin: 0 1rem;
}

.value-separator img {
  width: 30px;
  height: 30px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== INDUSTRIES SECTION ========== */
/* #industry-content {
    background: linear-gradient(173deg, rgba(0, 25, 72, 1), rgb(0 25 43));
    padding: 87px 0px;
    padding-bottom: 119px;
} */
.industries-section {
  background-color: #00192B;
  padding: 5rem 0;
  overflow: hidden;
}

.industry-card-wrapper {
  padding: 0 10px;
  /* Gap between slides */
}

.industry-card {
  position: relative;
  height: 500px;
  border-radius: 0px;
  overflow: hidden;
  cursor: pointer;
}

.industry-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.industry-card:hover .industry-card-bg {
  transform: scale(1.1);
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 25, 43, 0) 35%, rgba(0, 25, 43, 0.9) 95%);
  z-index: 1;
}

.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
}

.industry-content h3 {
  font-family: var(--heading-font);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.industry-content p {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.industry-content p span {
  font-weight: 700;
  color: var(--white);
}


#industry-content .slider-arrows {
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff4d;
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

#industry-content .slider-arrows:hover {
  background-color: var(--white);
  color: var(--dark-navy);
  border-color: var(--white);
}

.industries-slider button:hover {
  background-color: var(--white);
  color: var(--dark-navy);
  border-color: var(--white);
}

.industries-slider button {
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff4d;
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;

}

.slider-arrows button:hover {
  background-color: var(--white);
  color: var(--dark-navy);
  border-color: var(--white);
}

/* Slick Dots Customization */
.slick-dots li button:before {
  color: var(--white);
  opacity: 0.25;
}

.slick-dots li.slick-active button:before {
  color: var(--primary-color);
  opacity: 1;
}

button.industry-next.slick-arrow {
  left: 51%;
}

#industry-content .slick-arrow {
  position: absolute;
  bottom: -75px;
  right: 50%;
}

/* ==========arrow button=================== */
.slider-arrows button {
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff4d;
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-arrows button:hover {
  background-color: var(--white);
  color: var(--dark-navy);
  border-color: var(--white);
}




/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  background-color: #00192B;
  padding: 3rem 0;
}

.testimonial-card-wrapper {
  padding: 0 10px;
}

.testimonial-card {
  background-color: #022045;
  border: 1px solid #1C3D5B;
  padding: 3rem 2rem;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary-color);
}

.testimonial-text {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 300;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-author h4 {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-family: var(--body-font);
  font-size: 0.85rem;
  color: #8fa1b3;
  margin: 0;
}

/* Custom Arrows */
.testimonial-arrows button {
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff4d;
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-arrows button:hover {
  background-color: var(--white);
  color: var(--dark-navy);
  border-color: var(--white);
}

/* ========== CTA SECTION ========== */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 25, 43, 0.3) 14%, rgb(0 25 42) 52%, #00192a 100%);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
}

.cta-title {
  font-family: var(--heading-font);
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-title .highlight {
  color: #5FA5D9;
  /* Light blue/teal from image */
}

.cta-description {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.btn-cta-outline {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: transparent;
  border: 1px solid var(--white);
  border-radius: 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-outline:hover {
  background-color: var(--white);
  color: var(--dark-navy);
}

/* right content animation */
.cta-content>* {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

/* ACTIVE STATE */
.cta-content.animate>* {
  opacity: 1;
  transform: translateX(0);
}

/* STAGGER DELAYS */
.cta-content.animate .cta-title {
  transition-delay: 0.1s;
}

.cta-content.animate .cta-description {
  transition-delay: 0.35s;
}

.cta-content.animate .btn-cta-outline {
  transition-delay: 0.55s;
}

/* ========== FOOTER SECTION ========== */
.footer-section {
  background-color: #000F1A;
  padding: 5rem 0 2rem;
  color: var(--white);
}

.footer-desc {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: #8fa1b3;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: #8fa1b3;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.footer-label {
  font-family: var(--body-font);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 2px;
}

.footer-info,
.footer-info a {
  font-family: var(--body-font);
  font-size: 0.95rem;
  /* font-weight: 500; */
  color: var(--white);
  margin: 0;
  text-decoration: none;
}

.footer-info a:hover {
  color: var(--primary-color);
}

.footer-bottom-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--white);
}

.ftr-icon {
  padding: 7px 10px;
  font-size: 21px;
  border: solid 1px white;
  color: white;
  margin-right: 10px;
}
.ftr-icon:hover{
  background: white;
  border: none;
  color:  #00192B;
}

/*========== PRESENCE SECTION======= */

#presence-section {
  padding: 53px 0px;
  padding-top: 63px;
}

.location-list h3 {
  display: flex;
  text-align: center;
  justify-content: center;
  color: white;
}

.countrys {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 38px;
  color: white;
  font-size: 14px;
  margin-top: 14px;
}
/*  */
.presence-map {
  position: relative;
}

.map-pin {
  position: absolute;
  cursor: pointer;
}

/* location text */
.location-label {
  position: absolute;
  bottom: 120%; /* img-nte mukalil */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* hover cheyyumbo show */
.map-pin:hover .location-label {
  opacity: 1;
  visibility: visible;
  bottom: 135%;
}


/*============================ presence map========================== */
.presence-map {
  position: relative;
}

.map-image {
  width: 100%;
  margin-top: 81px;
}

/* pin wrapper */
.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  animation: pinPulse 2s infinite;
}

/* svg image */
.map-pin img {
  width: 22px;
  height: auto;
  display: block;
}

/* positions */
.pin-india {
  top: 53%;
  left: 70%;
}

.pin-oman {
  top: 49%;
  left: 64%;
}

.pin-saudi {
  top: 45%;
  left: 61%;
}

/* animation */
@keyframes pinPulse {
  0% {
    transform: translate(-50%, -100%) scale(1);
  }

  50% {
    transform: translate(-50%, -100%) scale(1.15);
  }

  100% {
    transform: translate(-50%, -100%) scale(1);
  }
}

/* ==========================================ABOUT PAGE=========================================== */
/* Hero Section */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: url('../images/about_image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-overlay {
  text-align: center;
  color: white;
  font-family: 'Unbounded', sans-serif;
  width: 100%;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;

}

.about-subtitle {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 10px 0 0 0;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
}



/* About Section */
.about-section {
  background-color: #0a1929;
  padding: 80px 20px;
}

.about-tag {
  max-width: 900px;
}

.about-label {
  color: #4fc3f7;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.abt-title {
  color: white;
  font-weight: 600;
  font-family: 'Unbounded', sans-serif;
  font-size: 36px;
}

.about-subheading {
  font-size: 22px;
  color: white;
}

.about-content p {
  color: white;
  font-weight: 400;
}

.about1-image {
  width: 100%;
  height: 100%;
  margin-top: 40px;
  object-fit: cover;
}

.about-company {
  color: rgba(97, 162, 208, 1);
}

.hero-aboutcnt {
  color: white;
}

.heroabt-image {
  width: 100%;
  margin-top: 78px;
}

.about-info {
  font-weight: 300;
}



/* ============Approach================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.business-philosophy-section {
  background-image: linear-gradient(rgba(0, 25, 43, 0.85),
      rgba(0, 25, 43, 0.85)),
    url('../images/approach_banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: #ffffff;
}



.business-philosophy-section.animate-in .section-header {
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.2s;
}


.section-top-label {
  color: #4fc3f7;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 25px;
}

.approach-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #d0dbe3;
  margin-bottom: 30px;
  opacity: 0;
}

.business-philosophy-section.animate-in .approach-description {
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.5s;
}

.philosophy-list {
  display: flex;
  gap: 10px;
  opacity: 0;
}

.business-philosophy-section.animate-in .philosophy-list {
  animation: slideInLeft 0.8s ease-out forwards;
}

.business-philosophy-section.animate-in .philosophy-list:nth-child(2) {
  animation-delay: 0.7s;
}

.business-philosophy-section.animate-in .philosophy-list:nth-child(3) {
  animation-delay: 0.85s;
}

.business-philosophy-section.animate-in .philosophy-list:nth-child(4) {
  animation-delay: 1s;
}

.business-philosophy-section.animate-in .philosophy-list:nth-child(5) {
  animation-delay: 1.15s;
}


.philosophy-list:nth-child(2) {
  animation-delay: 0.7s;
}

.philosophy-list:nth-child(3) {
  animation-delay: 0.85s;
}

.philosophy-list:nth-child(4) {
  animation-delay: 1s;
}

.philosophy-list:nth-child(5) {
  animation-delay: 1.15s;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 33px;
  position: relative;
  opacity: 0;
}

.business-philosophy-section.animate-in .stat-box {
  animation: scaleIn 0.8s ease-out forwards;
}

.business-philosophy-section.animate-in .stat-box:nth-child(1) {
  animation-delay: 0.6s;
}

.business-philosophy-section.animate-in .stat-box:nth-child(2) {
  animation-delay: 0.75s;
}

.business-philosophy-section.animate-in .stat-box:nth-child(3) {
  animation-delay: 0.9s;
}

.business-philosophy-section.animate-in .stat-box:nth-child(4) {
  animation-delay: 1.05s;
}

.stat-box-border-right {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-box-border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-content-wrapper {
  display: flex;
  align-items: center;
  /* gap: 30px; */
  justify-content: center;
}

.stat-content-wrapper.justify-content-center {
  justify-content: center;
}


.stat-text-left,
.stat-text-right {
  /* text-align: left; */
  text-align: center;
}

.stat-number {
  font-weight: 700;
  color: white;
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  line-height: 1;
  font-size: 42px;
}

.stat-label {
  color: white;
  margin: 10px 0 0 0;
}


.stat-shape {
  position: relative;
}

/* .shape-badge-large {
  width: 93px;
  height: 93px;
  background: linear-gradient(180deg, rgba(117, 174, 214, 1) 0%, rgb(152 145 255) 100%);
  clip-path: polygon(25% 0%,
      75% 0%,
      100% 25%,
      100% 75%,
      75% 100%,
      25% 100%,
      0% 75%,
      0% 25%);

}

.shape-house {
  width: 93px;
  height: 93px;
  background: linear-gradient(180deg, rgba(117, 174, 214, 1) 0%, rgb(152 145 255) 100%);
  clip-path: polygon(0% 40%, 50% 0%, 100% 40%, 100% 100%, 0% 100%);
} */

/* Responsive Design */
@media (max-width: 768px) {
  .stat-box {
    min-height: 200px;
    padding: 30px;
  }

  .stat-box-border-right {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  /* 
  .shape-badge-large,
  .shape-house {
    width: 100px;
    height: 100px;
  } */

  .stat-content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .stats-box {
    margin-top: 50px;
  }

  .section-heading {
    font-size: 30px;
  }
}

/* ---------------Capabilitys--------------------- */
.capabilities-section {
  background: linear-gradient(135deg, #00192b, #021f3a);
  padding: 100px 0;
  color: #ffffff;
}


.section-tag {
  display: block;
  color: #6ec1e4;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 600;
}

.capability-item {
  padding: 30px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.capability-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}


.capability-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delay */
.capability-item:nth-child(1) {
  transition-delay: 0.1s;
}

.capability-item:nth-child(2) {
  transition-delay: 0.2s;
}

.capability-item:nth-child(3) {
  transition-delay: 0.3s;
}

.capability-item:nth-child(4) {
  transition-delay: 0.4s;
}

.capability-item:nth-child(5) {
  transition-delay: 0.5s;
}

.capability-item:nth-child(6) {
  transition-delay: 0.6s;
}

.capability-item h5 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

.capability-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #cfd8dc;
}

.capability-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.capability-item:nth-child(2n) {
  border-right: none;
}

.capability-bg {
  background: linear-gradient(91deg, rgba(0, 25, 72, 1), rgb(1 28 51));
  padding: 27px 26px;
  /* border-radius: 12px; */
  /* box-shadow: 0px 6px 16px #01182c; */
}

.capability-image {
  overflow: hidden;
  /* border-radius: 12px; */
}

.capability-image img {
  transition: transform 0.6s ease;
}

/* Hover zoom */
.capability-image:hover img {
  transform: scale(1.1);
}

.capability-image img {
  border-radius: 0px;
  object-fit: cover;
  width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 30px;
  }

  .capability-item {
    padding: 25px 20px;
  }
}


/* ===================Project Gallery============= */
#project-gallery {
  padding: 80px 0px;
}

#project-gallery .gallery-img {
  overflow: hidden;
}

#project-gallery .gallery-img img {
  transition: transform 0.5s ease;
}

#project-gallery .gallery-img:hover img {
  transform: scale(1.1);
  /* zoom level */
}



/* ================Why Choose=============== */
.why-choose-icc {
  background-image: url(../images/why_choose.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* IMPORTANT */
  background-position: center right;
  padding: 100px 0;
  color: #ffffff;
  position: relative;
}

/* GRADIENT OVERLAY */
.why-choose-icc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 16, 32, 0.95) 0%, rgba(0, 16, 32, 0.85) 34%, rgba(0, 16, 32, 0.55) 83%, rgba(0, 16, 32, 0.2) 85%, rgba(0, 16, 32, 0) 100%);
  z-index: 1;
}


.why-choose-icc .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #cfd8dc;
  margin-bottom: 30px;
  max-width: 520px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 15px;
}

.feature-list i {
  color: #6ec1e4;
  font-size: 18px;
}

/* IMAGE SIDE */
.image-wrap {
  position: relative;
}

.image-wrap img {
  width: 100%;
  border-radius: 4px;
}

.img-fluid {
  width: 100%;
}

/* left side animation */
/* LEFT CONTENT animation base */
.text-content>* {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}


.feature-list li {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

/* Active state */
.text-content.animate>* {
  opacity: 1;
  transform: translateY(0);
}


.text-content.animate h2 {
  transition-delay: 0.1s;
}

.text-content.animate .section-desc {
  transition-delay: 0.3s;
}

.text-content.animate .feature-list li:nth-child(1) {
  transition-delay: 0.5s;
}

.text-content.animate .feature-list li:nth-child(2) {
  transition-delay: 0.65s;
}

.text-content.animate .feature-list li:nth-child(3) {
  transition-delay: 0.8s;
}

/* List slide effect */
.text-content.animate .feature-list li {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================SERVICE PAGE============================================= */
.service-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: url('../images/service_banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#execution {
  padding: 80px 0px;
}

/*================ Project Design & Execution========== */

.execution-cnt {
  color: white;
}

.srvc-image {
  width: 100%;
}

.srvc-desc {
  font-weight: 300;
  margin-top: 30px;
}

.execution-cnt-2 {
  margin-top: 111px;
  color: white;
}


/* =======service concept ===========*/
#service-concept {
  background-image: url(../images/concepr_bg.png);
  height: 70vh;
}

.concept-content {
  color: white;
}

.concept-content p {
  font-weight: 300;
}

.cncpt-img {
  width: 100%;
}

.left-cnt {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* vertical center */
}

/* Hidden state */
.left-cnt h3,
.left-cnt p,
.left-cnt a {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Visible state */
.left-cnt.animate-text h3,
.left-cnt.animate-text p,
.left-cnt.animate-text a {
  opacity: 1;
  transform: translateY(0);
}

/* Delays for sequence */
.left-cnt.animate-text h3 {
  transition-delay: 0.1s;
}

.left-cnt.animate-text p:nth-of-type(1) {
  transition-delay: 0.3s;
}

.left-cnt.animate-text p:nth-of-type(2) {
  transition-delay: 0.5s;
}

.left-cnt.animate-text a {
  transition-delay: 0.7s;
}

.cncpt-img {
  opacity: 0;
  transform: translateX(60px) scale(0.96);
  transition: all 1s ease;
}


.animate-text+.col-md-5 .cncpt-img,
.animate-img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ===================================================PROJECT PAGE======================================== */
.project-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: url('../images/project_banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/*  =================PROJECTS================= */
.project-tabs {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 87px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 400;
  padding: 8px 18px;
  cursor: pointer;
  opacity: 0.7;
}

.tab-btn.active {
  background: #0b2c52;
  opacity: 1;
  border-radius: 4px;
}

.project-card {
  position: relative;
  overflow: hidden;
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(2 20 55), transparent);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-overlay h5 {
  font-size: 19px;
  margin-bottom: 5px;
}

/* =========OVERLAY TEXT====== */

.project-overlay p {
  font-size: 16px;
  font-weight: 300;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(1, 19, 54, 1),
      rgba(0, 0, 0, 0.2),
      transparent);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-card img {
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}


/* =====PROJECT HIGHLIHT======= */
#Project-Highlights {
  padding: 50px 0px;
}

.section-top-text {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 30px;
}


.slider-wrapper {
  position: relative;
  margin: auto;
}

.slider {
  position: relative;
  overflow: hidden;

}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Overlay */
.slide-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top,
      rgba(3, 23, 38, 0.85),
      rgba(3, 23, 38, 0.4),
      transparent);
}

.slide-overlay h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  background: rgba(0, 39, 78, 0.67);
  /* width: fit-content; */
  padding: 20px 90px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Dots */
.slider-dots {
  margin-top: 15px;
  text-align: center;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  background: #aaa;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}

.slider-dots .dot.active {
  background: #fff;
  width: 18px;
  border-radius: 10px;
}

/* ====================================================CAREER PAGE====================================== */
.project-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: url('../images/career_banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.career-section {
  background: linear-gradient(135deg, #041c2c, #0a2b3d);
  padding: 80px 20px;
}


.career-container {
  padding: 60px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: #022045;
}


.career-container h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 40px;
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}


.career-form input,
.career-form textarea {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 15px;
  outline: none;
}

.career-form input::placeholder,
.career-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}


.file-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
}

.file-input label {
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 15px;
}

/* Textarea */
.career-form textarea {
  margin-top: 30px;
  height: 180px;
  resize: none;
}

/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .career-container {
    padding: 35px 25px;
  }

  .career-container h2 {
    font-size: 24px;
  }
}


/* ===========================================================CONTACT PAGE========================================= */
.contact-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: url('../images/contact_banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-section {
  background: linear-gradient(135deg, #021a2b, #04253c);
  padding: 90px 0;
  color: #fff;
}

/* LEFT */
.contact-form-area h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-form-area p {
  opacity: 0.8;
  margin-bottom: 35px;
}

.custom-input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 16px 18px;
  color: #fff;
  border-radius: 0px;
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.custom-input:focus {
  background: transparent;
  box-shadow: none;
  border-color: #ffffff;
}

.textarea {
  height: 160px;
  resize: none;
  border-radius: 0px;
}

.send-btn {
  background: transparent;
  border: 1px solid #fff;
  padding: 12px 30px;
  color: #fff;
  transition: 0.3s;
}

.send-btn:hover {
  background: #fff;
  color: #021a2b;
}

/* RIGHT */
.contact-info-box {
  background: rgba(2, 32, 69, 1);
  padding: 45px;
}

.contact-info-box h3 {
  margin-bottom: 30px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 25px;
}

.contact-info li i {
  margin-top: 4px;
  font-size: 15px;

}

.social-box {
  margin-top: 35px;
  padding-top: 25px;
  background: rgba(9, 9, 9, 0.29);
  padding: 21px 26px;
}

.social-box h5 {
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 16px;
}


.social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* .social-box i:hover{
  background: #ffffff;
  padding: 10px 10px;
  width: 40px;
  height: 40px;
  color: black;
   transform: scale(1.1);
} */

.social-icons a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

/* Hover effect */
.social-icons a i:hover {
  background-color: #ffffff;
  color: #000000;
  transform: scale(1.1);

}

.mail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-form-area h2 {
    font-size: 24px;
  }

  .contact-info-box {
    padding: 30px;
  }
}

/*============ HOME ABOUT=========== */

.home-about-section.animate-in .stat-box {
  animation: scaleIn 0.8s ease-out forwards;
}

.home-about-section.animate-in .stat-box:nth-child(1) {
  animation-delay: 0.6s;
}

.home-about-section.animate-in .stat-box:nth-child(2) {
  animation-delay: 0.75s;
}

.home-about-section.animate-in .stat-box:nth-child(3) {
  animation-delay: 0.9s;
}

.home-about-section.animate-in .stat-box:nth-child(4) {
  animation-delay: 1.05s;
}

#home-about {
  padding: 115px 0px;
  padding-bottom: 70px;
}

.stats-grid {
  padding: 0rem 6rem;
}

/* =========FIXED ICONS========= */


/* .fixed-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}


.whatsapp-icon,
.call-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}


.whatsapp-icon {
  background-color: #25D366;
}


.call-icon {
  background: linear-gradient(135deg, #4fc3f7, #6f7cff);
}


.whatsapp-icon,
.call-icon {
  position: relative;
  overflow: hidden;
}

.whatsapp-icon::before,
.call-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.whatsapp-icon:hover::before,
.call-icon:hover::before {
  left: 120%;
} */


.fixed-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 9999;
}

.whatsapp-icon,
.call-icon {
  width: 55px;
  height: 55px;
  border-radius: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.whatsapp-icon i,
.call-icon i {
  flex-shrink: 0;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-icon {
  background-color: #25D366;
}

.call-icon {
  background: linear-gradient(135deg, #4fc3f7, #6f7cff);
}

/* Text labels - hidden by default */
.icon-text {
  font-size: 15px;
  font-weight: 600;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  margin-right: 15px;
}


.whatsapp-icon:hover,
.call-icon:hover {
  width: 160px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon:hover {
  background-color: #1faa52;
}

.call-icon:hover {
  background: linear-gradient(135deg, #3db4e8, #5a63f0);
}

/* Show text on hover */
.whatsapp-icon:hover .icon-text,
.call-icon:hover .icon-text {
  opacity: 1;
  max-width: 100px;
}