/* Global */
body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  margin: 0;
  padding-top: 0px;
}

/* cursor css start */

/* Cursor Circle */
/* .cursor {
  position: fixed;
  width: 25px;
  height: 25px;
  border: 2px solid #37acad;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
  z-index: 9999;               
} */

/* Click Animation */
/* .cursor.click {
  transform: translate(-50%, -50%) scale(1.8);
  background: rgba(0, 255, 255, 0.2);
} */

/* cursor css end */

/* ------------------------Start Header----------------------- */

/* Smooth hover */
.dropdown-item {
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.dropdown-item:hover {
  color: #177795;
  background: none;
  transform: translateX(5px);
}

/* Mobile Fix */

/* ------------------------End Header----------------------- */

.btn-cta {
  background: linear-gradient(90deg, #04c46a, #08a9ff);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.55rem 1.5rem;
}

.btn-cta:hover {
  opacity: 0.9;
  color: #fff;
}

/* Hero section */
.hero-section {
  min-height: calc(100vh - 72px);
  padding: 4rem 0 3rem;
  display: flex;
  align-items: center;
  position: relative;

  /* BACKGROUND BANNER (full visible, no crop) */
  background: url("../assets/banner.webp");
  background-size: contain;
  /* poora image dikhayega, crop nahi karega */
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #020614;
  /* jahan image nahi hai, wahan ye color dikhega */
}

.hero-badge {
  width: 100%;
}

.hero-badge-img {
  width: 100%;
  max-width: 350px;
  /* desktop limit */
  height: auto;
  display: block;
  margin-left: 10px;
}

/* Tablet */
@media (max-width: 992px) {
  .hero-badge-img {
    max-width: 280px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-badge {
    text-align: center;
  }

  .hero-badge-img {
    max-width: 220px;
    margin: 0 auto;
    /* center on mobile */
  }
  @keyframes lineGrow {
    to {
      width: 120px;
      opacity: 1;
    }
  }
}

.hero-title {
  font-size: clamp(2.2rem, 3.1vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero-title .accent {
  color: #ffffff;
}

.below-line {
  width: 100%;
  max-width: 26rem;
  /* desktop limit */
  height: 4px;
  /* motai */
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  margin: 16px 0;
}

.hero-sub {
  margin-top: 1.1rem;
  color: #cbd5f5;
  max-width: 32rem;
  font-size: 0.98rem;
}

.hero-cta-wrap {
  margin-top: 2rem;
}

/* .hero-cta-note {
      font-size: .78rem;
      color: #9ca3af;
      margin-top: .5rem;
  } */

.hero-fade-up {
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 1s ease forwards;
}

/* Line animation */
.hero-line-anim {
  width: 0;
  height: 4px; /* adjust */
  background: #111827; /* your color */
  border-radius: 10px;
  opacity: 0;
  animation: lineGrow 1s ease forwards;
}

/* Delays */
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
  background: linear-gradient(90deg, #04c46a, #08a9ff);
}
.delay-4 {
  animation-delay: 0.8s;
}
.delay-5 {
  animation-delay: 1s;
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  to {
    width: 180px; /* line width */
    opacity: 1;
  }
}

/* Right side fake server rack look */
.hero-visual {
  position: relative;
  max-width: 420px;
  margin: auto;
}

.hero-card {
  position: relative;
  padding: 1.3rem 1.5rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top, #1f2937 0, #020617 60%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.hero-server-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-server-col {
  height: 180px;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.95);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(31, 41, 55, 0.7);
}

.hero-server-col::before {
  content: "";
  position: absolute;
  inset: 10px;
  background:
    linear-gradient(
      180deg,
      rgba(34, 197, 94, 0.4),
      transparent 45%,
      rgba(59, 130, 246, 0.5)
    ),
    repeating-linear-gradient(
      180deg,
      rgba(15, 23, 42, 0) 0,
      rgba(15, 23, 42, 0) 14px,
      rgba(15, 23, 42, 1) 16px
    );
  opacity: 0.85;
  mix-blend-mode: screen;
}

.hero-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, #22c55e44 0, transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-avatar {
  position: absolute;
  bottom: -6px;
  right: -10px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f2937, #020617);
  border: 2px solid rgba(148, 163, 184, 0.7);
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.85);
}

.hero-avatar-inner {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    #f9fafb 0,
    #d1d5db 30%,
    #9ca3af 60%,
    #4b5563 100%
  );
  /* yahan real image use karna ho to background-image se replace kar sakte hain */
}

/* Oracle logos strip */
/* .logo-strip {
    overflow: hidden;
    background: #fff;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.logo-slide {
    display: flex;
    align-items: center;
    gap: 60px;
}


.logo-slide img {
    height: 40px;
    width: auto;
    object-fit: contain;
} */

/* logo slider css end */

.blo-title {
  color: #2c2c2c;
  font-weight: 700;
}

.blo-title span {
  color: #179ecb;
}

.blo-text {
  font-size: 21px;
  color: #6c757d;
  line-height: 1.7;
}

.blo-text.blo-text-italic {
  color: #5a5a5a;
  font-style: italic;
}

.blo-image img {
  max-width: 100%;
  height: auto;
}

/* solution part of css */

.content-text {
  line-height: 1.6;
  max-height: 9.6em; /* 6 lines */
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease;
  opacity: 0.95;
}

.content-text.expanded {
  max-height: 1000px;
  opacity: 1;
}

/* Read More Button */
.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  color: #00d47b;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: #fff;
  transform: translateX(5px);
}

/* Solution Section */
.solution-section {
  padding: 60px 0 80px;
  background-color: #f1f5f8;
}

/* Title */
.solution-title {
  font-size: 51px;
  font-weight: 700;
  color: #1683b6;
}

/* Big Card */
.solution-big-card {
  background: #fff;
  color: #000;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  height: 100%;
  transition: all 0.35s ease;
}

