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

.dark-mode {
  --hero-bg: url(assets/Banners/about-page-banner-bg-2.webp);
  --hero-bg-mobile: url(assets/Banners/about-page-banner-bg-2.webp);
    --bg: url(assets/Banners/career-bg-11.jpg);
  --career-page-sub-hero: url(assets/Banners/career-bg-4.jpg);
--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);
--heading-color: white;
--tag-color: rgb(135, 0, 253);
--job-card-bg: rgba(157, 128, 252, 0.266);
--job-card-text: rgb(255, 255, 255);


--job-card-heading-glow: 0px 0px 0px rgb(252, 237, 252);



    --primary-teal: #00bfa5;
    --text-dark: #c6dce2;
    --text-muted: #d1d5d6;
    

    --border-light: rgba(255, 255, 255, 0.101);


    --card-heading: linear-gradient(90deg,#53dceb,rgb(134, 239, 171));
--bg-gradient: url(assets/Banners/about-page-banner-bg-5.jpg);
--card-bg: rgba(255, 255, 255, 0.115);
--vmg-heading:linear-gradient(80deg, #e8f0e9,rgb(101, 205, 236));
--bg-gradient: url(assets/Banners/about-page-banner-bg-6.jpg);
}

.light-mode {

--hero-bg: url(assets/Banners/about-us-bg-light.webp);
--hero-bg-mobile: url(assets/Banners/about-us-bg-light-mobile.webp);
--bg:linear-gradient(90deg, white,#9ea9f3);
--career-page-sub-hero: url(assets/images/career-bg-light-2.jpeg);
--text:#0a192f;
--muted:#555;
--card:rgba(255,255,255,0.7);
--glass-border:rgba(0,0,0,0.1);
--accent:#fff;
--shadow:0 20px 60px rgba(0,0,0,0.1);
--team-heading-color: #a20568;
--heading-color: rgb(155, 193, 238);
--tag-color: rgb(135, 0, 253);
--job-card-bg: rgb(213, 213, 254);
--job-card-text: black;
--job-card-heading: rgb(98, 150, 240);
--job-card-heading-glow: 0px 0px 0px rgb(35, 13, 62);



    --card-heading: #0e91f5;
--bg-gradient: radial-gradient(at 0% 50%, rgb(169, 216, 237) 0, transparent 50%),
                   radial-gradient(at 100% 100%, rgb(222, 255, 214) 0, transparent 50%);
    --card-bg: rgba(118, 225, 237, 0.164);
    --text-dark: #2d3436;
      --text-muted: #323a3c;
          --border-light: rgba(111, 237, 176, 0.868);
          --vmg-heading:linear-gradient(80deg, #2a71eb,rgb(0, 28, 84));

        }


/*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,#28ddbf7d,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:100px;
  line-height:1.1;
  margin-bottom:25px;

  background:linear-gradient(90deg,#53dceb,rgb(134, 239, 171));
  
  -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:70px;
}

.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;
  }

}



/* ================= ABOUT SECTION ================= */
.about-section{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  color:#fff;
  text-shadow: #000 0px 0px 10px;
}

/* Video */
.about-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

/* Overlay */
.about-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(2, 18, 41, 0.95) 5%, rgba(1, 27, 83, 0) 50%, rgba(5, 22, 67, 0.95) 100%);
  z-index:2;
}

/* Content Wrapper */
.about-content{
  position:relative;
  z-index:3;
  height:100%;
  padding:30px 0px;
  display:flex;
  flex-direction:row;
  align-items:right;
  gap:60px;
}

/* Left */
.about-left h5{
  letter-spacing:1px;
  opacity:.85;
  margin-bottom:10px;
}

.about-left h2{
  font-family:Montserrat,sans-serif;
  font-size:48px;
  margin-bottom:20px;
  margin-left: 0px;
}

.about-left p{
  max-width:720px;
  line-height:1.7;
  opacity:.95;
}

/* ============================================================
   TEAMS-HERO-2 SECTION
   ============================================================ */
/* Global Styles for Section */
section {
    font-family: 'Inter', sans-serif; /* Recommended font for this look */
    background: var(--bg-gradient);
    background-color: #f8fbff;
    background-attachment: fixed;
    background-size: cover;
    padding: 70px 10%;
}

/* ===== CORE VALUES SECTION (Based on Reference) ===== */

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 50px 40px 40px 40px;

    /* This creates the unique "clipped corner" look from the image 
    clip-path: polygon(0 0, 92% 0, 100% 15%, 100% 100%, 8% 100%, 0 85%);*/
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    padding-top: 60px;
}

.value-card.one {
    border-radius: 70px 0px 20px 0px;
}
.value-card.two {
    border-radius: 0px 70px 0px 20px;
}
.value-card.three {
    border-radius: 0px 20px 0px 70px;
}
.value-card.four {
    border-radius: 20px 0px 70px 0px;
}



.value-card .icon {
    display: flex;
    justify-content: start;
    margin-top: 0px;
    padding-bottom: 10px;
}


.value-card h3 {
    color: var(--text-dark);
    font-size: 24px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 16px;
}

/* ===== VMG SECTION (The 3-column top part) ===== */

.vmg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.vmg-card {
    font-family: 'Montserrat', sans-serif;
    background: var(--card-bg);
    padding: 40px 40px;
    border-radius: 20px;
    text-align: justify;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;

}

.vmg-card:hover{
    transform: translateY(-10px);

}

.vmg-card h3 {
    background : var(--vmg-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 10px 10px 10px 10px;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
}

.vmg-card p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 15px;
}




.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.icon img {
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}


.story-text {
    max-width: 1300px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: justify;
}



/* Responsive Fix */
@media (max-width: 900px) {
.teams-hero{
    background: var(--hero-bg-mobile);
    background-size: cover;

}

.section{
    background: var(--bg-gradient-2);}

    .values-grid, .vmg-grid {
        grid-template-columns: 1fr;
    }

    .value-card.one {
        border-radius: 30px;
    }
    .value-card.two {
        border-radius: 30px;
    }
    .value-card.three {
        border-radius: 30px;
    }
    .value-card.four {
        border-radius: 30px;
    }
    

    .section-title {
        font-size: 36px;
        font-weight: 700;
    }

    .vmg-card h3 {
        font-size: 24px;
        color:aquamarine;
    }

    .vmg-card p{
        text-align: left;
    }
}


























































































































































































/* ============================================================
   JOIN THE ELITE (CTA) SECTION
   ============================================================ */
.cta-section {
    padding: 80px 8%;
    background: url(assets/Banners/we-assist-you.webp);
    background-size: cover; 
    background-blend-mode: darken; 
    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 50px;
    border-radius: 50px;
    background: white;
    color: black;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer; }
.btn-primary:hover{ box-shadow: 0px 0px 15px rgb(243, 245, 247)}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {

    .cta-section{
        background: url(assets/Banners/we-assist-you.webp);
        background-size: cover;
    .btn-primary { padding: 15px 30px; border-radius: 50px; background: rgb(3, 62, 145); color: rgb(234, 205, 239); border: none; font-size: 14px; font-weight: 700; cursor: pointer; }
    .btn-primary:hover{
        box-shadow: 0px 0px 15px rgb(8, 30, 110);
    }

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


}