:root {
  --hero-bg:  /* Soft Aqua Glow */
    radial-gradient(circle at 20% 30%, rgba(221, 40, 64, 0.4), transparent 40%),
    /* Trust Blue Glow */
    radial-gradient(circle at 80% 20%, rgba(120, 25, 27, 0.4), transparent 40%),
    /* Deep Medical Blue Glow */
    radial-gradient(circle at 60% 80%, rgba(179, 40, 72, 0.3), transparent 40%),
    /* Deep Professional Gradient Base */
    linear-gradient(135deg, #2f0a13, #40111a, #781924, #2f0a0a);
    --hero-bg-2:  /* Soft Aqua Glow */
    radial-gradient(circle at 20% 30%, rgba(40, 58, 221, 0.4), transparent 40%),
    /* Trust Blue Glow */
    radial-gradient(circle at 80% 20%, rgba(25, 54, 120, 0.4), transparent 40%),
    /* Deep Medical Blue Glow */
    radial-gradient(circle at 60% 80%, rgba(40, 61, 179, 0.3), transparent 40%),
    /* Deep Professional Gradient Base */
    linear-gradient(135deg, #0a192f, #112240, #193f78, #0a192f);
    --heading-color:#ffffff;
    --paragraph-color:#cfcfcf;
    --our-services-button-glow: 0 0 15px #ffba26;
    --contact-button-bg:#000;
    --contact-button-text-color:#fff;
    --contact-button-hover-bg:#fff;
    --contact-button-hover-text-color:#000;
    --services-bg:linear-gradient(90deg,#050505,#1a1c31,#3628b3,#1a1a1a);
    --services-title-text-color:#fff;
    --services-card-bg:rgba(12, 24, 42, 0.384);
    --services-card-paragraph-color:#bdbdbd;
    --experience-badge-bg:#51b0eb;
    --partner-item-icon-color:#c5d1de;
    --partner-item-icon-bg-color:rgba(215, 225, 233, 0.15);
}

.dark-mode {
  
  --hero-bg: url(assets/Banners/telecom-banner-5.jpg);
    --hero-bg-2:  url(assets/Banners/telecom-banner-5.jpg);
    --heading-color:#fff;
    --paragraph-color:#cfcfcf;
    --our-services-button-glow: 0 0 15px #ffba26;
    --contact-button-bg:#fff;
    --contact-button-text-color:#fff;
    --contact-button-hover-bg:#000;
    --contact-button-hover-text-color:#fff;
    --services-bg: /* Soft Aqua Glow */
    radial-gradient(circle at 20% 30%, rgba(73, 40, 221, 0.4), transparent 40%),
    /* Trust Blue Glow */
    radial-gradient(circle at 80% 20%, rgba(57, 25, 120, 0.4), transparent 40%),
    /* Deep Medical Blue Glow */
    radial-gradient(circle at 60% 80%, rgba(58, 40, 179, 0.3), transparent 40%),
    /* Deep Professional Gradient Base */
    linear-gradient(135deg, #0e0a2f, #181140, #211978, #0c0a2f);
    --services-title-text-color:#fff;
    --services-card-bg:rgba(10, 5, 5, 0.384);
    --services-card-paragraph-color:#bdbdbd;
    --experience-badge-bg:#152c67;
    --partner-item-icon-color:#c5d1de;
    --partner-item-icon-bg-color:rgba(233, 215, 215, 0.15);
}

.light-mode {
  --hero-bg:  url(assets/Banners/telecom-banner-light.jpg);
--hero-bg-2: linear-gradient(90deg, #f5f5f5, #ede6f8);

  --heading-color: #0a192f;
  --paragraph-color: #333;
  --our-services-button-glow: 0 0 15px #ffba26;
  --contact-button-bg: #000;
  --contact-button-text-color: #000;
  --contact-button-hover-bg: #000;
  --contact-button-hover-text-color: #fff;
  --services-bg: linear-gradient(90deg, #f5f5f5, #e6f8f0);
  --services-title-text-color: #0a192f;
  --services-card-bg: rgba(255, 255, 255, 0.8);
  --services-card-paragraph-color: #555;
  --experience-badge-bg: #ffba26;
  --partner-item-icon-color: #062e69;
  --partner-item-icon-bg-color: rgba(175, 206, 237, 0.8);
}



/*Theme button css/

/* Positioning the container in the bottom right */
.container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  flex-direction: row-reverse; /* Places text to the left of the button */
}

/* Tooltip Styling */
.container::after {
  content: "Dark theme"; /* Default (Light Mode) text */
  position: absolute;
  bottom: 60px; /* Space between button and text */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  color: #0f0f0f;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Show tooltip on hover */
.container:hover::after {
  opacity: 1;
}

/* Change text when checkbox is checked (Dark Mode) */
.container:has(#switch:checked)::after {
  content: "Light theme";
  color: #eeebeb;
}

/* --- Original Uiverse.io Styles (No changes) --- */
.toggle {
   /* Glass Effect */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 50px 20px rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.input { display: none; }

.icon {
  grid-column: 1 / 1;
  grid-row: 1 / 1;
  transition: transform 500ms;
  line-height: 0.1;
}

.icon--sun { transform: scale(0); }

#switch:checked + .icon--moon { transform: rotate(360deg) scale(0); }

#switch:checked ~ .icon--sun {
  transition-delay: 200ms;
  transform: scale(1) rotate(360deg);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .container {
    bottom: 20px;
    right: 20px;
  }
  /* Hide the text on mobile/tablet to avoid cluttering the small screen */
  .container::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    bottom: 15px;
    right: 15px;
  }
  .toggle {
    transform: scale(0.9);
  }
}



 





html{
  scroll-behavior:smooth;
}

/* ================= ANIMATION SYSTEM ================= */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Fade In */
[data-animate="fade-in"] {
  transform: translateY(0);
}

/* Fade Up */
[data-animate="fade-up"] {
  transform: translateY(40px);
}

/* Fade Down */
[data-animate="fade-down"] {
  transform: translateY(-40px);
}

/* Fade Left */
[data-animate="fade-left"] {
  transform: translateX(40px);
}

/* Fade Right */
[data-animate="fade-right"] {
  transform: translateX(-40px);
}

/* Zoom In */
[data-animate="zoom-in"] {
  transform: scale(0.85);
}

/* Zoom Out */
[data-animate="zoom-out"] {
  transform: scale(1.15);
}

/* Active State */
[data-animate].animate {
  opacity: 1;
  transform: translate(0, 0);
}


/* ========== RESET ========== */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Inter,sans-serif;background:#000;color:#fff}

/* ================= ANIMATION SYSTEM ================= */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Fade In */
[data-animate="fade-up"] {
  transform: translateY(0);
}

/* Fade Up */
[data-animate="fade-up"] {
  transform: translateY(40px);
}

/* Fade Down */
[data-animate="fade-down"] {
  transform: translateY(-40px);
}

/* Fade Left */
[data-animate="fade-left"] {
  transform: translateX(40px);
}

/* Fade Right */
[data-animate="fade-right"] {
  transform: translateX(-40px);
}

/* Active State */
[data-animate].animate {
  opacity: 1;
  transform: translate(0, 0);
}




/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 10px;              /* 1. Pull it away from the top edge */
  left: 50%;
  transform: translateX(-50%); /* 2. Center it horizontally */
  width: 98%;             /* 3. Reduce width so corners are visible */
  max-width: auto;      /* Optional: keeps it from getting too wide */
  height: 80px;
  padding: 0 40px;        /* Adjusted padding for shorter width */
  display: flex;
  align-items: center;
  z-index: 100;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  
  /* 4. Rounded Corners & Full Border */
  border-radius: 40px;    /* Half the height creates a pill shape */
  border: 1px solid rgba(255, 255, 255, 0.2); 
  
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-shadow: #000 0px 0px 10px;

}


  


.logo{
  font-family:Montserrat,sans-serif;
  font-weight:700;
  font-size:55px;
}
.logo span{
  display:block;
  font-size:50px;
  letter-spacing:3px;
  opacity:.8;
}

.nav-menu{
  margin-left:auto;
  display:flex;
  gap:36px;
  align-items: center;

}

.nav-item{position:relative;}

.nav-link{
  font-size:17px;
  font-weight:500;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
  transition:color .25s ease;
  color: whitesmoke;
  text-decoration: none;
}
.nav-link:hover{color:#fde61c}

/* Arrow animation */
.nav-arrow{
  font-size:10px;
  transition:transform .25s ease;
}
.nav-item:hover .nav-arrow{transform:rotate(180deg)}

/* Dropdown */
.dropdown{
  position:absolute;
  top:120%;
  left: 12px;
  min-width:220px;
  background: rgba(45, 45, 45, 0.412);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-radius: 20px 20px 20px 20px !important;
  padding:10px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.25s ease;
}
.nav-item:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.dropdown a{
  display:block;
  padding:12px 18px;
  font-size:14px;
  text-decoration:none;
  color:#fff;
}
.dropdown a:hover{
  text-shadow: 5px 1px 8px #fff;
  background: linear-gradient(135deg,#9b28dd7d,rgba(255, 255, 255, 0.242));
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  padding-left:16px;
  border-radius: 10px;
}

/* ========== NEW: HAMBURGER ========== */
.hamburger{
  display:none;
  margin-left:auto;
  font-size:28px;
  cursor:pointer;
}

/* ========== NEW: MOBILE MENU ========== */
.mobile-overlay{
  position:fixed;
  inset:0;

  opacity:0;
  pointer-events:none;
  transition:.3s;
  z-index:150;
}
.mobile-overlay.active{
  opacity:1;
  pointer-events:auto;
  
}

.mobile-menu{
  position:fixed;
  top:0;
  right:-200%;
  width:280px;
  height:100vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  padding:24px;
  transition:.35s ease;
  z-index:200;
  border-radius: 20px 0 0 20px !important;
}
.mobile-menu.active{right:0}

.mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}
.mobile-close{
  font-size:28px;
  cursor:pointer;
}

.mobile-menu a{
  display:block;
  padding:14px 0;
  font-size:16px;
  color:#fff;
  text-decoration:none;
  border-bottom:1px solid #222;
}



/* ========== RESPONSIVE ========== */
@media(max-width:1024px){
  .nav-menu{display:none !important;}
  .hamburger{display:block}
  .hero-content{grid-template-columns:1fr}
  .hero-right{justify-self:start}
}
@media(max-width:768px){
  .navbar{padding:0 24px}
  .hero-content{padding:0 24px}
  .hero-left h1{font-size:42px}
}
.mobile-accordion-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;  
}
.mobile-accordion.open .mobile-accordion-content{
  max-height:300px;
}
.mobile-accordion {
  border-bottom:1px solid #222;

}


/* Mobile menu hover / tap feedback */
.mobile-link:hover,
.mobile-link:active,
.mobile-accordion-btn:hover {
  color:#fde61c;
    
}
.mobile-accordion-content{
    padding-left: 20px;
}
/* Sub-links hover */
.mobile-accordion-content a:hover,
.mobile-accordion-content a:active {
  color:#fde61c;
  padding-left:16px;
  transition:all .25s ease;
  
}
/* Divider line after accordion headers */
.mobile-accordion-btn {
  padding:14px 0;
  font-size:16px;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  border-bottom:1px solid #222; /* ← THIS LINE */
}



/* ================= telecommunication HERO ================= */

.telecommunication-hero{
  height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
 


  background: var(--hero-bg);
  background-size: cover;
}

/* subtle glow overlay */
/* subtle glow overlay */
.telecommunication-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1; /* Explicitly set to background layer */
}

/* Content */
.telecommunication-hero-content {
  position: relative;
  z-index: 2; /* Explicitly set above the overlay */
  max-width: 900px;
  padding: 0 20px;
}

/* Heading */
.telecommunication-hero h1{
  font-family:Montserrat,sans-serif;
  font-weight:800;
  font-size:70px;
  line-height:1.1;
  margin-bottom:25px;

  background:linear-gradient(90deg,#2ebad6,#ffe4e4,#b662f2);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Subtitle */
.telecommunication-hero p{
  font-size:22px;
  line-height:1.6;
  margin-bottom:35px;
  color:#e8e8e8;
}

/* Button */
.telecommunication-hero .hero-btn{
  padding:14px 28px;
  border-radius:30px;
  background:linear-gradient(135deg,#28ddb2,#195d78,#3628b3);
  text-decoration:none;
  color:#fff;
  font-weight:600;
  transition:.3s;
}

.telecommunication-hero .hero-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}

@media(max-width:600px){
  .telecommunication-hero{
    padding: 25px 50px;
    

  }
.telecommunication-hero h1{
  font-size:38px !important;
  font-weight: 800;
  padding: fit-content;
  width: fit-content;
  margin-right: 50px;
  margin-left: 50px;
  
}

.telecommunication-hero p {
  /* 1. Basic Styling */
  font-size: 18px; 
  line-height: 1.6;
  margin-bottom: 35px;
  color: #e8e8e8;

  /* 2. The Width Fix */
  /* Remove width: fit-content and replace with these: */
  width: 90% !important;   /* Occupies 90% of screen width */
  max-width: 500px;        /* Limits width on larger screens */
  margin-inline: auto;     /* Centers the paragraph horizontally */

  /* 3. The Wrapping & Padding Fix */
  /* Replace padding: fit-content with actual values */
  padding: 0 15px !important; 
  box-sizing: border-box !important;
  white-space: normal !important; /* Forces text to wrap to new lines */
  word-wrap: break-word !important; /* Breaks long words if necessary */
}
}





/* ================= telecommunication INTRO ================= */

.telecommunication-intro{
    height:100vh;
  padding:120px 8%;
  background:var(--hero-bg-2);
  background-size: cover;
  background-attachment: fixed;
  
}

.telecommunication-intro-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* Left */

.intro-tag{
  color:#4f8cff;
  font-size:14px;
  letter-spacing:2px;
  font-weight:600;
}

.telecommunication-intro h2{
  font-family:Montserrat,sans-serif;
  font-size:56px;
  line-height:1.1;
  margin:20px 0;
  color:var(--heading-color);
}

.telecommunication-intro-left h2 span{
  color:#fbcf0f;
}

.telecommunication-intro p{
  font-size:18px;
  line-height:1.7;
  color:var(--paragraph-color);
  max-width:520px;
}

/* Buttons */

.intro-buttons{
  margin-top:35px;
  display:flex;
  gap:25px;
}

.intro-btn{
  padding:14px 26px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.intro-btn.primary{
  background:#ffaf2f;
  color:#000000;
}

.intro-btn.primary:hover{
  box-shadow: var(--our-services-button-glow);
}

.intro-btn.secondary{
  border:1px solid #aaa;
  color:var(--contact-button-text-color);
}

.intro-btn.secondary:hover{
  background:var(--contact-button-hover-bg);
  color:var(--contact-button-hover-text-color);
}

/* Image */

.telecommunication-intro-right img{
  width:100%;
  border-radius:14px;
  box-shadow:0 20px 40px rgba(0,0,0,.5);
}

/* Responsive */

@media(max-width:900px){

.telecommunication-intro-container{
  grid-template-columns:1fr;
  gap:40px;
}

.telecommunication-intro h2{
  font-size:36px;
}

}

/* ================= telecommunication SERVICES ================= */

.telecommunication-services{
padding:120px 8%;
  background:var(--hero-bg-2);
  background-size: cover;
  background-attachment: fixed;
}

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

.services-title{
font-family:Montserrat,sans-serif;
font-weight:800;
font-size:48px;
margin-bottom:10px;
color:var(--services-title-text-color);
}

.services-subtitle{
color:var(--paragraph-color);
margin-bottom:60px;
font-size:18px;
}

.services-category{
  font-family:Montserrat,sans-serif;
  font-weight:700;
  font-size:38px;
  margin-bottom:30px;
  color:#ffba26;
}

/* GRID */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
gap:30px;
padding-top: 20px;
padding-bottom: 50px;
}

/* CARD */

.service-card{
background:var(--services-card-bg);
border:1px solid rgba(255, 255, 255, 0.16);
padding:35px;
border-radius:14px;
text-align:left;
transition:.35s;
backdrop-filter:blur(10px);
cursor: pointer;
}

.service-card i{
font-size:26px;
color:#ffba26;
margin-bottom:15px;
}

.service-card h3{
color: var(--heading-color);
margin-bottom:10px;
font-size:20px;
}

.service-card p{
color:var(--services-card-paragraph-color);
line-height:1.6;
font-size:15px;
}

/* Hover */

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,.6);
border-color:#ebedff;
}



/* RESPONSIVE */

@media(max-width:1000px){

h2.services-category {
    font-size: 32px !important; /* Adjusted for a heading */
    width: 90% !important;
    max-width: 500px;
    margin-inline: auto;
    text-align: center; /* Ensures the text inside is centered */
    display: block; /* Ensures width and margin-inline work correctly */
  }

  .telecommunication-services{

height: auto;
padding-top: 200px;
margin-bottom: 0px;
}
.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

.services-title{
font-size:32px;
}

}





/* ================= WHY PARTNER ================= */

.why-partner{
padding:120px 8%;
  background:var(--hero-bg-2);
  background-size: cover;
  background-attachment: fixed;
color:var(--heading-color);
}

.partner-container{
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:80px;
}

/* IMAGE */

.partner-image{
position:relative;
}

.partner-image img{
width: 500px;
height: 500px;
max-width:500px;
border-radius:50%;
border:6px solid rgba(255,255,255,0.05);
}

/* EXPERIENCE BADGE */

.experience-badge{
position:absolute;
bottom:40px;
right:40px;
background:var(--experience-badge-bg);
padding:30px 40px;
border-radius:16px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.6);
}

.experience-badge h3{
font-size:40px;
margin-bottom:5px;
}

.experience-badge span{
font-size:12px;
letter-spacing:1px;
text-transform:uppercase;
opacity:.8;
}

/* RIGHT CONTENT */

.partner-content h2{
font-family:Montserrat,sans-serif;
font-size:48px;
font-weight:800;
margin-bottom:40px;
}

/* ITEMS */

.partner-item{
display:flex;
gap:20px;
margin-bottom:35px;
}

.partner-item .icon{
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:var(--partner-item-icon-bg-color);
color: var(--partner-item-icon-color);
font-size:22px;
flex-shrink:0;
}

.partner-item h3{
font-size:20px;
margin-bottom:6px;
}

.partner-item p{
color: var(--services-card-paragraph-color);
line-height:1.6;
}



@media(max-width:900px){

  .why-partner{
height: 1100px;
} 


.partner-container{
grid-template-columns:1fr;
text-align:center;
}

.partner-image img{
margin:auto;
width: 370px;
height: 350px;
}

.partner-item{
justify-content:center;
text-align:left;
}

.experience-badge{
right:50%;
transform:translateX(50%);
}

}


/* ================= FOOTER ================= */

.footer{
  background:#2e2e2e;   /* NOT black */
  padding:80px 60px 30px;
  color:#bbb;
}

.footer-container{
  max-width:1200px;
  margin:auto;
}

/* GRID FIX */
.footer-top{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:60px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* TITLE */
.footer-title{
  font-size:32px;
  font-weight:700;
  color:#fff;
  margin-bottom:25px;
  position:relative;
  display:inline-block;
}

/* Underline animation */
.footer-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:60px;
  height:3px;
  background:linear-gradient(90deg,#00f5c4,#00d1a7);
  transition:.4s;
}

.footer-title:hover::after{
  width:100%;
}

/* TEXT */
.footer-desc{
  font-size:15px;
  line-height:1.7;
  margin-bottom:25px;
  color:#aaa;
}

/* LINKS */
.footer-links h4,
.footer-social h4{
  color:#fff;
  margin-bottom:20px;
}

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

.footer-links li{
  margin-bottom:14px;
}

.footer-links a{
  text-decoration:none;
  color:#bbb;
  position:relative;
  transition:.3s;
}

.footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:2px;
  
  transform:scaleX(0);
  transform-origin:left;
  transition:.3s;
}

.footer-links a:hover{
  color:#fff;
}

.footer-links a:hover::after{
  transform:scaleX(1);
}

/* SOCIAL */
.footer-icons{
  display:flex;
  gap:15px;
}

.footer-icons a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  transition:.3s;
}

.footer-icons a:hover{
  transform:translateY(-4px);
}

.logo-container {
  display: flex;
  align-items: center; /* Vertically centers the text with the logo */
  gap: 15px;           /* Adds space between the logo and the text */
}

.logo-container h1 {
  
  font-size: 1.2rem;   /* Adjust size so it fits inside your 80px bar */
  margin: 0;           /* Removes default browser margins */
  white-space: nowrap; /* Prevents the text from wrapping to a second line */
}


/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:30px;
  font-size:13px;
  color:#777;
}

