:root{
  --accent: #0995DB;
  --nav-text: #000000;
  --nav-bg: #ffffff;
  --dropdown-bg: #ffffff;
}

/* Basic reset */
* { box-sizing: border-box; }
body {
  margin: 0;
 font-family: "Poppins", sans-serif !important;  ;
  background: #fff;
}



.navbar {
  background: var(--nav-bg);
  padding: .6rem 1rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* Brand */
.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  margin-right: .5rem;
}
.brand-text { font-weight:700; color:var(--nav-text); }

/* Nav links */
.navbar .nav-link {
  color: var(--nav-text);
  font-weight: 500;
  padding: .4rem .25rem;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--accent);
  text-decoration: none;
}

/* Increase gap between nav options */
.navbar-nav .nav-item {
  margin: 0 18px; /* adjust gap here */
}

/* Request demo button */
.btn-demo {
  background: linear-gradient(90deg, #2252A4, #00AEEF);
  /* background-color: #2252A4; */
  color: #fff;
  border-radius: 30px;
  padding: .45rem .9rem;
  font-weight: 600;
  border: none;
}

/* ---------- MEGA MENU ---------- */
.nav-mega { position: static; }

/* Full-width mega menu on desktop */
.mega-menu {
  position: absolute;
  top: 100%;
  /* left: 50%; */
  transform: translateX(-50%);
  width: 20vw;
  max-width: 100%;
  border-radius: 0;
  padding: 1.25rem 0;
  background: var(--dropdown-bg);
  box-shadow: 0 6px 30px rgba(10, 20, 40, 0.08);
  display: none; /* controlled by .show class */
  z-index: 1050;
  transition: opacity .14s ease, transform .14s ease;
  opacity: 0;
  pointer-events: none;
}

/* when visible */
.mega-menu.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 2.5rem;
  align-items: start;
}

/* headings inside mega */
.mega-heading {
  font-size: .775rem;
  font-weight: 700;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: .9rem;
}

/* each item */
.mega-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .6rem 0;
  color: var(--nav-text);
  transition: background .12s ease;
}

.tab-btn.active{
background:#1AA68C;
border-bottom:2px solid #fff;
color: #fff;
}
@media (max-width: 767px) {
  .d-flex.align-items-center.ms-auto {
    flex-direction: column;     /* stack vertically */
    align-items: flex-start;    /* align left */
    gap: 10px;                  /* space between items */
  }

  .d-flex.align-items-center.ms-auto .nav-link {
    margin-right: 0 !important; /* remove desktop gap */
  }

  /* .d-flex.align-items-center.ms-auto .btn-demo {
    width: 50%;              
  } */
}
.nav-link.active{
color: #fff;
background-color: #cef2ff;
border-radius: 6px;
}
.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 0;
}

.infraContainer {
  min-height: 480px;          
  display: flex;
  align-items: center;       
}

/* TEXT */
.text-col {
  text-align: left;
}

.infra-subtitle {
  font-size: 26px;
  font-weight: 600;
  color: #2252A4;
}


.infra-line {
  width: 90px;
  height: 3px;
  background: #0995DB;
  border: none;
  margin: 12px 0 20px;
}

.infra-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
}

/* IMAGE */
.image-col {
  text-align: right;
}

.infra-image {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .infraContainer {
    text-align: center;
  }

  .text-col,
  .image-col {
    text-align: center;
  }

  .infra-title {
    font-size: 36px;
  }

  .infra-line {
    margin: 12px auto 20px;
  }
}

