/*
Theme Name: Khayus Technology Limited (Static)
Theme URI: https://example.com
Author: Khayus Technology
Author URI: https://example.com
Description: Static multi-page theme generated from uploaded site. Full asset mirror under /assets/.
Version: 1.2.0
License: GPL-2.0-or-later
Text Domain: khayus-static
*/


 /* Top Bar */
        /* Navbar Container */
        :root{
      --brand:#007bff;
      --text:#222;
      --muted:#666;
      --bg:#ffffff;
      --shadow:0 8px 24px rgba(0,0,0,.12);
      --radius:16px;
      --bp:900px;
    }
    *
	{
	box-sizing:border-box;
	margin:0;
	padding:0;
	}
	
    body {
		font-family:Arial, Helvetica, sans-serif;
		color:var(--text);
	}

/* -------- TOP NAV (desktop only) -------- */
.top-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: #222;
  color: white;
  padding: 5px 20px;
  font-size: 14px;
}

.top-left {
  display: flex;
  gap: 20px;
}

.top-left a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.top-right {
  display: flex;
  gap: 15px;
  font-size: 18px;
}

.top-right a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 25px;
}

.top-right a:hover {
  color: #007bff;
}

/* Hide top nav on mobile */
@media (max-width: 900px) {
  .top-nav {
    display: none;
  }
}



    /* ===== NAV WRAPPER ===== New code */
    .site-nav {
      position:sticky; 
	  top:0; 
	  z-index:1000;
      background:#f7f9fb; 
	  border-bottom:1px solid #e6edf3;
    }
	
    .nav-inner{
      max-width:1200px; 
	  margin:auto;
      display:flex; 
	  align-items:center; 
	  gap:24px;
      padding:12px 20px;
    }

    /* Logo */
    .brand img { 
	height:60px; 
	width:auto; 
	display:block}

    /* Hamburger (hidden on desktop) */
    .nav-open {
	display:none
	}
	
    .hamburger {
      margin-left:auto; 
	  display:none; 
	  cursor:pointer; 
	  font-size:24px; 
	  color:var(--text);
    }

    /* Menu row (desktop) */
    .menu {
      list-style:none; 
	  display:flex; 
	  align-items:center; 
	  gap:26px;
      margin-left:auto;
    }
	
    .menu > li {
		position:relative
		}
		
    .menu > li > a,
    .menu summary {
      font-weight:700; 
	  font-size:17px; 
	  line-height:1;
      color:#2a2f36; 
	  text-decoration:none;
      padding:8px 6px; 
	  border-radius:10px;
      display:inline-flex; 
	  align-items:center; 
	  gap:.4rem;
      cursor:pointer;
    }
    .menu > li > a:hover,
    .menu summary:hover {
		color:var(--brand);
		background:#eaf3ff
		}

    /* CTA */
    .cta {
      margin-left:8px;
      background:var(--brand); 
	  color:#fff; 
	  text-decoration:none;
      padding:10px 18px; 
	  border-radius:999px; 
	  font-weight:800;
      box-shadow:0 2px 0 rgba(0,0,0,.05);
      transition:transform .06s ease, background .2s ease;
    }
    .cta:hover {
		background:#0056b3
		}
		
    .cta:active {transform:translateY(1px)
	}

    /* ===== DROPDOWN (details/summary) ===== */
    details.dropdown {
		position:static
		}
		
    details.dropdown > summary {
      list-style:none; /* remove marker */
    }
	
    /* hide default marker cross-browser */
    details.dropdown > summary::-webkit-details-marker{
		display:none
		}
    details.dropdown > summary::after{
      content:"▾"; font-size:.9em; color:var(--muted);
      transition:transform .18s ease;
    }
    details[open].dropdown > summary::after{transform:rotate(180deg)}

    /* Panel */
    .dropdown-panel{
      position:absolute; top: calc(100% + 10px); 
	  left:0;
	  grid-template-columns: repeat(2, 1fr); /* 2 columns by default */
      background: rgba(255, 255, 255, 0.99); 
	  border-radius:var(--radius);
      box-shadow:var(--shadow);
      padding:16px;
      display:none;
      min-width: 500px;
	  overflow-wrap: break-word;
      z-index:1001;
    }


    /* Desktop hover opens panel; click (summary open) also works */
    details.dropdown:hover .dropdown-panel,
    details[open].dropdown .dropdown-panel{display:grid;}

    /* Multi-column (desktop) */
    .solutions-grid{
      display:grid; 
	  grid-template-columns:repeat(2, minmax(220px, 1fr));
      gap:10px 30px;
      min-width:500px;
    }
    .solutions-grid a{
      display:flex; align-items:center; gap:10px;
      text-decoration:none; color:#2b2f33; font-size:15px;
      padding:10px 10px; border-radius:10px;
    }
    .solutions-grid a i {
		width:20px; 
		text-align:center; 
		color:#1e66ff
		}
		
    .solutions-grid a:hover {
	background:#f2f6ff; 
	color:#113a8f;
	}

   /* ===== MOBILE ===== */
