/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden; 
  display: block !important;
  font-family: 'Poppins', sans-serif;
}


/* Top Navbar */
.top-navbar {
  background-color: #4F5D75;
  color: #BFC0C0;
  padding: 10px 0;
}

.top-navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: right; /* align left */
  align-items: right;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  font-size: 14px;
}

.contact-info span {
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 6px;
  margin-top: 5px;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .top-navbar-container {
    padding: 0 15px;
  }
}

/* ------------------------------------ Navigation (GLASS + aligned) ---------------------------------- */
.main-navbar {
  position: sticky; top: 5px;  /* floats near top, stays on scroll */
  z-index: 2;
  
  /* layout */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  /* container sizing */
  width: min(1200px, 100% - 32px);
  margin: 0 auto;
  padding: 12px 16px;

  /* glass look */
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}

/* Slightly denser on scroll */
.main-navbar.scrolled{
  background: rgba(45, 49, 66, 0.60);
  border-color: rgba(255,255,255,0.35);
}

/* Left cluster: logo + name */
.logo {
  display: flex;
  align-items: center;
  gap: -50px;
  margin-right: auto;     /* pushes menu to right */
  padding-left: 4px;
}
.logo img { 
  height: 40px; 
  width: auto; 
  display: block; 
}
.logo span {
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
  white-space: nowrap;
  letter-spacing: .3px;
}

/* Right cluster: nav links */
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li { position: relative; }

/* links + hover underline */
.nav-links > li > a {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 2px;
  text-decoration: none;
  position: relative;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px; height: 2px; width: 0;
  background: #EF8354;       /* accent underline */
  transition: width .25s ease;
}
.nav-links > li > a:hover::after { width: 100%; }

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(45, 49, 66, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  display: none;
  min-width: 220px;
  padding: 8px;
  z-index: 10;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  color: #e8f3f5;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 8px;
}
.dropdown-menu li a:hover { background: rgba(255,255,255,0.08); }

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu { display: block; }
/* Show dropdown on click (mobile JS toggles .show) */
.dropdown-menu.show { display: block; }

/* Hamburger Menu for Mobile */
.menu-icon {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 900px) {
  /* Show hamburger icon */
  .menu-icon {
    display: block;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    z-index: 11;
  }

  /* Stack layout for small screens */
  .main-navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
	top: 4px;           /* previously it was top:16px in desktop view */
    margin-top: -200px;  /* adjust this value until spacing looks perfect */
  }

  /* Hide nav links initially */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%; /* full width */
    background: rgba(45, 49, 66, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0 0 14px 14px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    display: none;
    padding: 18px 0;
    z-index: 10;
  }

  /* When toggled open */
  .nav-links.show {
    display: flex;
  }

  /* Center text links */
  .nav-links > li > a {
    font-size: 16px;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 10px 0;
  }

  /* Dropdowns inside mobile menu */
  .dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown .dropdown-menu {
    position: static;
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 6px 0;
  }

  .dropdown .dropdown-menu.show {
    display: block;
  }

  /* Adjust logo position */
  .logo {
    gap: 8px;
  }

  .logo img {
    height: 36px;
	padding: 4px 3px;
    border-radius: 8px;
  }

  .logo span {
    font-size: 1.2rem;
  }

  /* Reduce header text padding for smaller view */
  .header-text {
    padding: 80px 16px 60px;
    text-align: center;
  }
}

/*--------------------------------------Header----------------------------------------------*/
/* ensure consistent box sizing */
*,
*::before,
*::after { box-sizing: border-box; }

/* Header Section */
.header-section {
  position: relative;            /* create stacking context for background */
  height: auto;              /* use min-height instead of fixed height:auto/100vh */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  font-family: 'Oswald', sans-serif;
  padding: 60px 20px;           /* reduce big padding, keep responsive */
  background: transparent;      /* background handled by background-image div */
  z-index: 0;
}

/* Header Content */
.header-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 100px 20px;
  text-shadow: 0 6px 20px rgba(0,0,0,.35);
}
@media (max-width: 992px) {
  .header-section { min-height: 65vh; }
  .header-text { padding: 26px 18px; }
}

@media (max-width: 768px) {
  .header-section { min-height: 60vh; padding: 60px 18px; }
  .header-text { padding: 22px 14px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .header-section { min-height: 56vh; padding: 50px 12px; }
  .header-text h1 { font-size: 1.8rem; line-height: 1.3; }
  .header-text p { font-size: 1rem; }
}

/*---------------------------------------------- Background image of header -----------------------------------*/
.background-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.55)),
    url('Images/Home/home.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  filter: brightness(0.6);
  
  /* ✅ Add these lines */
  height: 100%;
  width: 100%;
  bottom: 0;
}