@media (max-width: 576px) {
  .infra-title {
    font-size: 28px;
  }

  .infra-subtitle {
    font-size: 16px;
  }
}


    .productShadow {
      background-color: #e4edff;
      padding: 15px 10px;
      border-radius: 8px;
      flex: 0 0 auto;           /* prevent shrink */
      text-align: center;
    }

    .productShadow img {
      width: 200px;
      max-width: 100%;
      height: auto;
      display: block;
      margin: auto;
    }

    /* ===== RESPONSIVE MEDIA QUERIES ===== */

    /* Large desktops */
    @media (min-width: 1400px) {
      .productShadow img {
        width: 200px;
      }
    }

    /* Laptops */
    @media (max-width: 1399px) {
      .productShadow img {
        width: 170px;
      }
    }

    /* Tablets */
    @media (max-width: 991px) {
      .productShadow img {
        width: 140px;
      }
      .brand-row {
        gap: 10px;
      }
    }

    /* Large mobiles */
    @media (max-width: 767px) {
      .productShadow img {
        width: 110px;
      }
      .productShadow {
        padding: 12px 8px;
      }
      .infraContainer {
  min-height: 550px;          /* flexible height */
  display: flex;
  align-items: center;        /* vertical center */
}
    }

    /* Small mobiles */
    @media (max-width: 480px) {
      .productShadow img {
        width: 90px;
      }
      .brand-row {
        gap: 8px;
      }
            .infraContainer {
  min-height: 550px;          /* flexible height */
  display: flex;
  align-items: center;        /* vertical center */
}
    }
    
    @media (max-width: 767px) {
  .brand-row {
    justify-content: flex-start;   /* 👈 KEY FIX */
    padding-left: 12px;            /* spacing so first logo is visible */
  }
}

    
    /* Hide scrollbar (optional) */
    .brand-row::-webkit-scrollbar {
      display: none;
    }
    .brand-row {
      scrollbar-width: none;
    }


/* icons */
.mega-item .bi {
  font-size: 1.05rem;
  min-width: 28px;
  color: var(--accent);
  margin-top: 3px;
}

/* text block (title + desc) */
.mega-item .text {
  display: block;
}
.mega-item .title {
  font-weight: 700;
  color: #111;
  font-size: .95rem;
  text-decoration: none !important;
}
.mega-item .desc {
  font-size: .85rem;
  color: #6d6d6d;
  margin-top: 4px;
  line-height: 1.2;
}

/* remove link underline and ensure full clickable area */
.mega-item a,
.mega-item a:hover,
.mega-item a:focus {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.product-cta span{
  color: var(--accent);
  font-weight: 600;
}

.product-cta .bi-chevron-right{
  color: var(--accent);
  font-weight: 600;
}

/* hover state */
.mega-item:hover {
  background: rgba(0,0,0,0.02);
  border-radius: 6px;
}
.mega-item:hover .title {
  color: var(--accent);
}

/* active state visual */
.mega-item.active .title,
.mega-item.active .bi {
  color: var(--accent);
}

    .brand-slide {
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
    }

       .brands-wrap {
      margin-top: 28px;
      padding: 40px;
      background: var(--surface);
      border-radius: 10px;
        background-color: #f7f7f7;
      /* background-color: var(--accent); */
      /* box-shadow: 0 8px 30px rgba(12,12,12,0.03); */
    }

/* IMPORTANT: do not auto-close on hover out — we intentionally do NOT include any hover-close rules */

/* responsive: mobile stacks and becomes full width static content */
@media (max-width: 991.98px) {
  .mega-inner { grid-template-columns: 1fr; padding: 1rem; gap: 1rem; }
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: .6rem 0;
    opacity: 1;
    pointer-events: auto;
  }
  /* slightly larger tap targets on mobile */
  .mega-item { padding: .8rem 0; }
}

/* small devices */
@media (max-width: 420px) {
  .mega-inner { padding: 0 1rem; gap: .8rem; }
}

/* align caret */
.nav-link .bi-caret-down-fill { font-size: .8rem; margin-left: .35rem; vertical-align: middle; }

/* accessibility focus */
.mega-item a:focus { outline: 2px solid rgba(26,166,140,0.18); outline-offset: 3px; border-radius: 4px; }