@media (max-width: 900px){
    .hamburger{ display: block; }

    /* stack */
    .nav-inner{ flex-wrap: wrap; }

    /* hide menu and CTA by default */
    .menu,
    .cta { display: none; width: 100%; }

    /* show menu and CTA only when checkbox is checked */
    .nav-open:checked ~ .menu {
        display: flex; 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 8px;
        padding: 12px 0;
    }

    .menu > li { width: 100%; }

    /* dropdown panel inside mobile menu */
    .dropdown-panel{
        position: static; 
        box-shadow: none; 
        padding: 8px 0; 
        width: 100%;
        display: none; 
        background: transparent; 
        margin-top: -2px;
    }
    details[open].dropdown .dropdown-panel { display: block; }

    /* single column for solutions grid */
    .solutions-grid{ grid-template-columns: 1fr; }
    .solutions-grid a{ padding: 10px 8px; }
}



/*hero background */
    .hero {
      background: url('images/protected2f50.jpg') no-repeat center center/cover;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 0 20px;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
	  text-align: justify;
    }

    .btn {
      background: #e63946;
      color: white;
      border: none;
      padding: 14px 28px;
      font-size: 1rem;
      border-radius: 30px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background: #d62828;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.6rem;
      }
      .hero p {
        font-size: 0.9rem;
      }
    }
 /* Vision and Mission */
 
    .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      text-align: left;
      color: white;
	  min-height: 400px;
    }

    .box {
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .box h3 {
      margin: 15px 0 10px;
      font-size: 20px;
      font-weight: bold;
    }

    .box p {
      font-size: 15px;
      line-height: 1.6;
    }

    /* Individual colors */
	
    .vision {
      background: #0097a7;
    }

    .mission {
      background: #1d3f8c;
    }

    .expertise {
      background: #e94e2d;
    }

    /* Icons */
    .icon {
      font-size: 40px;
      margin-bottom: 10px;
    }

    /* Responsive text */
    @media (max-width: 768px) {
      .box {
        text-align: center;
		
      }
    }
	
	/* WHO WE ARE Section */
.who-we-are-section {
  padding: 50px 20px;
  background: linear-gradient(to right, #ffffff, #e6f5fb); /* same as screenshot */
}

.who-we-are-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.who-we-are-label {
  color: #c71c1c;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 2rem;
}

.who-we-are-title {
  font-size: 2rem;
  font-weight: bold;
  color: #043a4a;
  margin-bottom: 20px;
}

.who-we-are-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #444;
}

/* Cards Grid */
.who-we-are-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Shared Card Styles */
.industry-expertise-card,
.tailored-solutions-card,
.trusted-partnerships-card,
.customer-centric-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: left;
  transition: transform 0.3s ease;
}

.industry-expertise-card:hover,
.tailored-solutions-card:hover,
.trusted-partnerships-card:hover,
.customer-centric-card:hover {
  transform: translateY(-5px);
}

.industry-expertise-card img,
.tailored-solutions-card img,
.trusted-partnerships-card img,
.customer-centric-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Card Titles */
.industry-expertise-title,
.tailored-solutions-title,
.trusted-partnerships-title,
.customer-centric-title {
  font-size: 1.1rem;
  color: #043a4a;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Card Texts */
.industry-expertise-text,
.tailored-solutions-text,
.trusted-partnerships-text,
.customer-centric-text {
  font-size: 0.95rem;
  color: #555;
}

/* Solution Section */
/* Section */
.solutions-section {
  padding: 60px 20px;
  background: #e6f5fb;
}

.solutions-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.solutions-label {
  color: #1565c0;
  font-weight: bold;
  margin-bottom: 10px;
}

.solutions-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #043a4a;
  margin-bottom: 15px;
}

.solutions-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #444;
}

/* Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Card */
.solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  height: 280px;
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay text */
.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  transition: all 0.4s ease;
}

.solution-overlay h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  z-index: 2;
}

/* Hidden content initially */
.solution-overlay p,
.solution-overlay .learn-more {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  font-size: 0.9rem;
}

/* Learn More link */
.learn-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  align-self: flex-end;
}

.learn-more:hover {
  text-decoration: underline;
}

/* Hover Effects */
.solution-card:hover img {
  transform: scale(1.1);
}

.solution-card:hover .solution-overlay p,
.solution-card:hover .solution-overlay .learn-more {
  opacity: 1;
  transform: translateY(0);
}