/* Header text fonts */
.header-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
}
.header-text p { 
  font-size:1.2rem; font-weight:400;
  color:#BFC0C0; /* or keep #4F5D75 if you also use A or B */
  text-shadow: 0 5px 8px rgba(0,0,0,.55);
} 

/* Medium Devices (Tablets, 768px and below) */
@media (max-width: 992px) {
  .background-image {
    height: 80vh; /* reduce height slightly */
  }

  .header-text {
    padding: 100px 30px;
    max-width: 90%;
  }

  .header-text h1 {
    font-size: 2.4rem;
  }

  .header-text p {
    font-size: 1.1rem;
  }
}

/* Small Devices (Mobile, 600px and below) */
@media (max-width: 600px) {
  .background-image {
    height: 70vh;
  }

  .header-text {
    padding: 80px 20px;
  }

  .header-text h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .header-text p {
    font-size: 1rem;
  }
}

/* Extra Small Devices (400px and below) */
@media (max-width: 400px) {
  .header-text h1 {
    font-size: 1.6rem;
  }

  .header-text p {
    font-size: 0.9rem;
  }
}

/* ------------------------------------ Header Info Strip -------------------------------------*/
.header-info-strip {
  position: relative;
  margin-top: -80px;
  z-index: 3;
  display: flex;
  justify-content: center;
  
}

.info-box {
  background-color: #4F5D75;
  color: white;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  width: 90%;
  text-align: center;
  flex-wrap: wrap;
}

.info-item {
  flex: 1 1 250px;
  min-width: 200px;
}

.info-item i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #BFC0C0;
}

.info-item h3 {
  margin: 5px 0;
  font-size: 20px;
  font-weight: 600;
}

.info-item p {
  font-size: 14px;
  font-weight: 300;
}

.header-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
}

/* Responsive spacing adjustment */
@media (max-width: 992px) {
  .header-info-strip {
    margin-top: -320px;  /* less overlap for tablets */
  }
}

@media (max-width: 600px) {
  .header-info-strip {
    margin-top: -230px;  /* minimal overlap for mobile */
  }
}
/*------------------------------------------------------------ About Section -------------------------------------------*/
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  gap: 20px;
  height: 400px;
  background-color: #F6FAFF;
  flex-wrap: nowrap;
}

