

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
}


/* HEADER */
.header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LOGO */
.logo img {
  height: 80px;
}

/* NAV MENU */
.nav ul {
    display: flex;
    align-items: center;
    gap: 40px; /* distance between menu items */
}
.nav ul li {
    display: inline-flex;
    position: relative; /* dropdown ke liye zaroori */
    white-space: nowrap;
}

/* Remove default visited styles completely */



.nav a,
.nav a:link,
.nav a:visited {
  color: #000;
  text-decoration: none;
}

.nav a:hover {
  color: #0066ff;
}
.header-btn a {
  color: #fff;
  background: #0066ff;
}

.header-btn a:hover {
  background: #004bcc;
}
.footer a {
  color: #999;
}

.footer a:hover {
  color: #fff;
}


/* Hover style */
.nav ul li a:hover {
    color: #0066ff !important;
    text-decoration: none !important;
}

/* DROPDOWN MENU (hidden by default) */
.dropdown {
    position: relative !important;
    display: inline-block !important;
}
.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;

    background: #fff !important;
    padding: 20px 30px !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;

    width: 350px !important;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;

    pointer-events: none;
    z-index: 99999 !important;

    display: block !important;
}
.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    pointer-events: auto !important;
}

.dropdown-menu li {
    list-style: none !important;
    margin-bottom: 15px !important;
    display: block !important;
}

.dropdown-menu li:last-child {
    margin-bottom: 0 !important;
}

.dropdown-menu a {
    text-decoration: none !important;
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

/* HEADER BUTTON */
.header-btn {
   background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.header-btn:hover {
  background: #0567e7;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: #222;
    line-height: 1.6;
    background: #f7f9fc;
}

/* GLOBAL CONTAINER */
.container {
    width: min(1150px, 94%);
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background: #0b77e6;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.brand {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.main-nav a {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
    font-weight: 500;
}
.btn-primary {
    background: #fff;
    color: #0b77e6;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

/* Slide wrapper */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease, transform 1.4s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1.04);
}

/* Background image */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Center text */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: white;
    z-index: 10;
    padding: 0 20px;
}

.eyebrow {
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 14px;
    font-weight: 800;
}
.hero-content h1 span {
    display: block;
}

.lead {
    margin-bottom: 20px;
    font-size: 18px;
}

/* CTA BUTTON */
.circle-arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* circular icon */
.arrow-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

/* hover animation */
.circle-arrow-btn:hover .arrow-circle {
    background: rgba(255,255,255,0.32);
    transform: translateX(4px);
}
.circle-arrow-btn svg {
    transition: 0.35s ease;
}
.circle-arrow-btn:hover svg {
    transform: translateX(3px);
}

/* FADE-IN TEXT */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.7s ease;
}
.hero-slide.active .fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* ================= FEATURES ROW ================= */
/* ================= CLEAN & FINAL FEATURE ROW ================= */

.features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
    margin-top: -70px;
    margin-bottom: 60px;
    padding: 0 30px;
}

/* ==== FEATURE CARD ==== */
.feature-card {
    width: 300px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #e6eff6;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 70, 140, 0.06);
    transition: .28s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 55px rgba(0, 70, 140, 0.12);
}

/* ==== NUMBER BUBBLE ==== */
.feature-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d9edff 0%, #cbe4ff 100%);
    color: #0a6cd0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 18px; /* GAP FIXED — bubble to heading */
}

/* ==== HEADINGS & TEXT ==== */
.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #10375c;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #3c4b5a;
}

/* ==== COLOR SHAPES ==== */
.feature-card::before,
.feature-card::after {
    content: "";
    position: absolute;
    border-radius: 60% 40% 70% 30%;
    filter: blur(10px);
    z-index: 1;
}

.feature-card::before {
    top: -40px;
    right: -40px;
    width: 150px;
    height: 130px;
}

.feature-card::after {
    bottom: -45px;
    left: -50px;
    width: 170px;
    height: 130px;
}