/* Partners Section */
  .partners-section {
      text-align: center;
      padding: 40px 20px;
    }

    .partners-section h2 {
      font-size: 22px;
      color: #5a5a9a;
      margin-bottom: 30px;
    }

    .slider-container {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .logo-slider {
      display: flex;
      gap: 60px;
      animation: scrollRight 25s linear infinite;
    }

    .logo-slider.reverse {
      animation: scrollLeft 25s linear infinite;
    }

    .logo-slider img {
      height: 60px;
      width: auto;
      object-fit: contain;
      filter: grayscale(0);
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .logo-slider img:hover {
      transform: scale(1.1);
      filter: grayscale(0%);
    }

    @keyframes scrollRight {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(0%); }
    }

    @keyframes scrollLeft {
      0% { transform: translateX(0%); }
      100% { transform: translateX(-100%); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .logo-slider img {
        height: 40px;
      }
    }

    @media (max-width: 480px) {
      .logo-slider img {
        height: 30px;
      }
    }
	
	/* why choose us section */
	 .why-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 50px 8%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .why-text {
      flex: 1 1 500px;
    }

    .why-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .why-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .why-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #b8241a;
    }

    .why-images {
      flex: 1 1 500px;
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 15px;
    }

    .why-images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .why-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 2;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .why-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .why-text {
        max-width: 100%;
      }

      .why-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .why-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	

/* Footer */
.footer {
  background: #0a1a3d;
  color: #fff;
  text-align: center;
  padding-top: 30px;
}

/* Top Section */
.footer-top {
  background: linear-gradient(180deg, #060d22, #0a1a3d); 
  padding: 30px 20px;
}

.footer-top h2 {
  margin: 0;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-top .social-icons a {
  margin: 0 10px;
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.footer-top .social-icons a:hover {
  color: #00aced;
}

/* Middle Section */
.footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px 10%;
  text-align: left;
}

.footer-col .logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-col p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-col .social-icons {
  margin-top: 10px;
}

.footer-col h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: #00aced;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid #222;
  padding: 15px 10%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom .bottom-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-bottom .bottom-links a {
  color: #ddd;
  text-decoration: none;
}

.footer-bottom .bottom-links a:hover {
  color: #00aced;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-middle {
    padding: 20px;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer i {
  color: #fff !important;
}

/* About Us Banner */
.about-banner {
  position: relative;
  width: 100%;
  height: 60vh; /* adjust height */
  background: url('images/telepresencec0a2.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlay */
.about-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 48, 73, 0.7); /* dark overlay */
  z-index: 1;
}

.about-banner .overlay {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-banner h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.about-banner p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner {
    height: 180px;
  }

  .about-banner h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-banner {
    height: 150px;
  }

  .about-banner h1 {
    font-size: 1.2rem;
  }
}

/* About Section */
.about-section {

  background-color: #f4fcff;
  padding: 50px 20px;

}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap; /* makes it responsive */
}

/* Left Text */
.about-text {
  flex: 1 1 500px;
}

.about-subtitle {
  color: #b22222; /* reddish */
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.about-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

/* Right Image */
.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    flex: 1 1 100%;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .about-title {
    font-size: 1.5rem;
  }

  .about-subtitle {
    font-size: 0.9rem;
  }
}

/* Contact Us Banner */
.contact-banner {
  position: relative;
  width: 100%;
  height: 60vh; /* adjust height */
  background: url('images/telepresencec0a2.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlay */
.contact-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 48, 73, 0.7); /* dark overlay */
  z-index: 1;
}

.contact-banner .overlay {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-banner h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.contact-banner p {
  color: #ffebd7;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-banner {
    height: 180px;
  }

  .contact-banner h1 {
    font-size: 1.5rem;
  }
  
    .contact-banner p {
    font-size: 1rem;
}
}


@media (max-width: 480px) {
  .contact-banner {
    height: 150px;
  }

  .contact-banner h1 {
    font-size: 1.2rem;
  }
  
    .contact-banner p {
    font-size: 0.7rem;
}
}


 /* Combined section with image + form */
    .contact-section {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding: 30px;
      background: #e6f5fb;
    }

    /* Left image with overlay info */
    .contact-image-box {
      position: relative;
      flex: 1 1 500px;
      overflow: hidden;
      border-radius: 10px;
    }

    .contact-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      display: block;
    }

    .contact-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.55);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 30px;
      border-radius: 10px;
    }

    .contact-overlay h2 {
      margin-bottom: 20px;
      font-size: 1.6rem;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      font-size: 1.5rem;
    }

    .contact-info-item i {
      margin-right: 12px;
      font-size: 1.2rem;
      color: #ffebd7;
      min-width: 20px;
      text-align: center;
    }

    /* Right form */
    .contact-form-box {
      flex: 1 1 400px;
      background: rgba(255,255,255,0.5);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .contact-form-box h2 {
      margin-bottom: 15px;
	  color: #D22B2B;
    }

    .contact-form-box form input, 
    .contact-form-box form textarea {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
	  background: rgba(255,255,255,0.5);
    }

    .contact-form-box form button {
      background: #007bff;
      color: #fff;
      padding: 12px 20px;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-size: 1rem;
	  font-weight: bold;
      transition: 0.3s;
    }

    .contact-form-box form button:hover {
      background: #0056b3;
    }

    /* Map Section (full width edge-to-edge) */
    .contact-map {
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .contact-map iframe {
      width: 100%;
      height: 400px;
      border: 0;
      display: block;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }

      .contact-map iframe {
        height: 300px;
      }
    }
	
/* Solutions Network Section */

.hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* full screen height */
  background: url('images/network.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6); /* dark blue overlay */
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-align: justify;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c; /* red */
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .network-banner {
    height: 150px;
  }

  .network-banner h1 {
    font-size: 1.2rem;
  }
  
    .network-banner p {
    font-size: 0.7rem;
}
}

/*why choose us Network Session */
	 .network-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  min-height: 200px;
      padding: 30px 2%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .network-text {
      flex: 1 1 500px;
    }

    .network-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .network-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .network-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #b8241a;
    }

    .network-images {
      flex: 6  1;
      display: grid;
      grid-template-columns: 6fr 1fr;
      grid-template-rows: 6fr 1fr;
      gap: 15px;
    }

    .network-images img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .network-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 3;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .network-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .network-text {
        max-width: 100%;
      }

      .network-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .network-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	
	/*Network Choose Section */
	
	.choose-section {
      position: relative;
      background: #e6f7fc;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 16px;
      max-width: 100%;
      margin: 40px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Background decorative images */
    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      width: 250px;
      height: 250px;
      z-index: 0;
      opacity: 0.7;
    }

    .choose-section::before {
      bottom: -20px;
      left: -20px;
      background-image: url("images/blob23289.png"); /* Replace with your bottom-left image */
    }

    .choose-section::after {
      top: -20px;
      right: -20px;
      background-image: url("images/blobd832.png"); /* Replace with your top-right image */
    }

    .choose-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 40px;
      color: #004055;
      position: relative;
      z-index: 1;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
	  min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .choose-box {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: left;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    }

    .choose-box h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #003344;
    }

    .choose-box p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Gallery Scroll Section */
	
	.gallery-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px;
    }

    .gallery-header {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 15px;
    }

    .gallery-header button {
      border: none;
      background: #D10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery-header button:hover {
      background: #555;
    }

    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .gallery-item {
        min-width: 220px;
      }
      .gallery-item img {
        height: 160px;
      }
    }
	
	/* CCTV Section */
