:root {
    --bg:#0a192f;
--text:#ffffff;
--muted:#bdbdbd;
--card:rgba(255,255,255,0.05);
--glass-border:rgba(255,255,255,0.1);
--accent:#b026ff;
--shadow:0 20px 60px rgba(0,0,0,0.5);
}

.dark-mode {
  --hero-bg: url(assets/images/technology-staffing-banner.webp);
    --bg: url(assets/images/technology-staffing-banner.webp);
--text:#e9ecf1;
--muted:#555;
--card:rgba(85, 11, 11, 0.7);
--glass-border:rgba(0,0,0,0.1);
--accent:#8a2be2;
--shadow:0 20px 60px rgba(0,0,0,0.1);
}

.light-mode {

  --hero-bg: url(assets/Banners/team-banner-light.jpg);
  --bg:linear-gradient(90deg, white,#d0bcef );
--text:#0a192f;
--muted:#555;
--card:rgba(255,255,255,0.7);
--glass-border:rgba(0,0,0,0.1);
--accent:#8a2be2;
--shadow:0 20px 60px rgba(0,0,0,0.1);
--team-heading-color: #a20568;

}


/*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,#d728dd7d,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 */
}

/* ================= teams HERO ================= */

.teams-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 */
.teams-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 */
.teams-hero-content {
  position: relative;
  z-index: 2; /* Explicitly set above the overlay */
  max-width: 900px;
  padding: 0 20px;
}

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

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

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

/* Button */
.teams-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;
}

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

@media (max-width:768px){

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

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

  html, body {
    overflow-x: hidden;
  }

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

}

/* ============================================================
   TEAMS-HERO-2 SECTION
   ============================================================ */
.teams-hero-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8% 80px;
    gap: 60px;
    background: url(assets/images/about-it-infrastructure-solutions.webp);
    background-attachment: fixed;
    min-height: 70vh;
}



.teams-hero-2 .tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--partner-item-icon-bg-color);
    color: var(--accent);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px var(--accent);
}

.teams-hero-2 h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--heading-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.teams-hero-2 h1 span { color: var(--accent); }

.teams-hero-2 .hero-img img {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}



/* ============================================================
   TEAM SECTIONS: BLOCK STYLING
   ============================================================ */
.team-section {
    padding: 100px 8%;
    background: var(--bg);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    gap: 120px; /* Space between rows */
}

.team-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* THE KEY FIX: Logic for the .reverse class */
.team-block.reverse {
    flex-direction: row-reverse;
}

.team-text {
    flex: 1;
}

.team-text .tag {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.team-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 15px;
    color: var(--team-heading-color);
    font-family: 'Montserrat', sans-serif;
}

.team-text p {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Sales Team Button */
.cta {
    padding: 14px 28px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.team-block img {
    flex: 1;
    width: 100%;
    max-width: 580px;
    height: 380px;
    object-fit: cover;
    border-radius: 40px; /* Rounded pill look */
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s ease;
}

.team-block:hover img {
    transform: scale(1.02);
    border-color: var(--accent);
}

/* ============================================================
   JOIN THE ELITE (CTA) SECTION
   ============================================================ */
.cta-section {
    padding: 100px 8%;
    background: url(assets/images/client-imgae.png);
    background-size: cover;
    background-blend-mode: lighten; 
    text-align: center;
}

.cta-section h2 { font-size: 3rem; color: var(--heading-color); margin-bottom: 20px; }

.cta-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }

.btn-primary { padding: 15px 30px; border-radius: 50px; background: white; color: black; border: none; font-weight: 700; cursor: pointer; }
.btn-primary:hover{ box-shadow: 0px 0px 15px rgb(247, 243, 245)}
.btn-outline { padding: 15px 30px; border-radius: 50px; background: transparent; color: white; border: 2px solid white; font-weight: 700; cursor: pointer; }
.btn-outline:hover{ box-shadow: 0px 0px 15px rgb(247, 243, 245)}
/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .teams-hero-2 {

    background: url(assets/images/about-it-infrastructure-solutions.webp);

}
    .team-block, .team-block.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }
    .team-block img { max-width: 100%; height: 300px; }
    .cta-section{
        background: url(assets/images/client-imgae.png);
    .btn-primary { padding: 15px 30px; border-radius: 50px; background: rgb(224, 22, 140); color: black; border: none; font-weight: 700; cursor: pointer; }
    .btn-primary:hover{
        box-shadow: 0px 0px 15px rgb(224, 22, 140);
    }

    .btn-outline { padding: 15px 30px; border-radius: 50px; background: transparent; color: white; border: 2px solid white; font-weight: 700; cursor: pointer; }
    }
}























































































































/* ================= 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 */
}
}

@media (max-width: 768px){

    /* ===== 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 */
  }


}