/* toggler icon */
.toggler-icon { font-size: 1.35rem; color: #222; }

/* STRONG: force-remove underlines anywhere inside the mega menu */
.mega-menu,
.mega-menu .mega-item,
.mega-menu .mega-item a,
.mega-menu .mega-item a * ,
.mega-menu .title,
.mega-menu .desc {
  text-decoration: none !important;
  text-decoration-line: none !important;
  -webkit-text-decoration-skip-ink: none !important;
  border-bottom: none !important;
  color: inherit !important;
}

/* Make anchors full-block/touch targets (prevents some browsers drawing underlines) */
.mega-menu .mega-item a {
  display: flex !important;
  align-items: flex-start;
  width: 100%;
}

/* Keep accessible focus visible but not as an underline */
.mega-menu .mega-item a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
  outline: 3px solid rgba(26,166,140,0.12);
  outline-offset: 2px;
}
  .wrap {
      max-width: var(--container-max);
      margin: 0 auto;
      
    }

    h2.section-title {
      text-align:center;
      font-weight:800;
      margin-bottom:22px;
      letter-spacing: .02em;
      font-size: 36px;
    }

.outerside .cards-grid,
.outerside .brands-wrap {
  margin-left: auto;
  margin-right: auto;
}
 .brand-logo {
      background: #fff;
      padding: 10px;
      border-radius:8px;
      height:200px;
      display:flex;
      align-items:center;
      justify-content:center;
      /* box-shadow: 0 4px 12px rgba(12,12,12,0.03); */
      flex: 1 1 0%;
    }
    .brand-logo img { max-height: 175px; max-width:70%; object-fit:contain; }


      @media (max-width:767px) {
      .brand-logo { flex-basis: 48%; }
      .brand-slide { flex-wrap:wrap; gap:10px; }
    }
     /* Desktop: 6 logos per slide */
    @media (min-width:1200px){
      .brand-logo { flex-basis: calc((100% - 5*16px)/6); }
    }
    /* Tablet: 4 logos */
    @media (min-width:768px) and (max-width:1199px) {
      .brand-logo { flex-basis: calc((100% - 3*12px)/4); }
    }
    /* Small: 2 logos */
    @media (max-width:767px) {
      .brand-logo { flex-basis: 48%; }
      .brand-slide { flex-wrap:wrap; gap:10px; }
         h2.section-title {
      text-align:center;
      font-weight:800;
      margin-bottom:22px;
      letter-spacing: .02em;
      font-size: 30px;
    }
    }

    .brand-logoo{
  width: 200px;
}
.brand-logoo {
  width: 200px;
}