.cctv-section {
  position: relative;
  width: 100%;
  height: 60vh; /* full screen height */
  background: url('images/image-032aeb.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.cctv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6); /* dark blue overlay */
  z-index: 1;
}

/* Content */
.cctv-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.cctv-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Button */
.cctv-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c; /* red */
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cctv-btn:hover {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .cctv-content h1 {
    font-size: 2rem;
  }
  .ccctv-content p {
    font-size: 1rem;
  }
  .cctv-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .cctv-banner {
    height: 150px;
  }

  .cctv-banner h1 {
    font-size: 1.2rem;
  }
  
    .cctv-banner p {
    font-size: 0.7rem;
}
}

/*why choose us CCTV Session */
	 .cctv-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  min-height: 200px;
      padding: 30px 2%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .cctv-text {
      flex: 1 1 500px;
    }

    .cctv-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .cctv-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .cctv-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .cctv-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .cctv-btn:hover {
      background-color: #b8241a;
    }

    .cctv-images {
      flex: 6  1;
      display: grid;
      grid-template-columns: 6fr 1fr;
      grid-template-rows: 6fr 1fr;
      gap: 15px;
    }

    .cctv-images img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .cctv-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 3;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .network-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .network-text {
        max-width: 100%;
      }

      .network-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .network-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	
	/*CCTV Choose Section */
	
	.choose-section {
      position: relative;
      background: #e6f7fc;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 16px;
      max-width: 100%;
      margin: 40px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Background decorative images */
    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      width: 250px;
      height: 250px;
      z-index: 0;
      opacity: 0.7;
    }

    .choose-section::before {
      bottom: -20px;
      left: -20px;
      background-image: url("images/blob23289.png"); /* Replace with your bottom-left image */
    }

    .choose-section::after {
      top: -20px;
      right: -20px;
      background-image: url("images/blobd832.png"); /* Replace with your top-right image */
    }

    .choose-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 40px;
      color: #004055;
      position: relative;
      z-index: 1;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
	  min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .choose-box {
      background: url('images/cam2.webp') no-repeat center center/cover;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: left;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    }

    .choose-box h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: white;
    }

    .choose-box p {
      font-size: 0.95rem;
      color: white;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Gallery Scroll Section */
	
	.gallery-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px;
    }

    .gallery-header {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 15px;
    }

    .gallery-header button {
      border: none;
      background: #D10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery-header button:hover {
      background: #555;
    }

    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .gallery-item {
        min-width: 220px;
      }
      .gallery-item img {
        height: 160px;
      }
    }
	
	/* Solutions cloud Section */

.cloud-hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* full screen height */
  background: url('images/cloud.jpeg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.cloud-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6); /* dark blue overlay */
  z-index: 1;
}

/* Content */
.cloud-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.cloud-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.cloud-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Button */
.cloud-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c; /* red */
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cloud-hero-btn:hover {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .cloud-hero-content h1 {
    font-size: 2rem;
  }
  .cloud-hero-content p {
    font-size: 1rem;
  }
  .cloud-hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .cloud-banner {
    height: 150px;
  }

  .cloud-banner h1 {
    font-size: 1.2rem;
  }
  
    .cloud-banner p {
    font-size: 0.7rem;
}
}

/*why choose us cloud Session */
	 .cloud-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  min-height: 200px;
      padding: 30px 2%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .cloud-text {
      flex: 1 1 500px;
    }

    .cloud-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .cloud-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .cloud-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #b8241a;
    }

    .cloud-images {
      flex: 6  1;
      display: grid;
      grid-template-columns: 6fr 1fr;
      grid-template-rows: 6fr 1fr;
      gap: 15px;
    }

    .cloud-images img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .cloud-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 3;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .cloud-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .cloud-text {
        max-width: 100%;
      }

      .cloud-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .cloud-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	
	/*cloud Choose Section */
	
	.choose-section {
      position: relative;
      background: #e6f7fc;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 16px;
      max-width: 100%;
      margin: 40px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Background decorative images */
    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      width: 250px;
      height: 250px;
      z-index: 0;
      opacity: 0.7;
    }

    .choose-section::before {
      bottom: -20px;
      left: -20px;
      background-image: url("images/blob23289.png"); /* Replace with your bottom-left image */
    }

    .choose-section::after {
      top: -20px;
      right: -20px;
      background-image: url("images/blobd832.png"); /* Replace with your top-right image */
    }

    .choose-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 40px;
      color: #004055;
      position: relative;
      z-index: 1;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
	  min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .choose-box {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: left;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    }

    .choose-box h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #003344;
    }

    .choose-box p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Gallery Scroll Section */
	
	.gallery-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px;
    }

    .gallery-header {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 15px;
    }

    .gallery-header button {
      border: none;
      background: #D10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery-header button:hover {
      background: #555;
    }

    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .gallery-item {
        min-width: 220px;
      }
      .gallery-item img {
        height: 160px;
      }
    }
	
	/* Solutions cyber Section */