/* Vertical Label */
.about-label {
  flex: 0 0 10%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-weight: 600;
  font-size: 18px;
  color: #2D3142;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Text Area */
.about-content {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .bold-text {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
  color: #000;
}

.about-content p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}
 
.about-button {
  display: inline-block;
  margin-top: 20px;
  padding: 20px 30px;
  background-color: #EF8354;
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
  text-align: left; /* ensures text is left-aligned */
  align-self: flex-start; /* aligns button to the left within flexbox */
}

.about-button:hover {
  background-color: #027b88;
}

/* Image Area */
.about-image {
  flex: 0 0 40%;
  height: 100%;
  max-height: 400px;
  overflow: hidden;
 /* display: flex;
  align-items: center;
  justify-content: center;*/
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .about-section {
    flex-direction: column;
	flex-wrap: wrap;
    height: auto;
  }

  .about-label {
    writing-mode: horizontal-tb;
    transform: rotate(0);
    justify-content: flex-start;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .about-content,
  .about-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
/*---------------------------------------Solutions--------------------------------------------*/
.advantage-layout {
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-heading {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
  color: #2D3142;
}
.dualcolor {
	color: #EF8354;
}
.advantage-grid-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}


/* Shared card styling */
.adv-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.adv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: brightness(.8) contrast(1.45);
}

.adv-card:hover img {
  transform: scale(1.05);
}

.hover-caption {
  position: absolute;
  bottom: 0;
  background: rgba(45, 49, 66, 0.85);
  color: white;
  width: 100%;
  padding: 10px 15px;
  text-align: left;
  font-size: 15px;
  transition: opacity 0.5s ease;
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(45, 49, 66, 0.8);
  width: 100%;
  height: 100%;
  color: white;
  opacity: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.hover-overlay h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.hover-overlay ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.adv-card:hover .hover-overlay {
  opacity: 1;
}

.adv-card:hover .hover-caption {
  opacity: 0;
}

/* Grid Placement */
.card1 {
  width: 750px;
  height: 450px;
}

.card2 {
  width: 500px;
  height: 450px;
}

.card3 {
  width: 500px;
  height: 450px;
}

.card4 {
  width: 750px;
  height: 450px;
}

.section-subtext {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  text-align: center;
}


/* ✅ Tablet View: stack smaller cards under large ones */
@media (max-width: 1024px) {
  .card1, .card4 {
    width: 100%; /* Full width on tablets */
  }

  .card2, .card3 {
    width: 48%; /* 2 in a row */
  }

  .advantage-grid-custom {
    justify-content: space-between;
  }
}

/* ✅ Mobile View: stack all cards vertically */
@media (max-width: 768px) {
  .card1, .card2, .card3, .card4 {
    width: 100%;
  }

  .advantage-grid-custom {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}



/*----------------------------------scroll bar------------------------------*/
.logo-carousel-section {
  width: 100%;
  padding: 30px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.carousel-heading {
  font-size: 32px;
  margin-bottom: 35px;
  font-weight: bold;
  color: #2D3142;
}

.logo-carousel {
  width: 100%;
  overflow: hidden;       /* Hides scroll bar */
  position: relative;
}

.logo-track {
  display: flex;
  gap: 50px;
  animation: scroll-left 20s linear infinite;
  width: max-content;
}

.logo-track img {
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Animation: scroll from right to left */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track {
    gap: 30px;
  }

  .logo-track img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .logo-track img {
    height: 50px;
  }
}

/*-------------------------------------grid section-----------------------------------*/
:root {
  --max-w: 1200px;
  --sec-min-h: 860px;
  --grid-gap: 24px;
  --card-min-h: 200px;
  --card-pad: 22px;
  --radius: 16px;

  --ink: #ffffff;
  --text-dim: #cfe9f4;
  --title-ink: #ffffff;

  --accent1: #22d3ee;
  --accent2: #0ea5e9;
  --brand-deep: #2D3142;
}

/* =========================
   SOLUTIONS SECTION
   ========================= */
.solutions {
  position: relative;
  isolation: isolate;
  min-height: var(--sec-min-h);
  padding: clamp(56px, 7vw, 90px) 16px;
  color: var(--ink);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Oswald', sans-serif;

  background: center center / cover no-repeat;
  background-image: url('Images/Home/web2.png');
  animation: bgZoom 5s ease-in-out infinite alternate;
}

/* ✅ Dark overlay layer */
.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
 /* darker overlay: deep semi-opaque black gradient for even tonality */
  background: linear-gradient(180deg, rgba(0,0,0,0.60), rgba(0,0,0,0.48));
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 0;
}

/* Container */
.solutions__container {
  position: relative;
  z-index: 1; /* stays above overlay */
  width: min(var(--max-w), 100%);
}

/* Title & Subtitle */
.solutions__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  margin: 0 0 6px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.solutions__subtitle {
  margin: 0 auto clamp(28px, 4vw, 44px);
  max-width: 860px;
  font-size: clamp(.98rem, 1.3vw, 1.05rem);
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* GRID */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  width: min(var(--max-w), 100%);
  margin-inline: auto;
}

/* CARD */
.feature-card {
  position: relative;
  color: #fff;
  border-radius: var(--radius);
  min-height: var(--card-min-h);
  padding: 16px;
  text-align: left;
   backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
    /* deeper, cooler card background */
  background: rgba(0, 0, 0, 0.36);
  /* subtler border so cards read darker on the dark overlay */
  border: 1px solid rgba(255, 255, 255, 0.06);
  /* slightly stronger shadow for separation */
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);

  /* reveal animation base */
  opacity: 0;
  transform: translateY(22px);
  transition: transform .7s cubic-bezier(.19,1,.22,1),
              opacity .7s ease;
  transition-delay: calc(var(--i) * 70ms);
}

/* Left accent bar */
.feature-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  background: linear-gradient(180deg, var(--accent1), var(--accent2));
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
/* Icon */
.feature-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #BFC0C0;
  margin-bottom: 12px;
}
.feature-icon i { font-size: 18px; }

.feature-card h3 {
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  margin: 0 0 6px;
  color: #B9D9EB;
}
.feature-card p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.45;
  color: #d5e8ee;
}

/* In-view animation */
.feature-card.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hover lift */
@media (hover:hover) {
  .feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  }
}

/* Zoom background animation 
@keyframes bgZoom {
  0%   { background-size: 120%; }
  100% { background-size: 100%; }
}*/
/* ✅ Ensure image stays responsive and maintains aspect ratio */
@keyframes bgZoom {
  0%   { background-size: 110%; background-position: center center; }
  100% { background-size: 100%; background-position: center center; }
}
/* Responsive */
@media (max-width: 1100px) {
  :root { --sec-min-h: 920px; }
  .solutions__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  :root { --sec-min-h: 980px; }
  .solutions__grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 200px; }
}
@media (max-width: 768px) {
  .solutions {
    background-position: top center;
    background-size: cover;
    animation: none; /* stops zoom for small screens for smoother load */
  }
}
/*----------------------------Logo section------------------------*/

