/* -------------------------
   GLOBAL RESET & VARIABLES
-------------------------- */
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap" rel="stylesheet">


:root {
  --primary: #061b6e;
  --secondary: #00e5ff;
  --dark: #021044;
  --light: #f5f7fb;
  --white: #ffffff;
  --radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,body {
  font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif  !important;
  background: #fff;
  color: #333;
  line-height: 1.6;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* -------------------------
   HEADER
-------------------------- */
/* HEADER */
.sn-header {
  background: #ffffff;
  padding: 12px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-btn {
  background: #061b6e;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

.logo {
  height: 35px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.header-right a {
  color: #061b6e;
  text-decoration: none;
}

.login-btn {
  background: linear-gradient(135deg, #061b6e, #0226aa);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
}




.mobile-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #0b2c8a;
  padding: 60px 20px;
  transition: left 0.3s ease;
  z-index: 999;
}

.mobile-menu a {
  display: block;
  color: #fff;
  margin-bottom: 20px;
  text-decoration: none;
}

.mobile-menu.active {
  left: 0;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* Hero banner */
.hero-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  position: relative;
}

.hero-slide {
  width: 100%;
  height: 600px;
  display: none;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 900px;
  width: 100%;
  padding: 100px;
  color: white;
}

.hero-text-img {
  max-width: 100%;
  width: 650px;
  height: auto;
  display: block;
  margin: 0 auto 25px auto;
}

.hero-btn-img {
  width: 150px;
  max-width: 100%;
  height: auto;
  transition: 0.3s ease;
}

.hero-btn-img:hover {
  transform: scale(1.05);
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-arrow.left {
  left: 20px;
}

.hero-arrow.right {
  right: 20px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-dots .dot {
  height: 12px;
  width: 12px;
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-dots .dot.active {
  background: #fff;
}





/* -------------------------
   HERO SECTION
-------------------------- */
.hero {
  background: linear-gradient(135deg, #04136c, #021044);
  color: #fff;
  padding: 80px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.btn-primary {
  background: var(--secondary);
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* BENEFITS SECTION */
/* ===== BENEFITS FIX ===== */


.benefits-section{
    position: relative;
    margin-top: -102px;
    z-index: 5;
}

.benefits-row{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:center;
    gap:40px;
    padding:0 20px;
}

/* Box */
.benefit-box{
    width:100%;
    max-width:360px;
    height:320px;

    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;

    position:relative;

 
}

/* Background images */
.benefit-box.pink{
    background-image:url("../images/02.png");
}

.benefit-box.blue{
    background-image:url("../images/benifits/01.png");
}

.benefit-box.green{
    background-image:url("../images/be3.png");
}

/* Content */
.benefit-content{
    position:absolute;
    top:52%;
    left:50%;
    transform:translate(-50%,-50%);
    width:59%;
    text-align:center;
}

/* Heading */
.benefit-content h3{
    font-size:20px;
    font-weight:600;
    margin-bottom:0px;
    color:#1c1c1c;
}

/* Text */
.benefit-content p{
    font-size:14px;
    line-height:1.6;
    color:#555;
    text-align: left;
    margin: 14px;
}

/* Shadow effect */
.benefit-box::after{
    content:"";
    position:absolute;
    bottom:18px;
    left:50%;
    transform:translateX(-50%);
    width:70%;
    height:16px;
    border-radius:50%;
    filter:blur(18px);
    z-index:-1;
}

/* Mobile */
@media (max-width:768px){

    .benefits-section{
        margin-top:0;
    }

    .benefits-row{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .benefit-box{
        max-width:320px;
        height:280px;
    }

}

/* Tablet */
@media (min-width:769px) and (max-width:1024px){

    .benefits-section{
        margin-top:-60px;
    }

    .benefits-row{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .benefit-box{
        max-width:300px;
        height:280px;
    }

}


/* -------------------------
   INFRASTRUCTURE
-------------------------- */
/* .infrastructure {
  padding: 80px 0;
  background: #f1f4fb;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.infrastructure ul {
  list-style: none;
}

.infrastructure li {
  margin-bottom: 8px;
} */
.infrastructure-section {
    padding: 50px 0;
    background: url("../images/back.png") center/cover no-repeat;
    overflow: hidden; /* IMPORTANT */
}

.infra-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.infra-content {
    width: 40%;
    padding-left: 80px;
    color: #fff;
}


.infra-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
}
.infra-content ul {
    list-style: none;
    padding: 0;
}

.infra-content li {
    margin-bottom: 0px;
    padding-left: 25px;
    position: relative;
    font-size: 20px;
}

.infra-content li::before {
     content: "\25C6"; /* ◆ Diamond */
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 20px;
}

.infra-content strong {
    font-weight: 800;
    /* display: block; */
}
.infra-content p {
    font-size: 15px;
}

.infra-image {
    width: 60%;
    position: relative;
    right: -120px; /* 👈 pushes image outside to the right */
}

.infra-image img {
    width: 100%;
    border-radius: 100px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}


@media (max-width: 768px) {
    .infra-container {
        flex-direction: column;
    }

    .infra-image {
        width: 100%;
        right: 0;
    }

    .infra-content {
        width: 100%;
        padding: 20px;
        text-align: center;
    }
}



/* -------------------------
   SERVICE CARDS
-------------------------- */
.services-section {
  display: flex;
  flex-direction: column;
  gap: 20px; /* space between cards */
  padding: 30px 20px;
}

.service-card {
  max-width: 1200px;
  margin: auto;

  background-image: url("../images/services/service_back.png");
  background-repeat: no-repeat;
  background-size: cover;        /* cover full card */
  background-position: center;   /* center the image */

  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 50px;
  gap: 40px;
}


/* Image part */
.service-image {
  flex: 1;
  text-align: center;
}

.service-image img {
  max-width: 100%;
  height: 250px;
}

/* Text part */
.service-content {
  flex: 1;
  color: #ffffff;
}

.service-content h2 {
  font-size: 36px;
  color: #2ef2c2;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #d7e4ff;
  max-width: 300px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* SHOW ONLY 3 LINES */
  -webkit-box-orient: vertical;
}

.service-contentright p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #d7e4ff;
  max-width: 270px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* SHOW ONLY 3 LINES */
  -webkit-box-orient: vertical;
}
/* Arrow */
.service-arrow img {
  width: 62%;
  transition: transform 0.3s ease;
}

.service-arroww img {
  width: 10%;
  transition: transform 0.3s ease;
}

.service-arrow:hover img {
  transform: translateX(8px);
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }
}

.feature-section {
  padding: 40px 20px;
  background: #f8fafc;
  text-align: center;
}

.feature-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.feature-image img {
  max-width: 100%;
}

/* Content */
.feature-content {
  max-width: 600px;
}

.feature-title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #0b1c4d;
}

.feature-content h4 {
  color: #1b2d8c;
  margin-bottom: 15px;
}

.feature-content p {
  color: #5c6b8a;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Points */
.feature-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
}

.point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.point img {
  height: 50px;
}

.point h5 {
  margin: 0 0 6px;
  color: #393d9d;
  font-size: 18px;
}

.point p {
  margin: 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .feature-container {
    flex-direction: column;
    text-align: center;
  }

  .feature-points {
    grid-template-columns: 1fr;
  }

  .point {
    justify-content: center;
  }
}

/* -------------------------
   CLIENT LOGOS
-------------------------- */
.clients-section {
  padding: 60px 20px;
  background-image: url("../images/Logo/07f.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Container */
.clients-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;   /* better for responsiveness */
  flex-wrap: wrap;           /* IMPORTANT */
  gap: 40px;
}

/* Logos */
.clients-container img {
  height: 120px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Tablet */
@media (max-width: 991px) {
  .clients-container img {
    height: 100px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .clients-container {
    gap: 25px;
  }

  .clients-container img {
    height: 80px;
  }
}

/* .clients-container img {
  background: #0b2c8a;
  padding: 20px;
  border-radius: 16px;
  width: 120px;
} */

/* -------------------------
   CONTACT
-------------------------- */
.contact-section {
  padding: 80px 0;
}

/* REMOVE flex from container */
.contact-container {
  max-width: 1200px;
  margin: auto;
}

/* Talk to us image */
.contact-text {
  display: flex;
  align-items: center;
}

.talk-image {
  width: 150px;
}

/* Inputs */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form input {
  border: none;
  border-bottom: 1px solid #9aa4b2;
  background: transparent;
  padding: 8px 0;
  font-size: 16px;
  width: 100%;
  max-width: 320px;
  outline: none;
}

/* Button column */
.submit-col {
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center;
}

.submit-btn {
  background: #0b2c8a;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;

  margin-top: 20px;
}

/* Mobile view */
@media (max-width: 768px) {
   .talk-image {
    margin-left: 65px;
  }

  .form-fields {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 50px;
    margin-left: 20px;	
  }
}

/* -------------------------
   BLOGS
-------------------------- */
.blogs-section {
  padding: 80px 20px;
  text-align: center;
  background-image: url("../images/08e.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.blogs-section h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

.blogs-section span {
  color: #2a7fff;
}



.blog-card-home {
  width: 100%
}
.blog-card {
  flex: 0 0 50%; /* 2 cards at a time */
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.blog-img-home {
  height: 220px;
  background: #7a8087;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 0 rgba(46, 255, 204, 0.5);
}

.slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: center;
}

.blogs-slider {
  overflow: hidden;
  width: 100%;
}
.blogs-container {
  display: flex;
  width: 100%; /* 2 pages for 4 blogs on desktop */
  transition: transform 0.5s ease;
}
/* Arrow buttons */
.slider-btn {
  background: transparent;
  color: #000;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.slider-btn.prev {
  margin-right: 10px;
}

.slider-btn.next {
  margin-left: 10px;
}

.slider-btn:hover {
  background: #333;
}
/* Mobile view */
@media (max-width: 768px) {
   .blogs-container {
    width: 200%; /* 4 pages for 4 blogs */
  }

  .blog-card {
    width: 100%;
  }
}
/* -------------------------
   FOOTER
-------------------------- */
.sn-footer {
  background: #061e4a;
  color: #fff;
  padding: 50px 0 0;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 30px;
  align-items: start;
}

.footer-logo img {
  max-width: 200px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #d7d7d7;
  text-align: justify;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #d7d7d7;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #00e6ff;
  padding-left: 5px;
}

.footer-contact p {
  font-size: 14px;
  color: #d7d7d7;
  margin: 5px 0;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #d7d7d7;
  font-size: 14px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #00e6ff;
}

.footer-social img {
  width: 22px;
  height: 22px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  text-align: center;
  background: #041534;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #bbb;
}

.footer-list{
list-style:none;
padding:0;
margin:0;
padding: 25px 10px 10px 83px;
text-align: left;

}

.footer-list li{
margin-bottom:12px;
}

.footer-list a{
color:#d6e0f0;
text-decoration:none;
font-size:15px;
transition:0.3s;
}

.footer-list a:hover{
color:#ffffff;
padding-left:5px;
}

.footer-contact p {
    margin: 5px 0;
    text-align: left;
}
.footer-logo {
    text-align: left;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #00e6ff;
  color: #061e4a;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: 0.3s;
}

#backToTop:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-social {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-social a {
    justify-content: center;
  }
}
  
/* Footer social icon */

.sn-footer {
  padding: 50px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  height: 30px;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0a1a5c;
  text-decoration: none;
  font-size: 14px;
}

.footer-social img {
  height: 22px;
  width: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-social {
    gap: 20px;
  }

  .footer-logo img {
    height: 36px;
  }
}


/* -------------------------
   RESPONSIVE
-------------------------- */
@media(max-width: 992px) {
  .hero .container,
  .infrastructure-grid,
  .service-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .client-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
}
.page-banner {
  position: relative;
  height: 420px;
  background-image: url("../images/colocation/colocation-banner.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
}

/* Text content */
.banner-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.banner-content h1 {
  color: #28f2b3; /* teal-green like design */
  font-size: 48px;
  font-weight: 300;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }
  .page-banner-scale {
    height: 300px;
  }
 .page-banner-secure {
    height: 300px;
  }

  .banner-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 26px;
  }
}
/* SECTION BACKGROUND */
.colocation-section {
  padding: 100px 0;

}
.page-banner-scale {
  position: relative;
  height: 420px;
  background-image: url("../images/colocation/05.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner-secure {
  position: relative;
  height: 420px;
  background-image: url("../images/colocation/08.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD */
.colo-card {
  height: 100%;
  padding: 40px 30px;
  border-radius: 28px;
  color: #fff;
  background-image: url("../images/colocation/03.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* TITLE */
.card-title {
  font-size: 48px;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
  height: 170px;
}

.card-title-valueadded {
  font-size: 48px;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
  height: 100px;
}

/* LINE IMAGE UNDER TITLE */
.title-line {
  display: block;
  width: 50px;
  height: 4px;
  background-image: url("../images/colocation/title-line.png"); /* line image */
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 15px;
}

/* DESCRIPTION */
.card-desc {
  font-size: 18px;
  line-height: 1.2; 
  margin-bottom: 25px;
  opacity: 0.9;
  height: 150px;
}

.card-desc-valueadded {
  font-size: 18px;
  line-height: 1.2; 
  margin-bottom: 25px;
  opacity: 0.9;
  height: 120px;
}

@media (min-width: 769px) and (max-width: 1024px) {
	
  .card-desc {
    font-size: 18px;
    line-height: 1.2; 
    margin-bottom: 25px;
    opacity: 0.9;
    height: 300px;
  }
  .card-title {
    font-size: 32px;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 25px;
    position: relative;
    height: 150px;
 }
	
}

/* POINTS */


.card-points li {
  font-size: 14px;
  padding: 10px 0;
  /* border-bottom: 1px solid rgba(255,255,255,0.2); */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .card-title {
    font-size: 26px;
  }

  .colocation-section {
    padding: 60px 20px;
  }
}

.card-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.point-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 18px;
  margin-bottom: 14px;

  color: #ffffff;
  font-size: 15px;
  font-weight: 600;

  /* Background image + gradient overlay */
  background-image: url("../images/colocation/04.png");
  background-size: cover;
  background-position: center;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Text */
.point-text {
  z-index: 1;
}

/* Right small white bar */
.point-indicator {
  width: 28px;
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
  opacity: 0.9;
}
/* Feature container */
.feature-block {
  margin-bottom: 18px;
}

/* TOP STRIP */
.feature-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;

  /* 🔥 IMPORTANT: do NOT use cover */
    background-image: url("../images/colocation/04.png");;
    background-repeat: no-repeat;
    background-size: 96% 100%;   /* keeps strip shape */
    background-position: left;
    /* border-radius: 6px; */
    margin: 14px -29px;
}

/* Strip text */
.feature-title1{
  z-index: 1;
  font-size: 18px;
}

/* Right white line */
.feature-indicator {
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
  opacity: 0.9;
}

/* DESCRIPTION BELOW STRIP */
.feature-desc {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.2;
  color: #e6eef6;
}



.hero {
    height: 350px;
    background: url("assets/images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}



.hero h1 {
    font-size: 42px;
}

.hero span {
    font-weight: bold;
}




/* Section Title */
.section-title {
    text-align: center;
    padding: 40px 20px;
}

.section-title h2 {
    color: #0a2a66;
}

/* Blogs */
.blogs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.blog-card.reverse {
    flex-direction: row-reverse;
}

.blog-card img {
    width: 50%;
    border-radius: 12px;
}

.blog-content {
    width: 50%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    font-size: 18px;
    color: #0a2a66;
}

.blog-content.dark {
    background: #0a2a66;
    color: #fff;
}

.page-banner-blog {
    position: relative;
    min-height: 420px;              /* instead of fixed height */
    background-image: url("../images/blog/02.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Overlay */
.banner-overlay-blog {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Content */
.banner-content-blog {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: left;
    color: #fff;
    margin-right: 420px;
}

.banner-content-blog p {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}

.banner-content-blog h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

/* ========================= */
/* 📱 Mobile Responsive */
/* ========================= */
@media (max-width: 768px) {
    .page-banner-blog {
        min-height: 300px;
        padding: 30px 15px;
    }

    .banner-content-blog {
	margin: 0 auto;
        text-align: center;
    }

    .banner-content-blog p {
        font-size: 16px;
    }

    .banner-content-blog h1 {
        font-size: 26px;
        line-height: 1.3;
    }
}



.blog-wrapper {
    max-width: 1150px;
    margin: auto;
    padding: 60px 20px;
}

.blog-heading {
    text-align: center;
    color: #0a2a66;
    font-size: 28px;
    margin-bottom: 60px;
}

/* BLOG LIST */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* BLOG ROW */
.blog-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

/* Reverse layout */
.blog-item.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.blog-image {
    width: 45%;
}

.blog-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* ===============================
   BLOG BACKGROUND CONTAINER
================================ */
.blog-bg {
    background: linear-gradient(180deg, #f9fbfd 0%, #f1f5f9 100%);
    border: 1.5px solid #cfd8e3;
    border-radius: 28px;
    padding: 50px 60px;
    margin-bottom: 60px;
}

/* Remove ONE side border */
.blog-bg.no-left-border {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* RIGHT side open (image on right) */
.blog-bg.no-right-border {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* ===============================
   BLOG ROW
================================ */
.blog-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    width: 100%;
}

/* Reverse layout */
.blog-item.reverse {
    flex-direction: row-reverse;
}

/* ===============================
   IMAGE
================================ */
.blog-image {
    width: 45%;
}

.blog-image img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

/* ===============================
   CONTENT BOX
================================ */
.blog-box {
    width: 55%;
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    font-size: 25px;
    line-height: 1.4;
    color: #060a63;
    border: 1px solid #060a63;
}

/* Dark content box */
.blog-box.dark {
    background: #060a63;
    color: #ffffff;
}

.first-blog {
    background-color: #060a63;
    color: white;
}
/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

    .blog-bg {
        padding: 30px 20px;
        border: 1.5px solid #cfd8e3; /* restore full border */
    }

    .blog-bg.no-left-border,
    .blog-bg.no-right-border {
        border-left: 1.5px solid #cfd8e3;
        border-right: 1.5px solid #cfd8e3;
    }

    .blog-item,
    .blog-item.reverse {
        flex-direction: column;
    }

    .blog-image,
    .blog-box {
        width: 100%;
    }

    .blog-box {
        font-size: 18px;
        text-align: center;
    }
}

.add-blog-btn {
    display: inline-block;
    background: #0a2a66;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.add-blog-btn:hover {
    background: #08306b;
}
/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #0d6efd; /* blue */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#backToTop:hover {
    background-color: #084298;
    transform: translateY(-3px);
}

.page-banner-cyber-one {
  position: relative;
  height: 420px;
  background-image: url("../images/cybersecurity/01.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner-cyber-two {
  position: relative;
  height: 420px;
  background-image: url("../images/cybersecurity/02.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay-cyber {
  position: absolute;
  inset: 0;
}

.page-banner-valueadded {
  position: relative;
  height: 420px;
  background-image: url("../images/valueadded/rectangle_8.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay-valueadded {
  position: absolute;
  inset: 0;
}

.page-banner-resilience{
  position: relative;
  height: 420px;
  background-image: url("../images/valueadded/banner_2.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay-resilience{
  position: absolute;
  inset: 0;
}

.page-banner-secured{
  position: relative;
  height: 420px;
  background-image: url("../images/valueadded/banner_3.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay-secured{
  position: absolute;
  inset: 0;
}


.colo-card-flex {
  height: 100%;
  padding: 40px 30px;
  border-radius: 28px;
  color: #fff;
  background-image: url("../images/valueadded/02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.colo-card-secured {
  height: 100%;
  padding: 40px 30px;
  border-radius: 28px;
  color: #fff;
  background-image: url("../images/valueadded/03.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.colo-card-smart {
  height: 100%;
  padding: 40px 30px;
  border-radius: 28px;
  color: #fff;
  background-image: url("../images/valueadded/04.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.colo-card-four {
  height: 100%;
  padding: 40px 30px;
  border-radius: 28px;
  color: #fff;
  background-image: url("../images/cybersecurity/03.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.colo-card-five {
  height: 100%;
  padding: 40px 30px;
  border-radius: 28px;
  color: #fff;
  background-image: url("../images/cybersecurity/04.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner-readiness{
  position: relative;
  height: 420px;
  background-image: url("../images/valueadded/banner_4.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay-readiness{
  position: absolute;
  inset: 0;
}

.banner-content-valueadded h1 {
  color: #28f2b3;
  font-size: 64px;      
  font-weight: 200;     /* thin font */
  line-height: 1.2;
  letter-spacing: 1px;  /* gives same spacing look */
}

@media(max-width: 768px){
  .banner-content-valueadded h1{
    font-size: 36px;
    line-height: 1.3;
  }
}

/* industry banner */
.hero-banner-industry {
  background-image: url("../images/industry/W01a.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* container full height */
.hero-grid-industry {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Left content */
.hero-content-industry {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 70px;
  z-index: 2;
}

/* Main heading image */
.hero-title-img-industry {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Button image */
.hero-btn-img-industry {
  width: 180px;
  margin-top: 30px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .hero-banner-industry {
    min-height: 450px;
    background-position: center right;
  }

  .hero-content-industry {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    text-align: left;
  }

  .hero-title-img-industry {
    max-width: 320px;
  }

  .hero-btn-img-industry {
    width: 140px;
    margin-top: 20px;
  }
}

.bfsi-info-section {
  padding: 80px 0;
  background: url("../images/industry/W08.jpg") no-repeat center top;
  background-size: cover;
  position: relative;
}

/* optional overlay effect */
.bfsi-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 0;
}
.bfsi-strip-section {
  padding: 60px 0;
  background: #fff;
}

.bfsi-strip-bg {
  background-image: url("../images/industry/W08.jpg"); /* your bg image */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 45px 80px;
  text-align: center;
}

.bfsi-strip-bg p {
  margin: 0;
  font-size: 18px;
  color: #3d3d3d;
  line-height: 1.7;
  font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .bfsi-strip-bg {
    padding: 25px 20px;
    background-size: cover;
  }

  .bfsi-strip-bg p {
    font-size: 15px;
  }
}

.gradient-title {
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(90deg, #00ffcc, #00bfff, #00ff66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.usecase-list {
  padding: 0;
  margin: 15px 0 0 0;
  list-style: none;
}

.usecase-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}

.usecase-list li::before {
  content: "►";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  font-size: 14px;
}

.service-card-industry {
  max-width: 1200px;
  margin: auto;

  background-image: url("../images/services/service_back.png");
  background-repeat: no-repeat;
  background-size: cover;        /* cover full card */
  background-position: center;   /* center the image */

  border-radius: 20px;
  display: flex;
  align-items: center;
  height: 450px;
  gap: 40px;
}

.service-image-industry {
  flex: 1;
  text-align: center;
}
.service-image-industry img {
  max-width: 100%;
  height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
.service-card-industry {
  max-width: 1200px;
  margin: auto;

  background-image: url("../images/services/service_back.png");
  background-repeat: no-repeat;
  background-size: cover;        /* cover full card */
  background-position: center;   /* center the image */

  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 50px;
  gap: 40px;
  height: auto;
}
}
.value-delivered-section {
  padding: 90px 0;
  background-image: url("../images/industry/W07.png"); /* add your background image */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.value-content h2 {
  font-size: 60px;
  font-weight: 300;
  color: #1a1a5c;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.value-content p {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a5c;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .value-delivered-section {
    padding: 60px 0;
  }

  .value-content h2 {
    font-size: 40px;
  }

  .value-content p {
    font-size: 15px;
    padding: 0 15px;
  }
}



/* industry enterprise banner */

.hero-banner-enterprise {
  background-image: url("../images/industry/W01a.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* container full height */
.hero-grid-enterprise {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Left content */
.hero-content-enterprise {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 70px;
  z-index: 2;
}

/* Main heading image */
.hero-title-img-industry {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Button image */
.hero-btn-img-industry {
  width: 180px;
  margin-top: 30px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .hero-banner-enterprise{
    min-height: 450px;
    background-position: center right;
  }

  .hero-content-enterprise{
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    text-align: left;
  }

  .hero-title-img-industry {
    max-width: 320px;
  }

  .hero-btn-img-industry {
    width: 140px;
    margin-top: 20px;
  }
}

/* industry government banner */

.hero-banner-government {
  background-image: url("../images/industry/government/W1a.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* container full height */
.hero-grid-government {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Left content */
.hero-content-government {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 70px;
  z-index: 2;
}

/* Main heading image */
.hero-title-img-industry {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Button image */
.hero-btn-img-industry {
  width: 180px;
  margin-top: 30px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .hero-banner-government{
    min-height: 450px;
    background-position: center right;
  }

  .hero-content-government{
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    text-align: left;
  }

  .hero-title-img-industry {
    max-width: 320px;
  }

  .hero-btn-img-industry {
    width: 140px;
    margin-top: 20px;
  }
}


/* industry manufacture banner */

.hero-banner-manufacture {
  background-image: url("../images/industry/manufacture/W1a.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* container full height */
.hero-grid-manufacture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Left content */
.hero-content-manufacture {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 70px;
  z-index: 2;
}

/* Main heading image */
.hero-title-img-industry {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Button image */
.hero-btn-img-industry {
  width: 180px;
  margin-top: 30px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .hero-banner-manufacture{
    min-height: 450px;
    background-position: center right;
  }

  .hero-content-manufacture{
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    text-align: left;
  }

  .hero-title-img-industry {
    max-width: 320px;
  }

  .hero-btn-img-industry {
    width: 140px;
    margin-top: 20px;
  }
}
.blog-box a {
  text-decoration: none;
}

.blog-box.first-blog a{
    color: #fff;   /* only first blog */
}

.about-hero {
  background: url("../images/about/01a.png") center/cover no-repeat;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
}


.who-we-are {
  padding: 60px 0;
}

.who-box {
  background: #061e4a;
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
}

.who-box h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #1fd0c2;
}

.who-box-img {
   width: 30%;
   margin-bottom: 25px;
}

.about-card-section {
  padding: 30px 0;
}

.about-card {
  border: 1px solid #243e53;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
}

.about-card h2 {
    font-size: 70px;
    color: #061e4a;
    margin-bottom: 10px;
    font-weight: 300;
}

.about-card ul {
  padding-left: 20px;
}

.about-card ul li {
  font-size: 15px;
  margin-bottom: 0px;
}

.about-icon {
  max-width: 250px;
}

.our-journey {
  padding: 60px 0;
  background: url("../images/about/06.png") center center / cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}


.our-journey h2 {
  font-size: 42px;
  color: #1fd0c2;
  margin-bottom: 40px;
}

.journey-row h4 {
  font-size: 22px;
  font-weight: 700;
}

.certifications {
  padding: 0px 0;
  text-align: center;
}

.certifications h2 {
  font-size: 50px;
  margin-bottom: 10px;
  font-weight: 300;
}

.cert-icon {
  width: 100%;
  max-width: 120px;
}

.talk-to-us {
  padding: 60px 0;
  background: #f5f7f7;
}

.talk-to-us h2 {
  font-size: 48px;
  font-weight: 600;
  color: #1b1b1b;
}

@media(max-width:768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .who-box h2 {
    font-size: 26px;
  }

  .about-card h2 {
    font-size: 26px;
  }

  .our-journey h2 {
    font-size: 30px;
  }

  .talk-to-us h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;
  }
}


/* blog details page */
.blog-detail-wrapper {
    padding: 60px 0;
    background: #f5f7fb;
}

.blog-detail-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 30px;
}

.blog-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #061e4a;
    margin-bottom: 20px;
}

.blog-detail-content p {
    font-size: 16px;
    line-height: 28px;
    color: #333;
}
.page-banner-blogdetail {
    position: relative;
    min-height: 420px;
    background-image: url("../images/blog/03a.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* Overlay */
.banner-overlay-blogdetail {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* optional dark overlay */
}

/* Content */
.banner-content-blogdetail {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;   /* center text */
    color: #fff;
    margin: 0;            /* remove margin-right */
    padding: 0 15px;
}

.banner-content-blogdetail h1 {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner-blogdetail {
        min-height: 280px;
        padding: 40px 15px;
    }

    .banner-content-blogdetail h1 {
        font-size: 28px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .banner-content-blogdetail h1 {
        font-size: 22px;
    }
}


.blog-ui-section {
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-ui-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blog-ui-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 40px;
  background-image: url("../images/blog/blog-bg.png");
}

/* Top small box */
.top-info-box {
  background: rgba(238, 243, 245, 0.8);  /* glass effect */
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 18px 30px;
  margin-bottom: 40px;
  text-align: center;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}

.top-info-box p {
  margin: 0;
  font-size: 14px;
  color: #252323;
  line-height: 1.6;
  font-weight: 400;
}



/* Big empty cards */
 .big-card-row {
	    padding: 0px;
	}

.big-card {
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  margin-bottom: 35px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.big-card-content {
padding: 60px;
}

.big-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #061e4a;
    margin-bottom: 10px;

}

.big-card-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.big-card-image img {
     width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}


/* Mobile Fix */
@media (max-width: 768px) {
    .big-card-row {
	    padding: 15px;
	}	
    .big-card {
        padding: 15px;
        text-align: left;
        height: 450px;
    }

    .big-card-content h3 {
        font-size: 18px;
    }

    .big-card-content p {
        font-size: 14px;
    }

    .big-card-image img {
        max-width: 100%;
    }
}


/* Bottom icon */
.down-icon {
  text-align: center;
  margin-top: 10px;
}

.down-icon span {
  display: inline-flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid white;
  color: white;
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-ui-container {
    padding: 20px;
  }

  .top-info-box p {
    font-size: 13px;
  }
}

.privacypolicy-hero {
  background: url("../images/privacy-policy-banner-01.png") center/cover no-repeat;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
}

.small-text {
  font-size: 34px;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
}

.big-text {
  font-size: 70px;
  font-weight: 700;
  margin: 10px 0;
  letter-spacing: 2px;
}

.shield-text {
  font-size: 90px;
  font-weight: 700;
  margin: 10px 0;
  letter-spacing: 4px;
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .hero-slide {
    height: 420px;!important;
    background-position: center;
  }

  .hero-text-img {
    width: 90%;
  }

  .hero-btn-img {
    width: 170px;
  }

  .hero-arrow {
    font-size: 20px;
    padding: 10px 14px;
    
  }

   .hero-content {
    padding: 20px;
    max-width: 100%;
  }

  .small-text {
    font-size: 18px;!important;
    line-height: 1.2;
  }

  .big-text {
    font-size: 42px;!important;
    margin: 5px 0;
    letter-spacing: 1px;
    line-height: 1.1;
  }

  .shield-text {
    font-size: 34px;!important;
    margin: 5px 0;
    letter-spacing: 2px;
    line-height: 1.1;
  }

  .hero-btn-img {
    width: 160px;
    margin-top: 10px;
  }	
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .hero-slide {
    height: 260px;!important;
  }

  .hero-btn-img {
    width: 100px;
  }

  .hero-content {
    padding: 60px;
  }

  .small-text {
    font-size: 15px;!important;
  }

  .big-text {
    font-size: 34px;!important;
  }

  .shield-text {
    font-size: 26px;!important;
    letter-spacing: 1px;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {

  .blog-bg.no-left-border {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin: 0px;
  }
  .blog-bg.no-right-border {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0px;
	
 }

 .blog-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
 }

}

.banner-contact {
      width: 100%;
    /* Background Image */
    background: url("../images/contact/Con01a.png") no-repeat center center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
}

.support-section{
    width:80%;
    margin:80px auto;
    text-align:center;
}

.title{
    font-size:40px;
    color:#1a237e;
    margin-bottom:5px;
}

.subtitle{
    color:#555;
    margin-bottom:40px;
}

/* Card Style */
.support-card {
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:195px;

    /* Background Image */
    background: url("../images/contact/Con03a.png") no-repeat center center;
    background-size: cover;

    padding:35px 185px;
    border-radius:20px;
    margin-bottom:30px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.support-card-reverse {
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:195px;

    /* Background Image */
    background: url("../images/contact/Con04a.png") no-repeat center center;
    background-size: cover;

    padding:35px 185px;
    border-radius:20px;
    margin-bottom:30px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Icon */
.card-icon img{
    width:100px;
}

/* Text */
.card-content{
    text-align:left;
}

.card-content h3{
    font-size:28px;
    margin-bottom:10px;
    color:#00e5ff;
}

.card-content p{
    font-size:15px;
    margin-bottom:5px;
}

.card-content span{
    font-weight:500;
}

/* Description Section */
.description-section {
  background: #f4f6f9;   /* light grey background like screenshot */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.description-box {
  max-width: 1200px;
  background: #f9fbff;
  padding: 35px 50px;
  border-radius: 50px;
  text-align: center;
  border: 5px solid #d8d9e2;
  position: relative;	

 }

.description-box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #ced1dc;   /* Inner Border */
  border-radius: 40px;
  pointer-events: none;
}

.description-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #5a5a5a;
  margin: 0;
}

/* Responsive */
@media(max-width:768px){
    .support-card{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .card-content{
        text-align:center;
    }
}

.faq-container{
    width:70%;
    margin:50px auto;
}

.faq-title{
    text-align:center;
    margin-bottom:30px;
}

.faq-item{
    background:#fff;
    border-radius:6px;
    margin-bottom:12px;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
    display:none;	
}

.faq-item.show{
display:block;
}

.faq-question{
    padding:16px;
    cursor:pointer;
    font-weight:bold;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question::after{
    content:"▼";
    font-size:12px;
    transition:0.3s;
}

.faq-item.active .faq-question::after{
    transform:rotate(180deg);
}

.faq-answer{
    display:none;
    padding:16px;
    border-top:1px solid #eee;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-answer ul{
    padding-left:20px;
}

.read-more{
text-align:center;
margin-top:20px;
}

.read-more button{
padding:10px 20px;
border:none;
background:#0b2c8a;
color:#fff;
border-radius:30px;
cursor:pointer;
}

.clients-section {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}

.clients-slider {
  width: 100%;
  overflow: hidden;
}

.clients-track {
  display: flex;
  width: calc(200px * 20);
  animation: scroll 25s linear infinite;
}

.clients-track img {
  width: 180px;
  margin: 0 20px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo-image {
    height: 100px;
    width: 100px;
}

.enquiry-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Box */
.enquiry-popup {
    background: #fff;
    padding: 25px;
    width: 320px;
    border-radius: 10px;
    position: relative;
}

/* Close Button */
.enquiry-popup .close-btn {
     position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    z-index: 10000;
}
.enquiry-popup form input,
    .enquiry-popup form textarea {
        width: 100%;
        padding: 8px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

  .enquiry-popup form button {
     display: block;
    margin: 15px auto 0;
    padding: 10px;
    background: linear-gradient(135deg, #061b6e, #0226aa);
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    }

.silvernox-text {
    padding: 60px 20px;
    background: #ffffff;
}

.silvernox-text .container {
    max-width: 900px;
    margin: 0 auto;
}

.silvernox-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: left;
}

.faq-section {
    padding: 60px 20px;
    background: #f9fafc;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: left;

    /* Optional gradient */
    background: linear-gradient(to right, #00d084, #2f6df6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
}

.faq-item h3,
.faq-item p {
    display: block !important;
    color: #000 !important;
}



.faq-item p {
    display: none;
}

/* Show when active */
.faq-item.active p {
    display: block;
}

/* Cursor pointer */
.faq-item h3 {
    cursor: pointer;
    position: relative;
}

/* Optional + icon */
.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
}

/* Change to - when open */
.faq-item.active h3::after {
    content: '-';
}

.colocation-section-blog {
    padding: 60px 20px;
    background: #f9fbfd;
    text-align: center;
}

.section-title-blog {
    font-size: 32px;
    font-weight: 700;
    color: #0a3d2c;
    margin-bottom: 10px;
}

.section-subtitle-blog {
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.card-grid-blog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card-blog {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

/* ✅ FIXED HOVER */
.card-blog:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon-blog {
    font-size: 35px;
    margin-bottom: 15px;
}

/* ✅ FIXED CLASS NAME */
.card-blog h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.card-blog p {
    font-size: 14px;
    color: #555;
}