.cyber-hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* full screen height */
  background: url('images/image-02ddb1.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.cyber-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6); /* dark blue overlay */
  z-index: 1;
}

/* Content */
.cyber-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.cyber-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.cyber-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Button */
.cyber-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c; /* red */
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cyber-hero-btn:hover {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .cyber-hero-content h1 {
    font-size: 2rem;
  }
  .cyber-hero-content p {
    font-size: 1rem;
  }
  .cyber-hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .cyber-banner {
    height: 150px;
  }

  .cyber-banner h1 {
    font-size: 1.2rem;
  }
  
    .cyber-banner p {
    font-size: 0.7rem;
}
}

/*why choose us cyber Session */
	 .cyber-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  min-height: 200px;
      padding: 30px 2%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .cyber-text {
      flex: 1 1 500px;
    }

    .cyber-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .cyber-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .cyber-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #b8241a;
    }

    .cyber-images {
      flex: 6  1;
      display: grid;
      grid-template-columns: 6fr 1fr;
      grid-template-rows: 6fr 1fr;
      gap: 15px;
    }

    .cyber-images img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .cyber-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 3;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .cyber-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .cyber-text {
        max-width: 100%;
      }

      .cyber-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .cyber-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	
	/*cyber Choose Section */
	
	.choose-section {
      position: relative;
      background: #e6f7fc;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 16px;
      max-width: 100%;
      margin: 40px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Background decorative images */
    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      width: 250px;
      height: 250px;
      z-index: 0;
      opacity: 0.7;
    }

    .choose-section::before {
      bottom: -20px;
      left: -20px;
      background-image: url("images/blob23289.png"); /* Replace with your bottom-left image */
    }

    .choose-section::after {
      top: -20px;
      right: -20px;
      background-image: url("images/blobd832.png"); /* Replace with your top-right image */
    }

    .choose-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 40px;
      color: #004055;
      position: relative;
      z-index: 1;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
	  min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .choose-box {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: left;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    }

    .choose-box h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #003344;
    }

    .choose-box p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Gallery Scroll Section */
	
	.gallery-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px;
    }

    .gallery-header {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 15px;
    }

    .gallery-header button {
      border: none;
      background: #D10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery-header button:hover {
      background: #555;
    }

    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .gallery-item {
        min-width: 220px;
      }
      .gallery-item img {
        height: 160px;
      }
    }
	
	
		/* Solutions recovery Section */

.recovery-hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* full screen height */
  background: url('images/disasterrecovery.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.recovery-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6); /* dark blue overlay */
  z-index: 1;
}

/* Content */
.recovery-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.recovery-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.recovery-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-align: justify;
}

/* Button */
.recovery-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c; /* red */
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.recovery-hero-btn:hover {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .recovery-hero-content h1 {
    font-size: 2rem;
  }
  .recovery-hero-content p {
    font-size: 1rem;
  }
  .recovery-hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .recovery-banner {
    height: 150px;
  }

  .recovery-banner h1 {
    font-size: 1.2rem;
  }
  
    .recovery-banner p {
    font-size: 0.7rem;
}
}

/*why choose us recovery Session */
	 .recovery-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  min-height: 200px;
      padding: 30px 2%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .recovery-text {
      flex: 1 1 500px;
    }

    .recovery-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .recovery-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .recovery-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #b8241a;
    }

    .recovery-images {
      flex: 6  1;
      display: grid;
      grid-template-columns: 6fr 1fr;
      grid-template-rows: 6fr 1fr;
      gap: 15px;
    }

    .recovery-images img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .recovery-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 3;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .recovery-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .recovery-text {
        max-width: 100%;
      }

      .recovery-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .recovery-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	
	/*recovery Choose Section */
	
	.choose-section {
      position: relative;
      background: #e6f7fc;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 16px;
      max-width: 100%;
      margin: 40px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Background decorative images */
    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      width: 250px;
      height: 250px;
      z-index: 0;
      opacity: 0.7;
    }

    .choose-section::before {
      bottom: -20px;
      left: -20px;
      background-image: url("images/blob23289.png"); /* Replace with your bottom-left image */
    }

    .choose-section::after {
      top: -20px;
      right: -20px;
      background-image: url("images/blobd832.png"); /* Replace with your top-right image */
    }

    .choose-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 40px;
      color: #004055;
      position: relative;
      z-index: 1;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
	  min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .choose-box {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: left;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    }

    .choose-box h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #003344;
    }

    .choose-box p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Gallery Scroll Section */
	
	.gallery-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px;
    }

    .gallery-header {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 15px;
    }

    .gallery-header button {
      border: none;
      background: #D10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery-header button:hover {
      background: #555;
    }

    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .gallery-item {
        min-width: 220px;
      }
      .gallery-item img {
        height: 160px;
      }
    }
	
		/* Solutions iso Section */