/* Tablet */
@media (max-width: 992px) {
  .brand-logoo {
    width: 160px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .brand-logoo {
    width: 120px;
  }
}
.jx-footer {
  /* background: #6f8288;  */
  background: linear-gradient(320deg, #082455 20%, #0995DB 100%);

  padding: 60px 30px 20px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.jx-footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

/* BRAND */
.footer-logo {
  width: 160px;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* HEADINGS */
.jx-footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.jx-footer-col h5 {
  font-size: 14px;
  margin-top: 20px;
  font-weight: 600;
}

/* LISTS */
.jx-footer-col ul {
  list-style: none;
  padding: 0;
}

.jx-footer-col ul li {
  margin-bottom: 8px;
}

.jx-footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.jx-footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* SOCIAL */
.jx-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.jx-footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

/* BOTTOM */
.jx-footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

.jx-footer-links {
  display: flex;
  gap: 16px;

}
.jx-footer-links a {
 
  color: #fff;
}

.infra-section {
  padding: 10px 20px 20px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1400px;
  margin: auto;
}


.infra-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.infra-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.infra-card .line {
  display: block;
  width: 40px;
  height: 3px;
  background: #0995DB;
  margin-bottom: 14px;
}

.infra-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}


.infra-image-wrapper {
  text-align: center;
}

.infra-image-wrapper img {
  max-width: 100%;
  height: auto;
}

.solutions-section {
  padding: 30px 20px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1400px;
  margin: auto;
}


.solutions-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #111;
}

/* Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.solution-card {
  border: 1px solid #e6e6e6;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  background: #fff;
}

.solution-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

/* Icon */
.solution-card .icon {
  font-size: 36px;
  color: #333;
  margin-bottom: 18px;
}

/* Text */
.solution-card h4 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

/* ========== RESPONSIVE ========== */

/* Tablets */
@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-title {
    font-size: 28px;
  }
}


/* ========== RESPONSIVE ========== */

/* Large laptops */
@media (max-width: 1200px) {
  .infra-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 991px) {
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .infra-section {
  padding: 40px 20px 40px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

}

/* Mobile */
@media (max-width: 576px) {
  .infra-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .infra-card .line {
    margin: 10px auto 14px;
  }

  .infra-section {
    padding: 60px 15px;
  }
    .infra-section {
  padding: 30px 20px 40px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}
}



/* RESPONSIVE */
@media (max-width: 1024px) {
  .jx-footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .jx-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .jx-footer-container {
    grid-template-columns: 1fr;
  }

  .jx-footer-bottom {
    text-align: center;
    gap: 10px;
  }
}

.outerside {
  box-sizing: border-box;
  padding-left: 100px;   /* big gap left */
  padding-right: 100px;  /* big gap right */
  display: block;
  width: 100%;
  background: transparent;
  /* ensure children don't overflow the visible area */
  overflow-x: hidden;
}

/* keep inner .wrap centered and constrained */
.outerside .wrap {
  max-width: 1500px; /* matches design container width */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}

/* RESPONSIVE REDUCTION OF SIDE GAP */
@media (max-width: 1400px) {
  .outerside { padding-left: 160px; padding-right: 160px; }
}
@media (max-width: 1150px) {
  .outerside { padding-left: 120px; padding-right: 120px; }
}
@media (max-width: 992px) {
  .outerside { padding-left: 80px; padding-right: 80px; }
}
@media (max-width: 768px) {
  .outerside { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 576px) {
  .outerside { padding-left: 16px; padding-right: 16px; }
}

/* SAFETY: ensure cards-grid and brands are centered inside .wrap */
.outerside .cards-grid,
.outerside .brands-wrap {
  margin-left: auto;
  margin-right: auto;
}

/* OPTIONAL: if you want a fixed 200px LEFT gap only (e.g. for a left sidebar),
   uncomment the rule below and comment out the symmetric padding above */
/*
.outerside {
  padding-left: 200px;
  padding-right: 0;
}
*/

/* Prevent any unintended horizontal scrolling from children */
.outerside * {
  max-width: 100%;
}

.content-box h2{
  font-size: 60px;
  /* color: #00AEEF; */
}

.video-strip {
  position: relative;
  width: 100%;
  height: 800px;        /* 🔹 Short height */
  overflow: hidden;
}

/* Background video */
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-subheading {
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00c6ff;
  margin-bottom: 10px;
  font-weight: 600;
}


/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.2)
  );
  z-index: 2;
}

/* Content */
.video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.content-box {
  color: #fff;
}

.content-box h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.content-box p {
  font-size: 1.05rem;
  max-width: 480px;
  opacity: 0.95;
}


@media (max-width: 768px) {
  .video-strip {
    height: 260px;     /* 🔹 shorter on mobile */
  }

  .content-box {
    text-align: center;
    margin: 0 auto;
  }

  .content-box h2 {
    font-size: 0.8rem;
  }

  .content-box p {
    font-size: 0.60rem;
    max-width: 100%;
  }
  .content-box h2{
  font-size: 30px;
  /* color: #00AEEF; */
  margin-top: 30px;
}
}
.overview-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #c3d9ff, #0995db);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  max-width: 820px;
  margin: 20px auto 0;
}
@media (max-width: 768px) {
  .overview-section {
    padding: 50px 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}


.why-cloud-section {
  width: 100%;
  background: #ffffff;
}

/* LEFT IMAGE */
.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
  padding: 0px 30px 0px 30px;
}