/* ===== Logo / Clients Section ===== */
.logo-section{
  background:#2D3142; /* dark, clean */
  color:#e8ecef;
}
.logo-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:88px 24px;  /* generous vertical rhythm like the reference */
}

/* Top row layout */
.logo-header{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr; /* headline left, copy right */
  gap:48px;
  align-items:start;
  margin-bottom:72px;
}
.logo-title{
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.15;
  font-weight:700;
  letter-spacing:-0.01em;
  margin:0;
}
.logo-title span{
  color:#EF8354; /* Enliteck highlight green – adjust if needed */
}
.logo-copy{
  font-size: clamp(16px, 1.7vw, 18px);
  line-height:1.7;
  opacity:0.9;
  margin:0;
}

/* Logo grid */
.logo-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr); /* even spacing like the sample */
  gap:56px 64px; /* row gap / column gap tuned to the reference feel */
  list-style:none;
  padding:0;
  margin:0;
}
.logo-grid li{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:64px; /* consistent vertical blocks for alignment */
}
.logo-grid img{
  max-width: 140px;   /* keeps logos visually similar in width */
  max-height: 32px;   /* consistent height baseline like the sample */
  width:auto;
  height:auto;
  object-fit:contain;
  filter: brightness(0) invert(1); /* makes white mono logos on dark bg */
  opacity:0.95;
  transition:opacity .2s ease, transform .2s ease;
}
.logo-grid img:hover{
  opacity:1;
  transform:translateY(-2px);
}

/* ===== Responsiveness ===== */
@media (max-width: 1100px){
  .logo-grid{ grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 900px){
  .logo-header{
    grid-template-columns: 1fr; /* stack title & copy */
    gap:24px;
    margin-bottom:56px;
  }
  .logo-grid{ grid-template-columns: repeat(4, 1fr); gap:40px 48px; }
}
@media (max-width: 640px){
  .logo-wrap{ padding:64px 20px; }
  .logo-grid{ grid-template-columns: repeat(3, 1fr); gap:28px 32px; }
  .logo-grid img{ max-width:120px; max-height:30px; }
}
@media (max-width: 420px){
  .logo-grid{ grid-template-columns: repeat(2, 1fr); }
}
/*----------------------------------------choose us--------------------------------*/
.enliteck-advantage {
   position: relative;
  min-height: 90vh;
  background: #ffffff;              /* white background */
  color: #0a192f;                   /* dark text for contrast */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.advantage-image {
  width: 950px;               /* adjust as needed */
  max-width: 100%;
  margin-bottom: 25px;
  display: block;
  border-radius: 50%;         /* optional – gives circular shape */
  object-fit: cover;
  animation: fadeInDrop 1.2s ease-out;
}

/* Entry animation for image */
@keyframes fadeInDrop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Center Title */
.advantage-center {
 display: flex;
  flex-direction: column;   /* 👈 stacks circles vertically */
  align-items: center;      /* centers horizontally */
  justify-content: center;
  gap: 2px;                /* space between circles */
  margin-top: 0px;
  margin-bottom: 20px;
}
.advantage-circles {
  display: flex;
  flex-wrap: wrap;      /* circles will wrap automatically */
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}
.advantage-center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2D3142;  
}

.advantage-center h2 span {
  color: #EF8354; 
}

.advantage-center p {
  font-size: 1rem;
  color: #444;
  margin-top: 1px;
}