.iso-hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* full screen height */
  background: url('images/iso27001.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.iso-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6); /* dark blue overlay */
  z-index: 1;
}

/* Content */
.iso-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.iso-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.iso-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Button */
.iso-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c; /* red */
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.iso-hero-btn:hover {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .iso-hero-content h1 {
    font-size: 2rem;
  }
  .iso-hero-content p {
    font-size: 1rem;
  }
  .iso-hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .iso-banner {
    height: 150px;
  }

  .iso-banner h1 {
    font-size: 1.2rem;
  }
  
    .iso-banner p {
    font-size: 0.7rem;
}
}

/*why choose us iso Session */
	 .iso-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  min-height: 200px;
      padding: 30px 2%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .iso-text {
      flex: 1 1 500px;
    }

    .iso-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .iso-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .iso-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #b8241a;
    }

    .iso-images {
      flex: 6  1;
      display: grid;
      grid-template-columns: 6fr 1fr;
      grid-template-rows: 6fr 1fr;
      gap: 15px;
    }

    .iso-images img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .iso-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 3;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .iso-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .iso-text {
        max-width: 100%;
      }

      .iso-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .iso-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	
	/*iso Choose Section */
	
	.choose-section {
      position: relative;
      background: #e6f7fc;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 16px;
      max-width: 100%;
      margin: 40px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Background decorative images */
    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      width: 250px;
      height: 250px;
      z-index: 0;
      opacity: 0.7;
    }

    .choose-section::before {
      bottom: -20px;
      left: -20px;
      background-image: url("images/blob23289.png"); /* Replace with your bottom-left image */
    }

    .choose-section::after {
      top: -20px;
      right: -20px;
      background-image: url("images/blobd832.png"); /* Replace with your top-right image */
    }

    .choose-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 40px;
      color: #004055;
      position: relative;
      z-index: 1;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
	  min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .choose-box {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: left;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    }

    .choose-box h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #003344;
    }

    .choose-box p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Gallery Scroll Section */
	
	.gallery-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px;
    }

    .gallery-header {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 15px;
    }

    .gallery-header button {
      border: none;
      background: #D10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery-header button:hover {
      background: #555;
    }

    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .gallery-item {
        min-width: 220px;
      }
      .gallery-item img {
        height: 160px;
      }
    }
	
		/* Solutions managed Section */

.managed-hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* full screen height */
  background: url('images/managedit.webp') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.managed-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6); /* dark blue overlay */
  z-index: 1;
}

/* Content */
.managed-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.managed-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.managed-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-align: justify;
}

/* Button */
.managed-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c; /* red */
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.managed-hero-btn:hover {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .managed-hero-content h1 {
    font-size: 2rem;
  }
  .managed-hero-content p {
    font-size: 1rem;
  }
  .managed-hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .managed-banner {
    height: 150px;
  }

  .managed-banner h1 {
    font-size: 1.2rem;
  }
  
    .managed-banner p {
    font-size: 0.7rem;
}
}

/*why choose us managed Session */
	 .managed-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  min-height: 200px;
      padding: 30px 2%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .managed-text {
      flex: 1 1 500px;
    }

    .managed-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .managed-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .managed-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #b8241a;
    }

    .managed-images {
      flex: 6  1;
      display: grid;
      grid-template-columns: 6fr 1fr;
      grid-template-rows: 6fr 1fr;
      gap: 15px;
    }

    .managed-images img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .managed-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 3;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .managed-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .managed-text {
        max-width: 100%;
      }

      .managed-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .managed-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	
	/*managed Choose Section */
	
	.choose-section {
      position: relative;
      background: #e6f7fc;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 16px;
      max-width: 100%;
      margin: 40px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Background decorative images */
    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      width: 250px;
      height: 250px;
      z-index: 0;
      opacity: 0.7;
    }

    .choose-section::before {
      bottom: -20px;
      left: -20px;
      background-image: url("images/blob23289.png"); /* Replace with your bottom-left image */
    }

    .choose-section::after {
      top: -20px;
      right: -20px;
      background-image: url("images/blobd832.png"); /* Replace with your top-right image */
    }

    .choose-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 40px;
      color: #004055;
      position: relative;
      z-index: 1;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
	  min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .choose-box {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: left;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    }

    .choose-box h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #003344;
    }

    .choose-box p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Gallery Scroll Section */
	
	.gallery-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px;
    }

    .gallery-header {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 15px;
    }

    .gallery-header button {
      border: none;
      background: #D10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery-header button:hover {
      background: #555;
    }

    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .gallery-item {
        min-width: 220px;
      }
      .gallery-item img {
        height: 160px;
      }
    }
	
		/* Solutions networksm Section */

.networksm-hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* full screen height */
  background: url('images/networksecurity.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.networksm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6); /* dark blue overlay */
  z-index: 1;
}

/* Content */
.networksm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.networksm-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.networksm-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Button */
.networksm-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c; /* red */
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.networksm-hero-btn:hover {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .networksm-hero-content h1 {
    font-size: 2rem;
  }
  .networksm-hero-content p {
    font-size: 1rem;
  }
  .networksm-hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .networksm-banner {
    height: 150px;
  }

  .networksm-banner h1 {
    font-size: 1.2rem;
  }
  
    .networksm-banner p {
    font-size: 0.7rem;
}
}