/* RESPONSIVE */
@media(max-width:992px){
  .footer-top{
    grid-template-columns:1fr;
    gap:20px;
  }
  .footer-desc{
  font-size:15px;
  line-height:1.7;
  margin-bottom:25px;
  padding-right: 15%;
  justify-content: space-evenly;
  color:#aaa;
}
.logo-container {
  display: flex;
  padding-top: 10px;
  margin-left: 0px; /* Vertically centers the text with the logo */
  gap: 15px;           /* Adds space between the logo and the text */
}

.logo-container h1 {
  font-size: 1.2rem;   /* Adjust size so it fits inside your 80px bar */
  margin: 0;           /* Removes default browser margins */
  white-space: nowrap; /* Prevents the text from wrapping to a second line */
}
}

/* ========================= */
/* ===== MOBILE MASTER FIX ===== */
/* ========================= */

@media (max-width: 768px) {

  /* ===== PREVENT HORIZONTAL SCROLL ===== */
  html, body {
    overflow-x: hidden;
  }

  /* ===== NAVBAR FIX ===== */
  .navbar {
    top: 0.5px;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 20px;
    padding: 0px 20px;
  }

  /* ===== HERO FIX ===== */
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 250px 20px;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .hero-right {
    border-left: none;
    padding-left: 0;
    margin-top: 20px;
  }

  /* ===== ABOUT FIX ===== */
  .about-section {
    min-height: auto;
  }

  .about-content {
    padding: 80px 20px;
  }

  /* ===== SOLUTIONS FIX ===== */
  .solutions-section {
    padding: 80px 20px;
  }

  /* ===== TEAM FIX ===== */
  .team-section {
    padding: 80px 20px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ===== TESTIMONIAL FIX ===== */
  .testimonial-hero {
    padding: 100px 20px;
  }

  .testimonial-slide {
    position:absolute;
    flex-direction: column;
    text-align: center;
  }

  .testimonial-arrow {
    /*
    display: none;
    */
  }

  /* ===== FAQ FIX ===== */
  .faq-section {
    padding: 80px 20px;
  }

  .faq-title {
    font-size: 32px;
  }

  /* ===== CONTACT FIX ===== */
  .contact-section {
    padding: 80px 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ===== FOOTER FIX ===== */
  .footer {
    padding: 60px 20px 20px;
  }
  .logo-container{
    margin-top: 30px !important;
    width: 30px !important;
    height: 30px !important;
    gap: 15px;

  }
  .logo-container h1{
  font-size: 1.0rem;   /* Adjust size so it fits inside your 80px bar */
  }

}

/* ================================================= */
/* ========== ADDITIONAL TABLET RESPONSIVENESS ===== */
/* ================================================= */

@media (max-width:1024px){

/* telecommunication Intro */
.telecommunication-intro{
height: 1000px;
padding:100px 16% 100px;

}

.telecommunication-intro-container{
grid-template-columns:1fr;
gap:50px;
text-align:center;
}

.telecommunication-intro-left h2{
font-size:50px;
}

.telecommunication-intro-right img{
max-width:600px;
margin:auto;
}

/* Services */

.telecommunication-services{
  height: auto;
}
.services-grid{
grid-template-columns:repeat(2,1fr);
}

/* Standards */
.standards-grid{
justify-content:center;
}

/* Partner Section */
.partner-container{
grid-template-columns:1fr;
gap:60px;
text-align:center;
}

.partner-image img{
margin:auto;
}

.partner-item{
justify-content:center;
}

}


/* ================================================= */
/* ========== ADDITIONAL MOBILE RESPONSIVENESS ===== */
/* ================================================= */

@media (max-width:768px){

/* Hero text scaling */
.telecommunication-hero h1{
font-size:42px;
}

.telecommunication-hero p{
font-size:15px;
}

/* telecommunication Intro */
.telecommunication-intro{
padding:80px 24px;
height: 750px;
}

.telecommunication-intro h2{
font-size:34px;
}

.telecommunication-intro-left {
text-align: left;
}

.telecommunication-intro-left p {
text-align: left;
font-size: smaller;

}


/* Buttons stack */
.intro-buttons{
flex-direction:column;
align-items:center;
}

/* Services */

.services-title{
  text-align: center;
  font-size: 28px;
}

.services-subtitle{
  text-align: center;
  font-size: medium;
}

.services-grid{
grid-template-columns:1fr;
gap:24px;
}

.service-card{
padding:28px;
}

/* Standards */
.telecommunication-standards{
  height:850px;
}

.standards-container{
padding:50px 24px;
height:790px;
}

.standard-box{
width:100%;
}

/* Partner Section */
.partner-container{
gap:40px;
height: 800px;
}

.partner-image img{
max-width:320px;
}

.partner-content h2{
font-size:32px;
}

.partner-item .icon{
align-items: flex-start;
width:10px;
height:10px;
padding-right: 10px;
}

.partner-item p{
text-align: left;
font-size: smaller;
}

/* Experience badge reposition */
.experience-badge{
  display: none;
top:120px;
padding:20px 26px;
}

}