.solution-big-card:hover {
  background: #0f8fc7;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Small Cards */
.solution-card {
  border-radius: 18px;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.solution-card .card-body {
  padding: 15px 23px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.solution-card:hover .card-body {
  background: #0f8fc7;
  color: #fff;
}

/* Icon */
.solution-icon {
  font-size: 32px;
  color: #0f8fc7;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  color: #fff;
  transform: scale(1.1);
}

/* Pill Button */
.solution-pill {
  width: 122px;
  height: 35px;
  border-radius: 30px;
  background: #f89b2b;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.solution-pill:hover {
  background: #ff7b00;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 767.98px) {
  .solution-title {
    font-size: 32px;
    text-align: center;
  }

  .solution-text {
    text-align: center;
  }

  .solution-pill {
    margin-left: auto;
    margin-right: auto;
  }
}

.view_more {
  cursor: pointer;
  transition: transform 0.4s ease;
}

.view_more.rotate {
  transform: rotate(180deg);
}

/* end solution part of css */

.cblog-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Heading */
.cblog-title {
  font-weight: 700;
  color: #2c2c2c;
}

.cblog-title span {
  color: #1aa0c8;
}

/* Card */
.cblog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.cblog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cblog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.cblog-img {
  overflow: hidden;
}

.cblog-img img {
  transition: transform 0.5s ease;
}

.cblog-card:hover .cblog-img img {
  transform: scale(1.08);
}

/* Tags */
.cblog-tags {
  margin: 15px 0 8px;
}

.cblog-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-right: 6px;
  display: inline-block;
}

.cblog-tag-news {
  background: #fff1e5;
  color: #f7941d;
}

.cblog-tag-inspo {
  background: #e8f4f9;
  color: #1aa0c8;
}

/* Content */
.cblog-content {
  padding: 38px;
}

.cblog-content h6 {
  font-weight: 700;
  margin-bottom: 8px;
}

.cblog-content p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
}

/* Author */
.cblog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 13px;
  color: #6c757d;
}

.cblog-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

/* Upar skyline banner image */
.footer-banner {
  background-color: #080a0c;
  color: #fff;
  /* yahan apni image ka path do */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  /* sab screen par section ko cover karega */
}

/* Links etc. */

.footer-link {
  color: #d1d5db;
  text-decoration: none;
}

.footer-link:hover {
  color: #7dd3fc;
}

/* social circles */
.social-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #f5f5f5;
}

/* Responsive tweak: chhoti screen par margin kam */
@media (max-width: 768px) {
  .footer-overlay {
    margin-top: 120px;
    /* mobile ke liye skyline thoda chhota */
  }
}

/* service section */
.services-section {
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 0;

  background: url("../assets/home-banner.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.services-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.services-title {
  font-size: 51px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.services-text {
  color: #f5f9ff;
  max-width: 320px;
}

.services-pill {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 30px;
  background: linear-gradient(45deg, #f89b2b, #ff6a00);
  margin-top: 24px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.services-pill:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ff6a00, #f89b2b);
}

.services-cards-wrapper {
  display: flex;
  justify-content: flex-end;
}

.service-card {
  width: 340px;
  border-radius: 26px;
  overflow: hidden;
  margin-left: 24px;
  position: relative;
  background: #000;
  flex-shrink: 0;
}

.service-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.service-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
  color: #fff;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.service-sub {
  font-size: 14px;
  margin-top: 4px;
}

.services-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

/* Responsive */
@media (max-width: 991.98px) {
  .services-section {
    border-radius: 0;
  }

  .services-inner {
    padding: 0 24px;
  }

  .services-cards-wrapper {
    justify-content: center;
    margin-top: 30px;
  }

  .service-card {
    margin-left: 16px;
    width: 280px;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding: 60px 0 70px;
  }

  .services-title,
  .services-text {
    text-align: center;
  }

  .services-text {
    margin: 0 auto;
  }

  .services-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .services-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    margin: 18px 0 0;
    width: 88%;
  }

  .services-arrow {
    display: none;
  }
}

/* 19/jan/2026 css */
.navbar {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: #00a8cc !important;
}

.nav-link {
  color: #333;
  margin: 0 4rem;
  font-weight: 500;
}

.nav-link:hover {
  color: #00a8cc;
}

/* ================= Portfolio ================= */
.portfolio-intro {
  padding: 80px 0;
}

.icon-chart {
  width: 200px;
  max-width: 100%;
}

/* ================= Benefits ================= */
.benefits-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 500;
}

.benefit-item i {
  color: #ffc107;
  margin-right: 12px;
  font-size: 18px;
}