/*why choose us networksm Session */
	 .networksm-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  min-height: 200px;
      padding: 30px 2%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .networksm-text {
      flex: 1 1 500px;
    }

    .networksm-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .networksm-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .networksm-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #b8241a;
    }

    .networksm-images {
      flex: 6  1;
      display: grid;
      grid-template-columns: 6fr 1fr;
      grid-template-rows: 6fr 1fr;
      gap: 15px;
    }

    .networksm-images img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .networksm-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 3;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .networksm-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .networksm-text {
        max-width: 100%;
      }

      .networksm-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .networksm-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	
	/*networksm Choose Section */
	
	.choose-section {
      position: relative;
      background: #e6f7fc;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 16px;
      max-width: 100%;
      margin: 40px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Background decorative images */
    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      width: 250px;
      height: 250px;
      z-index: 0;
      opacity: 0.7;
    }

    .choose-section::before {
      bottom: -20px;
      left: -20px;
      background-image: url("images/blob23289.png"); /* Replace with your bottom-left image */
    }

    .choose-section::after {
      top: -20px;
      right: -20px;
      background-image: url("images/blobd832.png"); /* Replace with your top-right image */
    }

    .choose-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 40px;
      color: #004055;
      position: relative;
      z-index: 1;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
	  min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .choose-box {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: left;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    }

    .choose-box h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #003344;
    }

    .choose-box p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Gallery Scroll Section */
	
	.gallery-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px;
    }

    .gallery-header {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 15px;
    }

    .gallery-header button {
      border: none;
      background: #D10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery-header button:hover {
      background: #555;
    }

    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .gallery-item {
        min-width: 220px;
      }
      .gallery-item img {
        height: 160px;
      }
    }
	
		/* Solutions vapt Section */

.vapt-hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* full screen height */
  background: url('images/vapt.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.vapt-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6); /* dark blue overlay */
  z-index: 1;
}

/* Content */
.vapt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.vapt-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.vapt-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Button */
.vapt-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c; /* red */
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.vapt-hero-btn:hover {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .vapt-hero-content h1 {
    font-size: 2rem;
  }
  .vapt-hero-content p {
    font-size: 1rem;
  }
  .vapt-hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .vapt-banner {
    height: 150px;
  }

  .vapt-banner h1 {
    font-size: 1.2rem;
  }
  
    .vapt-banner p {
    font-size: 0.7rem;
}
}

/*why choose us vapt Session */
	 .vapt-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  min-height: 200px;
      padding: 30px 2%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .vapt-text {
      flex: 1 1 500px;
    }

    .vapt-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .vapt-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .vapt-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #b8241a;
    }

    .vapt-images {
      flex: 6  1;
      display: grid;
      grid-template-columns: 6fr 1fr;
      grid-template-rows: 6fr 1fr;
      gap: 15px;
    }

    .vapt-images img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .vapt-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 3;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .vapt-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .vapt-text {
        max-width: 100%;
      }

      .vapt-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .vapt-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	
	/*vapt Choose Section */
	
	.choose-section {
      position: relative;
      background: #e6f7fc;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 16px;
      max-width: 100%;
      margin: 40px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Background decorative images */
    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      width: 250px;
      height: 250px;
      z-index: 0;
      opacity: 0.7;
    }

    .choose-section::before {
      bottom: -20px;
      left: -20px;
      background-image: url("images/blob23289.png"); /* Replace with your bottom-left image */
    }

    .choose-section::after {
      top: -20px;
      right: -20px;
      background-image: url("images/blobd832.png"); /* Replace with your top-right image */
    }

    .choose-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 40px;
      color: #004055;
      position: relative;
      z-index: 1;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
	  min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .choose-box {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: left;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    }

    .choose-box h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #003344;
    }

    .choose-box p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Gallery Scroll Section */
	
	.gallery-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px;
    }

    .gallery-header {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 15px;
    }

    .gallery-header button {
      border: none;
      background: #D10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery-header button:hover {
      background: #555;
    }

    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .gallery-item {
        min-width: 220px;
      }
      .gallery-item img {
        height: 160px;
      }
    }
	
		/* Solutions voip Section */

.voip-hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* full screen height */
  background: url('images/voip.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.voip-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 50, 0.6); /* dark blue overlay */
  z-index: 1;
}

/* Content */
.voip-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.voip-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.voip-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-align: justify;
}

/* Button */
.voip-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e74c3c; /* red */
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.voip-hero-btn:hover {
  background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
  .voip-hero-content h1 {
    font-size: 2rem;
  }
  .voip-hero-content p {
    font-size: 1rem;
  }
  .voip-hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .voip-banner {
    height: 150px;
  }

  .voip-banner h1 {
    font-size: 1.2rem;
  }
  
    .voip-banner p {
    font-size: 0.7rem;
}
}