/* RIGHT CONTENT */
.content-side {
  /* background: #03a9c7; */

    background: linear-gradient(90deg, #2252A4, #00AEEF);
border-top-left-radius: 16px;
border-bottom-left-radius: 16px;
  color: #ffffff;
  padding: 70px 60px;
}

.why-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ITEMS */
.why-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.why-item:last-child {
  border-bottom: none;
}

.why-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* ACTIVE ITEM (Highlight like design) */
.why-item.active h4 {
  color: #ffd400;
}

@media (max-width: 991px) {
  .content-side {
    padding: 50px 30px;
  }

  .why-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .image-side img {
    min-height: 260px;
  }

  .content-side {
    text-align: center;
    padding: 40px 20px;
  }

  .why-item {
    text-align: left;
  }

  .why-title {
    font-size: 1.9rem;
  }

  .why-item h4 {
    font-size: 1.1rem;
  }

  .why-item p {
    font-size: 0.9rem;
  }
}


.cloud-services {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* Header */
.section-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto 60px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 38px 26px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Top accent */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #2252a4, #0995db);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

/* Hover */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Icon */
.icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.icon-wrap i {
  font-size: 34px;
  color: #0995db;
}

/* Text */
.service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}


@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cloud-services {
    padding: 60px 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 22px;
  }
}
.platforms-section {
  padding: 40px 0;
  background: #ffffff;
}

/* LEFT VISUAL */
.visual-side {
  /* background: linear-gradient(135deg, #2ea7e0, #3fb2ff); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.phone-graphic img {
  max-width: 100%;
  height: auto;
}

/* RIGHT CONTENT */
.content-side {
  padding: 60px 70px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 520px;
  margin-bottom: 50px;
}

/* PLATFORM CARDS */
.platform-cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.platform-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  flex: 1;
  min-width: 260px;
  text-align: center;
  transition: all 0.35s ease;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

/* ICON */
.platform-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
}

.platform-icon img {
  width: 90px;
}

/* TEXT */
.platform-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.platform-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 992px) {
  .content-side {
    padding: 50px 40px;
  }

  .platform-cards {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .platforms-section {
    padding: 60px 0;
  }

  .visual-side {
    padding: 40px 20px;
  }

  .content-side {
    text-align: center;
    padding: 40px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .platform-cards {
    flex-direction: column;
    align-items: center;
  }

  .platform-card {
    width: 100%;
    max-width: 360px;
  }
}



.partner-title {
  font-size: 1.35rem;
  font-weight: 500;
  color: #4b5563;
}

/* Logos */
.partner-logo {
  max-width: 140px;
  max-height: 90px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* .partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
} */

/* Divider */
.partner-divider {
  border: none;
  height: 1px;
  background: #a5a5a5;
  margin: 60px 0;
}


.values-strip {
  padding: 30px 0;
  /* background: linear-gradient(135deg, #f4f7fb, #eef2f7); */
}

.strip-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 45px;
}

/* SINGLE ROW */
.values-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
}

/* WHITE BOX */
.value-box {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box i {
  font-size: 30px;
  color: #0a7cff;
  display: block;
  margin-bottom: 12px;
}

.value-box span {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.value-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .values-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .value-box {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 576px) {
  .value-box {
    flex: 0 0 calc(50% - 20px);
  }

  .strip-title {
    font-size: 26px;
  }
}


.methodology-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #ffffff, #f6f8fb);
}

.methodology-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #222;
}

/* Grid */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Card */
.method-item {
  position: relative;
}

.step-number {
  font-size: 56px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.06);
  display: block;
  margin-bottom: 10px;
}

.method-item h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #1f2a37;
  margin-bottom: 12px;
}

.divider {
  width: 40px;
  height: 3px;
  background: #0a7cff;
  margin-bottom: 14px;
}

.method-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 260px;
}

/* Responsive */
@media (max-width: 992px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .methodology-section {
    padding: 70px 15px;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .methodology-title {
    font-size: 26px;
    margin-bottom: 40px;
  }
}


.usecases-section {
  padding: 90px 0;
  background: #ffffff;
}

.usecases-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 50px;
  color: #1f2a37;
}