/* ================= Tools ================= */
.tools-section {
  background: linear-gradient(135deg, #00a8cc, #b4ec51);
  color: #fff;
  padding: 80px 0;
}

.tool-card {
  text-align: center;
  padding: 25px;
}

.tool-icon {
  font-size: 55px;
  margin-bottom: 15px;
}

.tool-name {
  font-size: 20px;
  font-weight: 700;
}

/* ================= Role ================= */
.role-section {
  padding: 80px 0;
}

/* .role-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  margin-top:40px;
} */
.role-card {
  border: 3px solid;
  border-radius: 18px;
  padding: 25px 15px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s;
}

.role-card:hover {
  transform: translateY(-5px);
}

.blue {
  border-color: #0066cc;
  color: #0066cc;
}

.cyan {
  border-color: #00cccc;
  color: #00cccc;
}

.yellow {
  border-color: #ffcc00;
  color: #ffcc00;
}

.pink {
  border-color: #ff6699;
  color: #ff6699;
}

.teal {
  border-color: #00997a;
  color: #00997a;
}

.orange {
  border-color: #ff9933;
  color: #ff9933;
}

/* ================= Footer ================= */
.footer {
  background: #000;
  color: #fff;
  padding: 50px 0 20px;
}

.footer h5 {
  color: #00a8cc;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #00a8cc;
}

.social-icons a {
  font-size: 22px;
  margin-right: 12px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input,
.newsletter-form button {
  padding: 12px 20px;
  border-radius: 25px;
  border: none;
}

.newsletter-form button {
  background: #00d4aa;
  color: #fff;
  font-weight: 700;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 14px;
}

.image-center {
  display: flex;
  justify-content: center;
}

.image-center img {
  max-width: 100%;
  height: auto;
}

/* .hero-section */
.hero-banner {
  position: relative;
  width: 100%;
  height: 500px;
  /* height adjust kar sakte ho */
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.45);  */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* text-decoration: underline; */
}

/* Field Management */

/* .section {
      padding: 60px;
    } */

.content-row {
  display: flex;
  gap: 100px;
  /* align-items: center; */
}

.left-content {
  flex: 1;
}

.left-content h1 {
  /* text-decoration: underline; */
  /* text-decoration-thickness: 3px; */
  /* underline ki patlai */
  /* text-underline-offset: 6px; */
  /* border-bottom: 3px solid #1994d0; */
  display: inline-block;
  font-size: clamp(36px, 6vw, 40px);
  font-weight: 700;
  color: #19a1cd;
  margin-bottom: 35px;
}

.main-paragraph {
  font-size: clamp(1.5rem, 1.2vw, 2rem);
  line-height: 1.7;
  color: #4a5568;
}

.right-images {
  flex: 1;
}

/* .image-container img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;

  } */

.full-width-content {
  border-radius: 8px;
  max-width: 1060px;
  /* margin-bottom: 80px; */
}

.full-width-content p {
  color: #4a5568;
  line-height: 1.7;
  font-size: clamp(1.5rem, 1.2vw, 2rem);
}

/* benefit */

/* Main Heading Section */
.main-heading-section {
  margin-bottom: 40px;
}

.main-heading-section h1 {
  margin-bottom: 12px;
}

.main-heading-section .intro-text {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #4a5568;
  line-height: 1.7;
  /* max-width: 900px; */
  width: 56%;
}

/* Two Column Layout */
.two-column-layout {
  display: flex;
  gap: 60px;
  margin-bottom: 50px;
}

.left-column {
  flex: 1;
}

.right-column {
  flex: 1;
}

/* =======================Benefits List ============================*/

/*How Organizations Benefit start */

/* Main Heading Section */
.benefit_bg {
  background-color: #f1f5f8;
}

.f_management,
.benefit_c,
.data_governance,
.P_Controls {
  padding: 80px 0px;
}

.main-heading-section {
  margin-bottom: 40px;
}

.main-heading-section .intro-text,
.bottom-section {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #4a5568;
  line-height: 1.7;
  max-width: 800px;
}

/* Two Column Layout */
.two-column-layout {
  display: flex;
  gap: 60px;
  margin-bottom: 20px;
}

.left-column {
  flex: 1;
  padding: 30px 0px 0px 0px;
}

.right-column {
  flex: 0.6;
}

.benefit-img {
  width: 80%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

/* Benefit Item */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 600;
  background-color: #fff;
  padding: 16px;
  border-radius: 5px;

  /* Animation */
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

/* Stagger Animation */
.benefit-item:nth-child(1) {
  animation-delay: 0.1s;
}
.benefit-item:nth-child(2) {
  animation-delay: 0.2s;
}
.benefit-item:nth-child(3) {
  animation-delay: 0.3s;
}
.benefit-item:nth-child(4) {
  animation-delay: 0.4s;
}
.benefit-item:nth-child(5) {
  animation-delay: 0.5s;
}

.benefit-item:last-child {
  border-bottom: none;
}

/* Hover Effect */
.benefit-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Icon */
.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon img,
.benefit-icon svg {
  display: block;
}

.benefit-icon img {
  width: 70px;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.benefit-item:hover .benefit-icon img {
  transform: scale(1.15);
}

.benefit-content p {
  margin: 0;
  line-height: 1.5;
}

/* Image Container */
.image-container {
  height: 100%;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* .image-container:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
} */

.image-container:hover img {
  transform: scale(1.05);
}

/* Intro Text */
.roll-intro-text {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #4a5568;
  line-height: 1.7;
  max-width: 1150px;
}
@media (max-width: 992px) {
  /* Reduce animation slightly for smooth mobile performance */
  .benefit-item {
    animation: fadeUpMobile 0.7s ease forwards;
  }

  /* Tap Effect (since hover doesn't work on mobile) */
  .benefit-item:active {
    transform: scale(0.98);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .image-container:active img {
    transform: scale(1.03);
  }
}

/* ============================= */
/* Mobile Keyframe */
/* ============================= */

@keyframes fadeUpMobile {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*How Organizations Benefit end  */

/* Responsive Styles */

/* ===================Tool & Application Used==================== */
.tools-section {
  /* max-width: 1200px; */
  margin: 0 auto;
  background: url("../assets/background1.webp");
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: white;
}

.section-content {
  max-width: 1320px;
  margin: 0 auto;
}

/* Main Heading Section */
.main-heading {
  text-align: left;
  margin-bottom: 40px;
}

.main-heading h1 {
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  /* border-bottom: 3px solid #1994d0; */
  display: inline-block;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.main-description {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.8;
  max-width: 100%;
  color: #e2e8f0;
  opacity: 0.95;
}

/* Three Columns Layout */
.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin: 80px 0px 0px 0px;
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin: 80px 0px;
}

.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin: 80px 0px;
}

.tool-card {
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.p-tool-card {
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(10px);
  border-radius: 12px;
  /* padding: 20px; */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

.p-tool-card ul {
  list-style: none;
  padding: 0px 10px;
}

.p-tool-card ul li {
  margin: 0px 0px 30px 0px;
}

.p-tool-card ul h4 {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 400;
  margin-bottom: 0px;
}

.p-tool-card ul p {
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 200;
  opacity: 0.95;
}

.tool-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

/* Icon Styles */
.tool-icon {
  width: 100px;
  height: auto;
  margin-bottom: 25px;
}

.p-tool {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.p-tool h2 {
  white-space: nowrap;
  font-size: clamp(24px, 4vw, 40px);
}

.tool-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Card Content */
.tool-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.tool-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
  /* opacity: 0.9; */
}

/* Full Width Bottom Section */
.full-width-bottom {
  margin-top: 20px;
}

.full-width-bottom p {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.7;
  color: #e2e8f0;
  opacity: 0.95;
  margin: 0px;
}

.role-container {
  padding: 60px 0px;
}

.role-info-img {
  width: 100%;
  margin: 0 auto;
  height: auto;
  /* object-fit: cover; */
  transition: transform 0.5s ease;
}

.role-info-img img {
  width: 100%;
  padding: 30px 40px;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.roll-bottom-section {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #4a5568;
  line-height: 1.7;
  max-width: 910px;
  margin: 40px 0px 0px 0px;
}

/* Responsive Styles */

/* =================(max-width: 1024px)============ */
@media (max-width: 1024px) {
  /* body {
          padding: 100px 10px;
      } */

  .section-content {
    padding: 60px 40px;
  }

  .three-columns {
    gap: 30px;
  }

  .main-heading h1 {
    font-size: 2.6rem;
  }

  .section {
    padding: 50px 40px;
  }

  .two-column-layout {
    gap: 40px;
  }

  .main-heading-section h1 {
    font-size: 2.5rem;
  }

  .left-content h1 {
    font-size: clamp(36px, 6vw, 48px);
    margin-bottom: 20px;
  }

  .f_management,
  .benefit_c,
  .data_governance {
    padding: 40px 0px 40px 0px;
  }

  .benefit-img {
    width: 100%;
  }

  .image-container img {
    width: 100%;
  }

  .tools-section {
    padding: 0;
  }

  .four-columns {
    gap: 10px;
    margin: 0px;
  }

  .role-container {
    padding: 0px;
  }
}

/* =================(max-width: 900px)============ */
@media (max-width: 900px) {
  /* body {
          padding: 100px 10px;
      } */

  .three-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-card {
    padding: 30px 25px;
  }
}

/* =================(max-width: 768px)============ */
@media (max-width: 768px) {
  /* body {
          padding: 100px 10px;
      } */

  .hero-section-head {
    height: 260px;
  }

  .hero-section-head h1 {
    font-size: 30px;
  }

  .section-title {
    font-size: 26px;
  }

  .portfolio-intro,
  .benefits-section,
  .tools-section,
  .role-section {
    padding: 40px 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .hero-banner {
    height: 300px;
  }

  .hero-overlay h1 {
    font-size: 28px;
    text-align: center;
  }

  .f_management {
    padding: 30px 0px;
  }

  .left-content h1 {
    margin-bottom: 15px;
  }

  .content-row {
    gap: 0px;
  }

  .section {
    padding: 40px 30px;
  }

  .content-row {
    flex-direction: column;
  }

  h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 40px 30px;
  }

  .two-column-layout {
    flex-direction: column;
    gap: 40px;
  }

  .main-heading-section h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .benefit-item {
    padding: 16px 20;
  }

  .bottom-section {
    padding: 30px;
  }

  .benefit-img {
    width: 100%;
  }

  .benefit_c {
    padding: 40px 20px;
  }

  /* .full-width-content {
    padding: 0px 20px;
} */
  .role-info-img img {
    width: 100%;
    padding: 0px !important;
    animation: float 5s ease-in-out infinite;
  }

  .role-container {
    padding: 20px 0px;
  }

  .section-content {
    padding: 50px 30px;
  }

  .main-heading h1 {
    font-size: 2.3rem;
  }

  .main-description {
    font-size: 1.15rem;
  }

  .full-width-bottom {
    padding: 30px;
  }

  .benefit_c {
    text-align: center;
  }

  .intro-text {
    margin: 0 auto;
    width: 100% !important;
  }

  .tools-section {
    padding: 0px;
  }
}

/* =================(max-width: 600px)============ */
@media (max-width: 600px) {
  /* body {
          padding: 100px 10px;
      } */

  .role-container {
    padding: 20px 0px;
  }

  .section-content {
    padding: 40px 20px;
  }

  .three-columns {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 0;
  }

  .main-heading {
    text-align: center;
    margin: 0;
  }

  .main-heading h1 {
    font-size: 2rem;
  }

  .main-description {
    font-size: 1.05rem;
  }

  .tool-card {
    padding: 25px 20px;
  }

  .tool-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .tool-card h3 {
    font-size: 1.3rem;
  }

  .full-width-bottom {
    padding: 0px 20px;
  }

  .full-width-bottom h2 {
    font-size: 1.5rem;
  }

  .full-width-bottom p {
    font-size: 1.05rem;
    text-align: center;
  }
}

/* =================(max-width: 576px)============ */
@media (max-width: 576px) {
  .image-container img {
    height: auto;
  }

  .section {
    padding: 30px 20px;
  }

  .main-heading-section h1 {
    font-size: 2rem;
    text-align: center;
  }

  .main-heading-section .intro-text {
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    padding: 20px 0px;
    margin: 0px;
  }

  .main-heading-section {
    margin-bottom: 40px;
    text-align: center;
  }

  .roll-bottom-section {
    text-align: center;
  }

  .benefit-icon {
    width: 56px;
    height: auto;
    margin-right: 15px;
  }

  .benefit-content h3 {
    font-size: 1.05rem;
  }

  .benefit-content p {
    font-size: 0.95rem;
  }

  .bottom-section {
    padding: 0px;
  }

  .bottom-section h2 {
    font-size: 1.3rem;
  }

  .bottom-section p {
    font-size: 1rem;
  }

  .four-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =================(max-width: 400px)============ */
@media (max-width: 400px) {
  .section-content {
    padding: 30px 15px;
  }

  .main-heading h1 {
    font-size: 1.6rem;
  }

  .tool-card {
    padding: 20px 15px;
  }

  .content-row {
    text-align: center;
  }

  .main-paragraph {
    text-align: justify;
  }

  .full-width-content p {
    text-align: justify;
  }

  .main-heading-section {
    margin-bottom: 0px;
  }

  .four-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .roll-bottom-section {
    margin: 0;
  }

  .full-width-bottom {
    padding: 0px;
  }

  .tools-section {
    padding: 0px;
  }
}

/* 03/feb/2026 css's */

/* Ye CSS bilkul same rakho - !important hata do near-right se */

.footer-banner .cir-circle-wrapper {
  margin: 0 auto;
  max-width: 100%;
}

.cir-circle-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
}

/* Center logo */
.cir-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  transform: translate(-50%, -50%);
}

.cir-logo {
  position: absolute;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.cir-logo.active img {
  transform: scale(1.25);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
}

.cir-logo.highlight img {
  transform: scale(1.25);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}
@media (max-width: 480px) {
  .cir-circle-wrapper {
    width: 260px;
    height: auto;
    float: left;
  }
}
/* Tablet */
@media (max-width: 768px) {
  .cir-circle-wrapper {
    width: 300px;
    height: 300px;
  }
  /* .cir-center-logo {
    width: 100px;
  } */
  .cir-circle-wrapper {
    width: 260px;
    height: auto;
    float: left;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .cir-circle-wrapper {
    width: 340px;
    height: 340px;
  }
  /* .cir-logo {
    width: 148px;
    height: 150px;
  }
  .cir-center-logo {
    width: 120px;
  } */
}

/* Navbar / header dropdown start*/

.navbar {
  padding: 0.9rem 0;
  background: transparent !important;
  backdrop-filter: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Expanding background on hover */

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: #ffffff;
  transition: all 0.4s ease;
  z-index: -1;
}

.navbar:hover::before {
  height: 450px;
  background: #d9eedb;
}

.navbar .container {
  position: relative;
  z-index: 1;
}

/* Logo text */

.navbar-brand .logo-text {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #177795;
}

/* Nav links */

.navbar-nav .nav-link {
  color: #177795;
  font-weight: 500;
  margin-left: 1.25rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #177795;
}

/* Keep dropdown toggles consistent on click/focus and remove borders/outline */
.navbar-nav .nav-link.dropdown-toggle {
  border: none;
  outline: none;
  box-shadow: none;
}

.navbar-nav .nav-link.dropdown-toggle:focus,
.navbar-nav .nav-link.dropdown-toggle:active,
.navbar-nav .nav-link.dropdown-toggle:focus-visible,
.navbar-nav .nav-item.dropdown.show > .nav-link {
  color: #177795;
  border: none;
  outline: none;
  box-shadow: none;
}

/* Dropdown menu */

.navbar-nav {
  position: relative;
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  background-color: none;
  border-radius: 10px;
  border: none;
  box-shadow: none;
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  opacity: 0;
  min-width: 250px;
  white-space: nowrap;
  z-index: 1050;
}

/* Show all dropdowns when hovering navbar */

.navbar:hover .dropdown-menu {
  display: block !important;
  opacity: 1;
  background: none;
}

.dropdown-item {
  white-space: nowrap;
  padding: 10px 20px;
}

.dropdown-item {
  color: #177795;
}

/* .dropdown-item:hover {
      background-color: #f3f4f6;
      color: #177795;
      background-color: transparent !important;
  } */

.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active,
.dropdown-item:visited,
.dropdown-item:focus-visible {
  background: none;
  outline: none;
}

/* Mobile hamburger icon (black) */

.navbar-toggler {
  border-color: #000000;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Navbar / header dropdown End*/

/* conatct-us 24 feb 2026 */
.contact-wrapper {
  max-width: 1280px;
  width: 96%;
  margin: 38px auto;
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  overflow: hidden;
}

/* LEFT PANEL */
.contact-left {
  background-color: #f3f7fb;
  padding: 48px 40px;
  height: 100%;
}

.contact-left p.lead-text,
.contact-left p.lead-subtext {
  font-size: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #8dd533;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-item-title {
  font-size: 18px;
}

.contact-item-text {
  font-size: 15px;
}
.contact-left hr {
  margin: 28px 0;
  border-color: #dde3eb;
  opacity: 1;
}

.social-label {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
}

.social-link-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.social-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #8dd533;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
}

.social-link {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #14a8d5;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  text-decoration: none;
}

/* RIGHT PANEL */
.contact-right {
  padding: 48px 40px;
}

/* .contact-right h2 {
      font-size: 30px;
      font-weight: 700;
      color: #222222;
      margin-bottom: 28px;
    } */
.form-label {
  font-size: 14px;
  font-weight: 600;
}

/* .form-control,
.form-select {
  font-size: 15px;
  padding: 12px 14px;
}

    .form-control::placeholder {
      color: #b1b8c3;
      font-size: 13px;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: #8dd533;
      box-shadow: 0 0 0 2px rgba(141, 213, 51, 0.25);
      background-color: #ffffff;
    }

textarea.form-control {
  min-height: 170px;
} */

textarea {
  resize: none;
}
.btn-auxai {
  border-radius: 4px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 36px;
  color: #ffffff;
  background-image: linear-gradient(90deg, #02a3e8, #05c853);
  box-shadow: 0 10px 20px rgba(5, 200, 83, 0.35);
}

.btn-auxai:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(2, 163, 232, 0.45);
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .contact-wrapper {
    margin: 40px 16px;
  }

  .contact-left,
  .contact-right {
    padding: 60px 60px;
  }
}

/* contact-us 24 feb end */

/* blog css here 24 feb 2026 */

/* Section Styling */
.blog-section {
  background: #f7f9fb;
}

/* Heading */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1aa0c8;
  position: relative;
  display: inline-block;
}

/* Featured Blog */
.featured-blog {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  height: 620px; /* 👈 height kam kar di */
}

.featured-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-blog:hover img {
  transform: scale(1.08);
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
  color: #fff;
  transition: 0.4s ease;
}

.featured-overlay h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.featured-overlay .date {
  font-size: 14px;
  opacity: 0.8;
}

.featured-overlay .desc {
  font-size: 15px;
  margin-top: 10px;
}

/* Right Cards */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 40%;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  width: 60%;
}

.blog-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content .date {
  font-size: 14px;
  color: #777;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #4caf50;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-blog {
    height: 400px;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-card img {
    width: 100%;
    height: 200px;
  }

  .blog-content {
    width: 100%;
  }
}

/* blog 24 feb  2026 */

/* .services-section{
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 40px 0;
    background: url(./assets/home-banner.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
} */
.services-carousel {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.slides {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  width: 50%;
  position: relative;
  flex-shrink: 0;
  padding: 5px;
}

.slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/* 🔥 New Black Text Box */
.overlay {
  position: absolute;
  bottom: 0;
  left: 4px;
  width: 97%;
  /* height:200px;             */
  background: rgba(0, 0, 0, 0.8); /* 80% opacity */
  color: #fff;
  padding: 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 0 0 15px 15px;
}

.overlay h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 600;
}

.overlay p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.carousel-btn:hover {
  background: #ffffff5e;
}

/* 27 feb 2026 about-us start */
.about-cont {
  padding: 0 2rem;
  max-width: 1320px;
  margin: 0 auto;
}
.main-heading-section .about-intro-text {
  width: 90%;
  font-size: clamp(1.5rem, 1.2vw, 2rem);
  margin: 30px 0px;
}
.mission-intro-text {
  font-size: clamp(1.5rem, 1.2vw, 2rem);
  margin: 30px 0px;
}
.img-right {
  display: flex;
  justify-content: flex-end;
}
/* ==============award=========== */

/* FULLWIDTH RED BACKGROUND STRIP */
.fullwidth-bg {
  width: 100%;
  background: #edf1f2; /* your light background (red was earlier, but keeping your #EDF1F2) */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  margin: 80px auto;
  justify-content: center; /* centers the inner container */
}

/* INNER CONTAINER — exactly 1320px wide */
.inner-container {
  width: 100%;
  max-width: 1320px; /* fixed max width 1320px as requested */
  height: 270px; /* background height remains 270px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem; /* some breathing inside container */
  margin: 0 auto; /* ensures centering */
}

/* left heading (inside container) */
.awards-heading {
  color: #1994d0;
  max-width: 60%;
}

.awards-heading h2 {
  font-size: clamp(36px, 5vw, 45px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  line-height: 1.1;
  word-break: break-word;
}

/* ===== IMAGE STACK (auto‑changing, 2 awards) ===== */
.award-image-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  height: 440px; /* wrapper height (original) */
  width: auto;
  position: relative;
}

.image-stack {
  position: relative;
  height: 440px; /* image height exactly 170px */
  width: auto;
  aspect-ratio: 1/1;
  min-width: 100px;
}

.image-stack img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(4px 8px 12px rgba(0, 0, 0, 0.3));
  transition: opacity 0.9s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

/* smooth crossfade animations (seamless) */
.image-stack img.first {
  animation: fadeFirstSmooth 6s infinite;
}

.image-stack img.second {
  animation: fadeSecondSmooth 6s infinite;
}

@keyframes fadeFirstSmooth {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeSecondSmooth {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.image-stack:hover img {
  animation-play-state: paused;
}

/* responsive — container stays centered, background full width */
@media screen and (max-width: 1400px) {
  .inner-container {
    padding: 0 2rem; /* maintain spacing */
  }
}

@media screen and (max-width: 1024px) {
  .inner-container {
    padding: 0 2rem;
  }
  .awards-heading h2 {
    font-size: clamp(2rem, 6vw, 3.2rem);
  }
}

@media screen and (max-width: 700px) {
  .inner-container {
    padding: 0 1.5rem;
  }
  .awards-heading h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  .award-image-wrapper {
    height: 150px;
  }
  .image-stack {
    height: 150px;
  }
}

@media screen and (max-width: 500px) {
  .inner-container {
    height: 220px;
    padding: 0 1rem;
  }
  .award-image-wrapper {
    height: 130px;
  }
  .image-stack {
    height: 130px;
  }
  .awards-heading h2 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 420px) {
  .inner-container {
    padding: 0 0.8rem;
  }
  .awards-heading h2 {
    font-size: 1.3rem;
  }
  .award-image-wrapper {
    height: 110px;
  }
  .image-stack {
    height: 110px;
  }
}

/* ======================brand logo css========================== */
.brand-section {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  backdrop-filter: blur(4px);
  border-radius: 4rem 4rem 3rem 3rem;
  padding: 3rem 1.5rem 5rem 1.5rem;
  width: 100%;
  max-width: 1320px;
  padding: 60px 2rem;
}

/* heading style */
.section-heading {
  text-align: start;
  font-size: clamp(36px, 5vw, 45px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1994d0;
  background-clip: text;

  margin: 3.125rem 0rem;
  text-transform: uppercase;
}

/* paragraph style */
.section-sub {
  text-align: center;
  margin: 0 auto 3.5rem auto;
  font-size: clamp(1.5rem, 1.2vw, 2rem);
  line-height: 1.6;
  color: #4a5568;
  padding: 0.8rem 2rem;
  border-radius: 60px;
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

/* logo slider container — infinite scroll RTL */
.logo-scroll {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  padding: 0.5rem 0;
  padding: 30px 0;
}

/* track that holds duplicated logos & moves right to left */
.logo-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scrollRTL 35s linear infinite;
  /* animation-play-state: running; — hover pause added later */
}

/* each logo item — fixed height 120px, width auto (maintain aspect ratio) */
.logo-item {
  height: 100px;
  width: auto;
  background: white;
  border-radius: 20px;
  box-shadow:
    0 15px 25px -8px rgba(0, 25, 60, 0.2),
    0 4px 0 0 #ffffffcc,
    0 0 0 1px rgba(110, 140, 220, 0.25);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(2px);
}

/* image inside — height fills parent, width auto preserves ratio */
.logo-item img {
  height: 100%;
  width: auto;
  max-width: 180px; /* optional safety for very wide logos */
  object-fit: contain;
  filter: brightness(0.95) contrast(1.1);
  transition:
    filter 0.2s,
    transform 0.2s;
}

.logo-item:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow:
    0 25px 30px -10px rgba(0, 45, 90, 0.3),
    0 0 0 1px rgba(70, 130, 250, 0.5);
  background: white;
}

.logo-item:hover img {
  filter: brightness(1.05) contrast(1.1);
  transform: scale(1.02);
}

/* pause animation on hover (entire track) — optional, good UX */
.logo-scroll:hover .logo-track {
  animation-play-state: paused;
}

/* RIGHT‑TO‑LEFT infinite animation */
@keyframes scrollRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    /* move left by exactly half the total width (since we duplicated) */
    transform: translateX(-50%);
  }
}

/* make it responsive: reduce gap & height on smaller screens */
@media (max-width: 700px) {
  .brand-section {
    padding: 2rem 1rem 4rem 1rem;
    border-radius: 3rem;
  }
  .logo-item {
    height: 90px;
    padding: 0.8rem 1.5rem;
    border-radius: 24px;
  }
  .logo-track {
    gap: 1.5rem;
  }
  .section-sub {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 450px) {
  .logo-item {
    height: 70px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  .logo-track {
    gap: 1rem;
  }
}
.image-container {
  overflow: visible;
}

/* ===============Our Presence=========== */
/* main card – holds the map background + three boxes */
.presence-card {
  max-width: 1280px;
  width: 100%;
  background-image: url("../assets/about/our-presence.webp");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
  min-height: 565px;
  margin: 80px auto;

  /* 🔥 IMPORTANT CHANGE - grid ko bottom par push karna */
  display: flex;
  flex-direction: column;
  justify-content: end; /* title top, grid bottom */
  padding: 2rem 2rem;
  transition: box-shadow 0.3s ease;
  transition:
    transform 0.45s,
    filter 0.45s;
}
.presence-card:hover {
  transform: scale(1.12);
}
/* soft overlay to make text pop over map */
.presence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: backdrop-filter 0.4s;
}

/* optional subtle darkening on hover (map becomes slightly clearer) */

/* title "Our Presence" — kept minimal but you can adjust */
.presence-title {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 2.5rem;
  padding-left: 0.5rem;
  border-left: 7px solid #ffd966;
}

/* flex container for the three location cards */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

/* individual location card */
.location-item {
  flex: 1 1 280px; /* grow, shrink, base 280px */
  min-width: 260px;
  max-width: 350px;
  /* background: rgba(255, 255, 255, 0.88); */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: 1.8rem 1.5rem;
  box-shadow:
    0 20px 30px -10px rgba(0, 20, 10, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 1.2rem;
  cursor: default;
  cursor: pointer;
}

/* hover effect: lift, more solid white, shadow intensifies */
.location-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow:
    0 30px 40px -12px #02141d,
    0 0 0 2px rgba(255, 215, 100, 0.5) inset;
  /* border-color: rgba(255, 240, 180 , 0.9); */
}

/* left icon area */
.loc-icon {
  flex-shrink: 0;
  font-size: 2.2rem;
  color: #bb0002;
  border: 1px solid #1994d0;
  background: rgba(255, 255, 255, 0.7);
  width: 3.8rem;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
}

.location-item:hover .loc-icon {
  background: #bb0002;
  color: #fff;
  border: none;
  transform: scale(1.05);
}

/* right text block */
.loc-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* top heading (country) */
.loc-country {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0c2e3c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.location-item:hover .loc-country {
  color: #003153; /* deep navy */
}

/* paragraph style – full address */
.loc-address {
  font-size: 1.2rem;
  font-weight: 400;
  color: #1e2f3a;
  line-height: 1.2;
  white-space: pre-line; /* respects line breaks from text */
  transition: color 0.2s;
}

.location-item:hover .loc-address {
  color: #122b36;
}

/* small extra style for country lines */
.loc-address span {
  display: block;
  font-weight: 500;
  margin-top: 2px;
}

/* ensure same height balance */
.loc-address br {
  content: "";
  margin-bottom: 3px;
}

/* responsive touches */
@media (max-width: 800px) {
  .presence-card {
    padding: 2rem 1.2rem;
    border-radius: 2rem;
  }
  .presence-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .location-item {
    padding: 1.5rem 1.2rem;
  }
  .loc-country {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .presence-card {
    padding-bottom: 40px; /* mobile par thoda kam */
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 450px;
  }
  .location-item {
    min-width: 100%;
    max-width: 100%;
  }
  .loc-icon {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.8rem;
  }
  .presence-card::before {
    backdrop-filter: blur(1px);
  }
}

/* just to highlight the three addresses exactly as given */
.address-line {
  display: block;
}
.small-note {
  font-size: 0.85rem;
  opacity: 0.75;
}
/* 27 feb 2026 about us end */

/* blog inner page 27 feb  start  2026 */
.blog-heading {
  text-align: center;
  text-wrap: balance;
  line-height: 1.5;
}
/* main card */
.estate-card {
  max-width: 1320px;
  width: 100%;
  background: #ffffff;
  /* box-shadow: 0 30px 60px -15px rgba(0, 40, 50, 0.2); */
  padding: 5rem 2rem;
  margin: 0 auto;
}

/* two column layout */
.split-panel {
  display: flex;
  flex-wrap: wrap;
  /* gap: 2rem; */
}

/* LEFT SIDE — 5 boxes */
.boxes-left {
  flex: 0.5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* individual box */
.info-box {
  background: #f9fbfd;
  border-radius: 0 10px 10px 0;
  padding: 1.8rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  box-shadow: 0 8px 18px -6px rgba(0, 40, 30, 0.12);
  border: 1px solid #e6edf2;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}
.info-box:hover {
  background: #1aa0c8;
  border-color: #1aa0c8;
  box-shadow: 0 20px 25px -10px #083c4f;
}
.info-box:hover .box-icon {
  background: rgba(255, 255, 255, 0.25);
}
.info-box:hover .box-icon svg {
  fill: #ffefc0;
}
.info-box:hover .box-text h3 {
  color: white;
}
.info-box:hover::after {
  border-left-color: #1aa0c8;
  opacity: 1;
  visibility: visible;
}
/* notch (pointy triangle) - initially hidden */
.info-box::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 18px solid #f9fbfd;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.05));
  transition:
    border-left-color 0.2s,
    opacity 0.2s;
  opacity: 0;
  visibility: hidden;
}

.info-box:hover::after {
  opacity: 1;
  visibility: visible;
}

.info-box.active {
  background: #1aa0c8;
  border-color: #1aa0c8;
  box-shadow: 0 20px 25px -10px #083c4f;
}

.info-box.active::after {
  border-left-color: #1aa0c8;
  opacity: 1;
  visibility: visible;
}

/* icon container */
.box-icon {
  width: 3.8rem;
  height: 3.8rem;
  background: rgba(30, 75, 98, 0.1);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin-bottom: 0.2rem;
  padding: 0.6rem;
}

.box-icon svg {
  width: 100%;
  height: 100%;
  fill: #1e4b62;
  transition: fill 0.2s;
}

.info-box.active .box-icon {
  background: rgba(255, 255, 255, 0.25);
}

.info-box.active .box-icon svg {
  fill: #ffefc0;
}

.box-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
  line-height: 1.3;
}

.info-box.active .box-text h3 {
  color: white;
}

/* RIGHT SIDE — now with relative positioning for the square */
.content-right {
  flex: 1.8;
  padding: 60px 2rem 2.5rem 2rem;
  box-shadow: 0 8px 18px -6px rgba(0, 40, 30, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 500px;
  background: #f8fafc;
  border-radius: 0 10px 10px 0;
  position: relative; /* anchor for the pseudo‑element square */
  isolation: isolate; /* keeps square behind content */
  overflow: hidden; /* square stays inside rounded corners */
}

/* 200px square at bottom right, responsive, behind content */
.content-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 25px;
  width: 250px;
  height: 226px;
  background-image: url(../assets/blog/vectorbackground.webp);
  background-size: cover;
  background-repeat: no-repeat;
  /* border-top-left-radius: 60px; */
  /* opacity: 0.45; */
  pointer-events: none;
  z-index: 0;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
}

/* dynamic content sits above the square */
.dynamic-content {
  transition: opacity 0.2s ease;
  position: relative;
  z-index: 2;
}

/* right side heading */
.content-main-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #1aa0c8;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  border-bottom: 1px solid #b1c9d6;
  padding-bottom: 0.75rem;
}

.content-description {
  font-size: clamp(1rem, 1.1vw, 1.3rem);
  line-height: 1.6;
  color: #2c2c2c;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.8rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.content-description ul {
  list-style-type: disc;
  padding-left: 1.8rem;
  margin: 0.5rem 0;
}

.content-description li {
  margin-bottom: 0.7rem;
  font-size: clamp(1rem, 1.1vw, 1.3rem);
  line-height: 1.5;
  color: #2c2c2c;
}

.content-description p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.1vw, 1.3rem);
}

.content-description p:last-child {
  margin-bottom: 0;
}

/* responsive square: on narrow screens we shrink it a bit,
           but still keep the bottom‑right placement */
@media (max-width: 700px) {
  .content-right::before {
    width: 140px;
    height: 140px;
    border-top-left-radius: 40px;
    opacity: 0.35;
  }
}

@media (max-width: 1000px) {
  .split-panel {
    flex-direction: column;
  }
  .info-box::after {
    display: none;
  }
  .estate-card {
    padding: 1.5rem;
  }
  .content-right {
    padding-top: 40px;
  }
}

@media (max-width: 550px) {
  .content-right::before {
    width: 100px;
    height: 100px;
    border-top-left-radius: 30px;
    opacity: 0.3;
  }
  .box-icon {
    width: 3.2rem;
    height: 3.2rem;
    padding: 0.5rem;
  }
  .box-text h3 {
    font-size: 1.3rem;
  }
  .content-right {
    padding: 30px 1.2rem 1.8rem;
  }
  .content-main-heading {
    font-size: 1.6rem;
  }
  .content-description {
    padding: 1.2rem;
  }
  .content-description li,
  .content-description p {
    font-size: 1rem;
  }
}
/* blg inner page css */

/* google translate css here */
/* Pill Button */
.google-btn-lang-pill {
  border-radius: 999px;
  border: 1px solid #8dd93e;
  background: #ffffff;
  color: #8dd93e;
  padding: 0.4rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.google-btn-lang-pill:hover {
  background: #e8f5fe;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
  color: #1da1f2;
}

.google-btn-lang-pill:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Dropdown animation FIX */
.google-dropdown-menu {
  border-radius: 0.6rem;
  border: 1px solid #dde3ea;
  box-shadow: 0 10px 25px rgba(15, 35, 52, 0.18);

  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transition: all 0.25s ease;

  display: block;
  visibility: hidden;
}

.google-dropdown-menu.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

/* Dropdown item hover */
.google-dropdown-item:hover {
  background-color: #e8f5fe;
}
/* google translate css end here */

.dropdown-item.active,
.dropdown-item:active {
  background-color: rgba(0, 188, 212, 0.1) !important;
  color: #00c853 !important;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* timeline css start here  */

/* timeline css end here  */

/* mission and vission start here  */

/* Section Background */
.psb-mv-section {
  background: #f5f7fb;
}

/* Card Base */
.psb-mv-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Gradient Overlay */
.psb-mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a6fa1, #0f8fc7, #0a6fa1);
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

/* Hover Effect */
.psb-mv-card:hover::before {
  opacity: 1;
}

.psb-mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Keep content above overlay */
.psb-mv-card * {
  position: relative;
  z-index: 1;
}

/* Text hover */
.psb-mv-card:hover h3,
.psb-mv-card:hover p {
  color: #ffffff !important;
}

/* Icon Circle */
.psb-icon-circle {
  width: 65px;
  height: 65px;
  background: #eaf2ff;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 22px;
  transition: all 0.3s ease;
}

/* Icon hover */
.psb-mv-card:hover .psb-icon-circle {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: scale(1.1);
}

/* Typography */
.psb-mv-card h3 {
  margin-bottom: 15px;
}

.psb-mv-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* Button */
.psb-btn-primary {
  background: #0d6efd;
  color: #fff;
  transition: all 0.3s ease;
  border: none;
}

/* Button hover */
.psb-mv-card:hover .psb-btn-primary {
  background: #ffffff;
  color: #0d6efd;
  transform: scale(1.05);
}

/* mission and vission end here */