/*why choose us voip Session */
	 .voip-choose-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  min-height: 200px;
      padding: 30px 2%;
      gap: 40px;
      flex-wrap: wrap;
	  background: #e6f5fb;
    }

    .voip-text {
      flex: 1 1 500px;
    }

    .voip-text h4 {
      color: #3366cc;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .voip-text h2 {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #111;
    }

    .voip-text p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .contact-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #d93025;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #b8241a;
    }

    .voip-images {
      flex: 6  1;
      display: grid;
      grid-template-columns: 6fr 1fr;
      grid-template-rows: 6fr 1fr;
      gap: 15px;
    }

    .voip-images img {
      width: 100%;
      height: 90%;
      object-fit: cover;
      border-radius: 12px;
    }

    /* Large image spanning */
    .voip-images .img-large {
      grid-row: 1 / span 2;
      grid-column: 1 / 3;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .voip-choose-section {
        flex-direction: column;
        text-align: center;
      }

      .voip-text {
        max-width: 100%;
      }

      .voip-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .voip-images .img-large {
        grid-row: auto;
        grid-column: span 2;
      }
    }
	
	/*voip Choose Section */
	
	.choose-section {
      position: relative;
      background: #e6f7fc;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 16px;
      max-width: 100%;
      margin: 40px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    /* Background decorative images */
    .choose-section::before,
    .choose-section::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-repeat: no-repeat;
      width: 250px;
      height: 250px;
      z-index: 0;
      opacity: 0.7;
    }

    .choose-section::before {
      bottom: -20px;
      left: -20px;
      background-image: url("images/blob23289.png"); /* Replace with your bottom-left image */
    }

    .choose-section::after {
      top: -20px;
      right: -20px;
      background-image: url("images/blobd832.png"); /* Replace with your top-right image */
    }

    .choose-title {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 40px;
      color: #004055;
      position: relative;
      z-index: 1;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
	  min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .choose-box {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: left;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
    }

    .choose-box h3 {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #003344;
    }

    .choose-box p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
      }
    }
	
	/* Gallery Scroll Section */
	
	.gallery-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px;
    }

    .gallery-header {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-bottom: 15px;
    }

    .gallery-header button {
      border: none;
      background: #D10000;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery-header button:hover {
      background: #555;
    }

    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .gallery::-webkit-scrollbar {
      display: none;
    }

    .gallery-item {
      position: relative;
      min-width: 280px;
      flex: 0 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 10px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 16px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .gallery-item {
        min-width: 220px;
      }
      .gallery-item img {
        height: 160px;
      }
    }


/* ===== NAV Solutions submenu: scoped overrides (final) ===== */
details.dropdown .dropdown-panel .solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 10px 30px;
}

/* Mobile: force single column and safe panel sizing */
@media (max-width: 900px){
  details.dropdown .dropdown-panel { 
    display: block !important;
    position: static !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 8px 0 !important;
    min-width: 0 !important;
    width: 100% !important;
  }
  details.dropdown .dropdown-panel .solutions-grid { 
    grid-template-columns: 1fr !important;
  }
}

/* Privacy Policy Section */
    .privacy-policy-section {
      padding: 50px 20px;
      text-align: center;
      background-color: #f4fcff;
    }

    .privacy-policy-section h1 {
      font-size: 2.5rem;
      color: #043a4a;
      margin-bottom: 30px;
    }

    .privacy-policy-section p {
      font-size: 1.1rem;
      color: #444;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .privacy-policy-section h2 {
      font-size: 1.5rem;
      color: #043a4a;
    }

    /* Box styling for each policy section */
    .policy-box {
      background-color: #e6f7ff;
      padding: 20px;
      margin: 20px 0;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-align: center; /* Center-align the text and lists */
    }

    .policy-box h3 {
      font-size: 1.25rem;
      color: #043a4a;
      margin-bottom: 10px;
    }

    .policy-box ul {
      list-style-type: none;
      padding-left: 20px;
      text-align: left; /* Center the text, but keep the list style */
      margin: 0 auto;
      display: inline-block;
    }

    .policy-box ul li {
      font-size: 1rem;
      color: #444;
      text-align: center; /* Center-align list items */
    }

    /* Styling for Contact Link */
    .policy-box a {
      color: #007bff;
      text-decoration: none;
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
      .privacy-policy-section {
        padding: 30px 10px;
      }

      .privacy-policy-section h1 {
        font-size: 2rem;
      }

      .privacy-policy-section h2 {
        font-size: 1.2rem;
      }

      .policy-box {
        padding: 15px;
      }

      .policy-box h3 {
        font-size: 1.1rem;
      }

      .policy-box ul li {
        font-size: 0.9rem;
      }
    }


/* === KHAYUS: Solutions section unified, fully responsive === */
.solution-card{position:relative;overflow:hidden;border-radius:10px;background:none;box-shadow:none}
.solution-card img{width:100%;height:280px;object-fit:cover;display:block;border-radius:10px}
@media (max-width: 768px){.solution-card img{height:200px}}
.solution-overlay{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;color:#fff;background:none;padding:0;width:90%;text-shadow:0 2px 5px rgba(0,0,0,.7)}
.solution-overlay h3,.solution-overlay p,.solution-overlay a{margin:5px 0;color:#fff}
.solution-overlay .learn-more:hover{text-decoration:underline}

/* Grid: responsive without overflow */
.solutions-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;width:100%;margin:0 auto;box-sizing:border-box}
@media (max-width:480px){.solutions-grid{grid-template-columns:1fr}}

/* Safety: prevent stray horizontal overflow */
html,body{max-width:100%;overflow-x:hidden}



/* === Mobile Fix for Overflow Issues === */
@media (max-width: 768px) {
  .solutions-grid,
  .dropdown-panel,
  .gallery-item {
    min-width: unset !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .solution-card,
  .solution-card img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}