.floating-circle {
  position: static;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(145deg, #4F5D75, #EF8354); /* Enliteck gradient */
  box-shadow: 0 0 35px rgba(0, 142, 151, 0.45), 
              0 0 60px rgba(12, 35, 64, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 20px;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  transform: translateY(-120px);
  opacity: 0;
}
.floating-circle.visible {
  animation: dropBounce 1.4s ease-out forwards;
  opacity: 1;
}

.floating-circle i {
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.floating-circle span {
  font-weight: 600;
  font-size: 1rem;
}

.floating-circle p {
  display: none;
  font-size: 0.8rem;
  margin-top: 6px;
  color: #e8f4ff;
}

/* Hover Expansion */
.floating-circle:hover {
  width: 160px;
  height: 160px;
  transform: scale(1.08);
  background: linear-gradient(145deg, #367588, #4F5D75);
  box-shadow: 0 0 35px rgba(79, 93, 117, 0.45);
}

.floating-circle:hover p {
  display: block;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}
/* Optional: smaller bounce for floating effect */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes dropBounce {
  0% {
    transform: translateY(-120px);
    opacity: 0;
  }
  60% {
    transform: translateY(25px);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Add delay to each circle for staggered entry */
.floating-circle:nth-child(2).visible { animation-delay: 0.2s; }
.floating-circle:nth-child(3).visible { animation-delay: 0.4s; }
.floating-circle:nth-child(4).visible { animation-delay: 0.6s; }
.floating-circle:nth-child(5).visible { animation-delay: 0.8s; }
.floating-circle:nth-child(6).visible { animation-delay: 1s; }
.floating-circle:nth-child(7).visible { animation-delay: 1.2s; }
/* Circle Positions */
.speed { top: 12%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.trust { top: 38%; left: 12%; animation-delay: 1s; }
.support { top: 38%; right: 12%; animation-delay: 2s; }
.innovation { bottom: 15%; left: 25%; animation-delay: 3s; }
.reach { bottom: 15%; right: 25%; animation-delay: 4s; }
.security { top: 70%; left: 50%; transform: translateX(-50%); animation-delay: 5s; }

/* Responsive */
@media (max-width: 900px) {
  .floating-circle {
    position: static;
    margin: 15px auto;
    animation: none;
	margin: 15px auto;
    width: 120px;
    height: 120px;
  }

  .enliteck-advantage {
    flex-direction: column;
    height: auto;
    padding: 80px 20px;
  }

  .advantage-center {
    margin-bottom: 40px;
  }
  .advantage-center h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------FAQ------------------------------------------*/
  :root{
    --bg:#f6fbff;
    --card:#ffffff;
    --text:#2D3142;
    --muted:#6B7280;
    --accent:#EF8354;
    --divider:#E5E7EB;
    --shadow:0 10px 30px rgba(0,0,0,.06);
    --radius:18px;
  }

  body{
    margin:0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.6;
  }

  .faq-section{
    padding: clamp(40px, 6vw, 90px) 16px;
  }

  .faq-wrap{
    max-width: 980px;
    margin: 0 auto;
  }

  .faq-title{
    text-align:center;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 700;
    margin: 0 0 24px;
  }

  .faq-card{
    background:var(--card);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding: clamp(8px, 1.2vw, 14px);
  }

  .faq-item{
    border-top:1px dashed var(--divider);
  }
  .faq-item:first-child{ border-top:0; }

  .faq-question{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:none;
    border:0;
    padding: 18px clamp(12px, 2vw, 20px);
    text-align:left;
    cursor:pointer;
    color:var(--text);
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight:600;
  }

  .q-text{ flex:1; padding-right:12px; }

  /* Plus icon without circle */
  .q-toggle{
    font-size: 22px;
    color: var(--accent);
    transition: transform 0.3s ease;
    display: inline-block;
  }

  /* Rotate when open */
  .faq-question[aria-expanded="true"] .q-toggle{
    transform: rotate(45deg);
  }

  .faq-answer{
    padding: 0 clamp(12px, 2vw, 20px) 18px;
    color:var(--muted);
    font-size: clamp(14px, 2vw, 17px);
  }
  .faq-answer[hidden]{ display:none; }

  @media (max-width:520px){
    .faq-question{ padding:14px 12px; }
    .faq-answer{ padding:0 12px 14px; }
  }
  
/*-----------------------------------footer--------------------------------*/
.footer {
  background-color: #2D3142;
  color: #BFC0C0;
  padding: 60px 10%;

}

.footer-container {
  display: grid;
  grid-template-columns: 35% 18% 18% 20%;
  gap: 40px;
  align-items: flex-start;
}

.footer-col h3 {
  color: #FFFFFF;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 2px;
  background-color: #EF8354;
}

.footer-logo {
  width: 90px;
  height: 50px;
  background-color: #BFC0C0;
  border-radius: 10px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
  color: #BFC0C0;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #EF8354;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-socials a {
  color: #FFFFFF;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #EF8354;
}

.quote-btn {
  background-color: #EF8354;
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.quote-btn:hover {
  background-color: #d96b3c;
}

.footer-bottom {
  border-top: 1px solid #4F5D75;
  margin-top: 30px;
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  color: #BFC0C0;
  margin-bottom: 0;
  padding-bottom: 0px;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    padding: 40px 5%;
  }

  .footer-bottom {
    font-size: 13px;
  }
}