/* Grid */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.usecase-card {
  border: 1px solid #e6e8ec;
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  transition: all 0.3s ease;
}

.usecase-card i {
  font-size: 26px;
  color: #0a7cff;
  flex-shrink: 0;
  margin-top: 2px;
}

.usecase-card p {
  margin: 0;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.usecase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* Responsive */
@media (max-width: 992px) {
  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .usecases-section {
    padding: 70px 15px;
  }

  .usecases-grid {
    grid-template-columns: 1fr;
  }

  .usecases-title {
    font-size: 26px;
  }
}


.performance-section {
  padding: 90px 0;
}

.performance-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.performance-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.performance-header p {
  font-size: 16px;
  color: #555;
}

/* Spacing between blocks */
.performance-block {
  margin-bottom: 80px;
}

/* Text styles */
.text-col h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.text-col p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ============================= */
/* MOBILE LOGIC – GUARANTEED */
/* ============================= */
@media (max-width: 767px) {

  .performance-block {
    display: flex;
    flex-direction: column;
  }

  .performance-block .img-col {
    order: 1;
    margin-bottom: 20px;
  }

  .performance-block .text-col {
    order: 2;
  }

  .text-col h3 {
    font-size: 22px;
  }

  .performance-block {
    margin-bottom: 50px;
  }
}
.GoogleImg{
  width:70%;
}

.gcp-services {
  padding: 90px 0;
  background: #f8fafc;
}

.section-title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #1f2937;
}

/* Card */
.service-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #111827;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Icon box */
.icon-box {
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  text-align: center;
}

.icon-box img {
  height: 40px;
}