/* INDIVIDUAL CARD COLORS */
.feature-card:nth-child(1)::before,
.feature-card:nth-child(1)::after { background: rgba(133, 192, 255, .25); }
.feature-card:nth-child(1) .feature-num { background:#e0f3ff; color:#0a71da; }

.feature-card:nth-child(2)::before,
.feature-card:nth-child(2)::after { background: rgba(120, 175, 255, .25); }
.feature-card:nth-child(2) .feature-num { background:#dfecff; color:#0a6de0; }

.feature-card:nth-child(3)::before,
.feature-card:nth-child(3)::after { background: rgba(255, 180, 155, .30); }
.feature-card:nth-child(3) .feature-num { background:#ffe7df; color:#ff6f4e; }

.feature-card:nth-child(4)::before,
.feature-card:nth-child(4)::after { background: rgba(185, 215, 255, .28); }
.feature-card:nth-child(4) .feature-num { background:#e4efff; color:#3177ff; }

/* Keep content above background shapes */
.feature-card > * {
    position: relative;
    z-index: 5;
}
/* HOVER BLUE OVERLAY */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card .hover-blue {
    position: absolute;
    inset: 0;
    background: #007bff;
    opacity: 0;
    transition: .3s ease;
    z-index: 3;
}

.feature-card:hover .hover-blue {
    opacity: .9;
}

/* HOVER KE BAAD TEXT WHITE */
.feature-card.hover-active h3,
.feature-card.hover-active p,
.feature-card.hover-active .feature-num {
    color: #fff !important;
}


/* ==== RESPONSIVE ==== */
@media (max-width: 1050px) {
    .features { flex-wrap: wrap; gap: 25px; margin-top: -40px; }
    .feature-card { width: calc(50% - 20px); }
}

@media (max-width: 650px) {
    .feature-card { width: 100%; }
}











/* ================= SERVICES ================= */

.services {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.service-card {
    position: relative;
    background: #fff;
    padding: 40px 24px 24px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.07);
    transform: translateY(20px);
    opacity: 0;
    transition: 0.7s ease;
}

.service-card.revealed {
    transform: translateY(0);
    opacity: 1;
}

.service-media {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.media-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(11,119,230,0.15);
    position: absolute;
    top: 0;
    left: 0;
}

.service-media img {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    object-fit: cover;
    position: relative;
    border: 6px solid #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.service-body {
    margin-top: 60px;
}

.service-body h4 {
    font-size: 18px;
    color: #0b77e6;
    margin-bottom: 10px;
}

.service-body p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* ================= FOOTER ================= */

.site-footer {
    background: #0f1724;
    color: #fff;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 220px 180px;
    gap: 18px;
}

.copyright {
    background: #0b1726;
    color: rgba(255,255,255,0.7);
    padding: 14px;
    text-align: center;
    font-size: 13px;
    margin-top: 18px;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 850px) {
    .hero-content h1 { font-size: 34px; }
    .features { margin-top: -40px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ===== OVERRIDE: Feature cards (final) ===== */
.features {
  position: relative;      /* ensure stacking context */
  z-index: 40;             /* stays above hero overlay */
  display: flex;
  gap: 36px;               /* bigger gap */
  justify-content: center;
  flex-wrap: wrap;         /* allow wrap on very small screens */
  margin-top: -70px;       /* overlap hero */
  margin-bottom: 40px;
  padding: 0 20px;
}

/* ensure container width doesn't force smaller cards */
.features.container { 
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* card sizing & look */
.feature-card {
  width: 300px !important;         /* force wider */
  min-width: 260px;
  box-sizing: border-box;
  padding: 30px !important;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(15,23,36,0.08);
  transition: transform .32s ease, box-shadow .32s ease;
  position: relative;
  z-index: 45;                      /* each card above hero */
}

/* hover lift */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(15,23,36,0.12);
}

/* number bubble center */
.feature-num {
  margin: 0 auto 14px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eaf6ff;
  color:#0b77e6;
  font-weight:700;
}

/* small screens: keep cards responsive */
@media (max-width: 980px) {
  .features {
    gap: 22px;
    margin-top: -40px;
  }
  .feature-card {
    width: calc(50% - 22px);
  }
}
@media (max-width: 620px) {
  .feature-card { width: 100%; }
  .features { margin-top: -20px; gap: 14px; padding: 0 12px; }
}
/* ===== FINAL FIX FOR FEATURE CARDS (HMBPO STYLE) ===== */

.features {
    width: 100%;
    max-width: 1400px !important;   /* allow full row */
    margin: -70px auto 50px !important;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap !important;   /* FORCE single row */
    gap: 36px !important;
    position: relative;
    z-index: 50; /* ensure above hero */
}

.feature-card {
    width: 300px !important;        /* wider card */
    flex-shrink: 0 !important;      /* prevent wrapping */
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.09);
    transition: .25s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 65px rgba(0,0,0,0.12);
}

/* Fix number bubble */
.feature-num {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    background:#eaf5ff;
    color:#0b77e6;
}

/* MOBILE — make them stack only on small screens */
@media (max-width: 900px) {
    .features {
        flex-wrap: wrap !important;
        justify-content: center;
        gap: 22px !important;
        margin-top: -20px !important;
        padding: 0 20px;
    }
    .feature-card {
        width: calc(50% - 20px) !important;
    }
}

@media (max-width: 600px) {
    .feature-card {
        width: 100% !important;
    }
}

/* Move number bubble to left side */
.feature-card {
    position: relative;
    padding-left: 70px !important; /* space for number bubble */
}

.feature-num {
    position: absolute;
    left: 25px;
    top: 30px;
    margin: 0;
}
/* ===== PREMIUM FEATURE CARD DESIGN (Reference Style) ===== */

.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
    border: 1px solid #e6eff6;
    border-radius: 20px !important;
    padding: 35px 30px 35px 75px !important;
    box-shadow: 0 20px 35px rgba(0, 70, 140, 0.06) !important;
    transition: 0.25s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 55px rgba(0, 70, 140, 0.12) !important;
}

/* Number bubble premium look */
.feature-num {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
    background: linear-gradient(135deg, #d9edff 0%, #cbe4ff 100%);
    color: #0a6cd0 !important;
    font-weight: 700;
}

/* Title and text styling */
.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #10375c;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #3c4b5a;
}


/* ================== ADVANTAGES SECTION ================== */

.advantages {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.adv-img img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* EYEBROW */
.adv-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0b77e6;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

/* MAIN TITLE */
.adv-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f1724;
}

/* PARAGRAPH */
.adv-text {
    font-size: 15px;
    color: #3c4b5a;
    line-height: 1.65;
    margin-bottom: 28px;
}

/* LIST */
.adv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.adv-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #10375c;
    margin-bottom: 14px;
    line-height: 1.55;
}

/* CUSTOM CHECK ICON */
.check-icon {
    width: 25px;
    height: 2px;
    background: #0b77e6;
    color: #000;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}
.feature-box {
  background: #e8f7ff;
  border-radius: 18px;
  padding: 45px 20px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0,0,0,0.04);
  position: relative;   /* important */
}

/* White circle */
.feature-box .icon-circle {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 30px;      /* adjust ↑↓ */
  left: 30px;     /* move more left/right */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* icon inside */
.feature-box img {
  width: 45px;
  height: 45px;
}


/* RESPONSIVE */
@media (max-width: 950px) {
    .advantages-wrapper {
        grid-template-columns: 1fr;
    }
    .adv-img img {
        max-width: 600px;
        margin: 0 auto;
        display: block;
    }
}

/* WHAT WE BRING SECTION */
.what-we-bring {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}



.what-we-bring .sub-heading {
    color: #0b77e6;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 22px;
}

.what-we-bring .main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.what-we-bring .top-desc {
    color: #444;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.bring-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.bring-box {
    flex: 1;
    padding: 10px;
}

.bring-box {
    text-align: center;
}

.bring-box img {
    width: 70px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}


.bring-box h4 {
    font-size: 22px;
    color: #0b77e6;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.4;
}

.bring-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .bring-row {
        flex-direction: column;
        text-align: center;
    }

    .bring-box {
        margin-bottom: 40px;
    }
}

.feature-icon {
    width: 85px;   /* size yahan change kar sakti ho */
    height: auto;
    display: block;
    margin: 0 auto 10px; /* center + spacing */
}
.my-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;  /* image ko squeeze nhi karega */
}
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 0 40px;
}

.section-tag {
  color: #2d62ff;
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  max-width: 550px;
}

.about-btn {
  margin-top: 15px;
  padding: 12px 28px;
  background: #000;
  color: #fff;
  border-radius: 40px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #333;
}

/* RIGHT SIDE 2x2 GRID */
.about-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 500px;
}