/* Color variants */
.yellow { background: #fef9c3; }
.pink { background: #fde2e2; }
.gray { background: #e5e7eb; }
.blue { background: #e0f2fe; }
.green { background: #dcfce7; }

/* Carousel arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.icon-box i {
  font-size: 40px;
  color: #111;
}
.service-card h4 {
  min-height: 48px;
}
.gcp-tabs-section {
  padding: 80px 0;
  background: #fff;
}

/* Tabs */
.gcp-tabs {
  list-style: none;
  padding: 0;
  border-right: 1px solid #e5e7eb;
}

.gcp-tabs li {
  padding: 14px 18px;
  cursor: pointer;
  color: #444;
  border-left: 3px solid transparent;
}

.gcp-tabs li.active {
  color: #0aa6c8;
  border-left-color: #0aa6c8;
  font-weight: 500;
}

/* Content */
.tab-content {
  display: none;
  padding-left: 40px;
}

.tab-content.active {
  display: block;
}

.tab-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #666;
}

/* Blocks */
.tab-block {
  padding: 30px 0;
  border-bottom: 1px dashed #ddd;
}

.tab-block h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-grid ul {
  list-style: none;
  padding: 0;
}

.feature-grid li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.feature-grid li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #0aa6c8;
  font-size: 20px;
}

/* GCP icons */
.gcp-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.gcp-item {
  text-align: center;
}

.gcp-item i {
  font-size: 42px;
  color: #1a73e8;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .gcp-tabs {
    display: flex;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .gcp-tabs li {
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .gcp-tabs li.active {
    border-bottom-color: #000000;
  }

  .tab-content {
    padding-left: 0;
    padding-top: 30px;
  }

  .feature-grid,
  .gcp-icons {
    grid-template-columns: 1fr;
  }
}
.insights-section {
  padding: 100px 0 0 10px;
  background: #ffffff;
}

/* STATS */
.stats-row {
  display: flex;
  justify-content:space-around;
  text-align: center;
  margin-bottom: 90px;
}

.stat-box h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-box span {
  background: #ffd400;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
}

/* FEATURES */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.feature-card {
  text-align: center;
}

.feature-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h4 {
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stats-row {
    flex-wrap: wrap;
    gap: 30px;
  }

  .features-row {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .stat-box h2 {
    font-size: 44px;
  }
}

.services-section {
  /* padding: 100px 0; */
  background: #ffffff;
}

/* HEADER */
.services-header {
  margin-bottom: 70px;
}

.services-tag {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 10px;
}

.services-title {
  font-size: 40px;
  font-weight: 600;
  color: #000000;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon i {
  font-size: 26px;
}

/* ICON COLORS */
.green { background: #e8f8f1; color: #16a085; }
.blue { background: #e8f0fe; color: #1a73e8; }
.cyan { background: #e0f7fa; color: #00acc1; }
.yellow { background: #fff7e0; color: #f4b400; }

/* MOBILE */
@media (max-width: 768px) {
  .services-title {
    font-size: 30px;
  }
}

.about-vision-section {
  padding: 70px 0;
  background: #ffffff;
}

.section-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #1f2a37;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}


.key-contacts-section {
  padding: 0px 0;
  background: #ffffff;
}

.key-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 50px;
  color: #1f2a37;
}

/* Card */
.contact-card {
  border: 1px solid #e5e7eb;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  background: #fff;
}

.contact-card img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

.contact-card h4 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .key-title {
    font-size: 26px;
  }
}



    .contact-section{
      padding:80px 0;
      background: linear-gradient(135deg,#f8fafc,#ffffff);
    }

    .contact-title{
      font-size:36px;
      font-weight:600;
      margin-bottom:40px;
      color:#1f2937;
    }

    .map-box{
      border-radius:14px;
      overflow:hidden;
      box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .office-info{
      margin-top:25px;
      font-size:15px;
      color:#374151;
    }

    .office-info i{
      font-size:18px;
      color:#2563eb;
      margin-right:10px;
    }

    .form-box{
      background:#ffffff;
      border-radius:14px;
      padding:40px;
      box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .form-control, .form-select{
      height:48px;
      border-radius:8px;
      border:1px solid #e5e7eb;
      font-size:14px;
    }

    textarea.form-control{
      height:120px;
    }

    .form-control:focus, .form-select:focus{
      border-color:#2563eb;
      box-shadow:none;
    }

    .btn-submit{
      padding:12px 40px;
      border-radius:30px;
  background: linear-gradient(90deg, #2252A4, #00AEEF);
      color:#fff;
      border:none;
      font-size:14px;
      letter-spacing:1px;
    }

    .btn-submit:hover{
      background:#1d4ed8;
    }

    @media(max-width:768px){
      .contact-title{
        font-size:28px;
        text-align:center;
      }
    }

       .policy-wrapper{
      padding:80px 0;
    }

    .policy-box{
      background:#ffffff;
      border-radius:14px;
      padding:50px;
      box-shadow:0 12px 30px rgba(0,0,0,0.06);
    }

    .policy-title{
      font-size:34px;
      font-weight:600;
      color:#111827;
      margin-bottom:30px;
    }

    .policy-box p{
      font-size:15px;
      line-height:1.9;
      margin-bottom:20px;
    }

    .policy-box strong{
      color:#1f2937;
      font-weight:500;
    }

    @media(max-width:768px){
      .policy-box{
        padding:30px 25px;
      }
      .policy-title{
        font-size:26px;
      }
    }



    
    .tc-wrapper{
      padding:80px 0;
    }

    .tc-box{
      background:#ffffff;
      border-radius:14px;
      padding:50px;
      box-shadow:0 12px 30px rgba(0,0,0,0.06);
    }

    .tc-title{
      font-size:34px;
      font-weight:600;
      color:#111827;
      margin-bottom:25px;
    }

    .tc-box h5{
      margin-top:35px;
      margin-bottom:15px;
      font-size:18px;
      font-weight:500;
      color:#1f2937;
    }

    .tc-box p{
      font-size:15px;
      line-height:1.9;
      margin-bottom:18px;
    }

    .tc-box ul{
      padding-left:18px;
    }

    .tc-box ul li{
      font-size:15px;
      line-height:1.9;
      margin-bottom:8px;
    }

    @media(max-width:768px){
      .tc-box{
        padding:30px 25px;
      }
      .tc-title{
        font-size:26px;
      }
    }