.about-box {
  background: #f7faff;
  padding: 40px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.07);
  transition: 0.3s;
}

.about-box:hover {
  transform: translateY(-5px);
}

/* Box colors */
.box1 { background: #e8f7ff; }
.box2 { background: #e8efff; }
.box3 { background: #ffeceb; }
.box4 { background: #fff3e3; }

.icon {
  width: 60px;
  margin-bottom: 15px;
}

.about-box h3 {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: left;
  }

  .about-right {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-right {
    grid-template-columns: 1fr;
  }
}


/* Section Heading */
.services-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #0047bb;
  margin-bottom: 60px;
}

/* 2x2 Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD BOX DESIGN */
.service-card {
  position: relative;
  background: #ffffff;
  padding: 40px 40px;
  border-radius: 22px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* SMALL LEFT CIRCLE NUMBER */
.icon-number {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0090ff, #005cdd);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* TEXT */
.text-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.text-content p {
  color: #444;
  line-height: 1.6;
  font-size: 16px;
}

/* BIG FADED NUMBER ON RIGHT */
.big-number {
  position: absolute;
  right: 30px;
  bottom: 10px;
  font-size: 95px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.about-features-section {
    padding: 80px 0;
    background: #f7f9fc;
    text-align: center;
}

.about-features-heading {
    font-size: 38px;
    font-weight: 700;
    color: #0056d6;
    margin-bottom: 50px;
    line-height: 1.3;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    width: 80%;
    margin: auto;
}

.about-feature-card {
    position: relative;
    background: #ffffff;
    padding: 35px 30px;
    padding-bottom: 70px; /* extra space for number */
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    min-height: 160px;
}

.about-feature-icon {
    min-width: 55px;
    min-height: 55px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0588ff, #0051ff);
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0; /* Don't shrink EVER */
    box-shadow: 0 5px 15px rgba(0, 98, 255, 0.3);
}


.about-feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-feature-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.about-card-number {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 80px;
    color: rgba(0,0,0,0.05);
    font-weight: 700;
}

@media (max-width: 900px) {
    .about-features-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }
}


.customer-services {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 20px;
    color: #444;
    margin-bottom: 50px;
}

.service-box {
    display: flex;
    align-items: center;   /* ← THIS makes icon perfectly centered */
    gap: 80px;
    margin-top: 30px;
    justify-content: center;
}


.service-icon img {
    width: 150px;
    height: auto;
}

.service-content {
    max-width: 650px;
    text-align: left;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0052CC;    /* same blue as screenshot */
    margin-bottom: 18px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}




.main-footer {
    background: #0658c0;
    color: #fff;
    padding: 60px 0 30px;
    background-image: url('images/footer-wave.png'); /* Optional wave background */
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0658c0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
}

.footer-gallery {
    width: 250px;
    border-radius: 5px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 15px;
    color: #dcdcdc;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 9999;
}

.wa-text {
    background: #fff;
    color: #000;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    font-weight: 500;
}

.wa-icon {
    position: relative;
}

.wa-icon img {
    width: 55px;
    height: 55px;
}

.wa-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: red;
    color: white;
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


