


@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Cinzel+Decorative:wght@400;700;900&family=Fjalla+One&family=Gloock&family=Pacifico&family=Poppins&family=Prata&display=swap');




*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    font-family: "gloock", serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: linear .2s;
}
:root{
    --background-color: #1b4053;
    --font-colour:#d8c4b1;
   
}

/* REMOVE EXTRA SIDE SPACING */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Reduce side padding on mobile */
@media (max-width: 768px) {

  section,
  header,
  footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .container,
  .wrapper,
  .content,
  .inner {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Prevent elements from causing overflow */
  img,
  iframe,
  video {
    max-width: 100%;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;   /* transparent at the top */
  padding: 15px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: all 0.3s ease;
  color: white;
}

/* Navbar when scrolled */
header.scrolled {
  background: var(--background-color); /* add your color on scroll */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 8px 7%; /* shrink effect */
  color: var(--background-color);

}

header.scrolled .logo,
header.scrolled .navbar ul li a {
  color: var(--font-colour); /* light text on dark background */
}



header .logo{
    font-weight: bolder;
    font-size: 25px;
    color: white;
    transition: color 0.3s ease;
    

}
header .navbar ul{
    list-style: none;
   
}
header .navbar ul li{
    position: relative;
    float: left;
}

header .navbar ul li a{
    font-size: 20px;
    padding: 20px;
    color: var(--font-colour);
    display: block;
    color: white; /* dark text on transparent background */
  transition: color 0.3s ease;
}

header .navbar ul li a:hover{
    background: var(--font-colour);
    color: var(--background-color);

}

header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: var(--background-color);
    display: none;
}
header .navbar ul li ul li{
    width: 100%;
    
}
header .navbar ul li:hover >ul{
    display: initial;
}
#menu-bar{
    display: none;
}
header label{
    font-size: 20px;
    color: var(--font-colour);
    cursor: pointer;
    display: none;
  }

 @media (max-width:999px){
  header{
    padding: 10px 20px;
  }

  header label{
    display: initial;
  }

  header .navbar{
    position: fixed;       /* changed from absolute */
    top: 0;                /* ensures it starts at very top */
    left: 0;
    right: 0;
    background: var(--background-color);
    border-top: none;      /* no unwanted line */
    display: block;
    z-index: 999;          /* keeps it above everything */
    height: 100vh;         /* full screen for nice overlay effect */
    padding-top: 80px;     /* space for logo/header area */
  }

  #menu-bar:checked ~ .navbar{
    display: block;
  }

  header .navbar ul li{
    width: 100%;
  }

  header .navbar ul li ul{
    position: relative;
    width: 100%;
  }

  header .navbar ul li ul li{
    background: #1b4053;
  }
}




header .navbar ul li{
  width: 100%;
}
header .navbar ul li ul{
  position: relative;
  width: 100%;
}
header .navbar ul li ul li{
  background: #1b4053;
}
#menu-bar:checked ~ .navbar{
  display: initial;
}

  
  /* Default (before scroll): make logo white */
.site-logo {
    height: 120px;       /* keep your increased size */
    width: auto;
    filter: brightness(0) invert(1)
            drop-shadow(0 0 0.6px white);   /* thinner outline */
    transition: 0.3s ease;
}


header.scrolled .site-logo {
    filter: 
      brightness(0) 
      saturate(100%) 
      invert(80%) 
      sepia(45%) 
      saturate(500%) 
      hue-rotate(350deg) 
      brightness(110%);
}

/* ================================
   Mobile Menu Toggle Buttons
=================================*/

.menu-toggle,
.close-menu {
  font-size: 26px;
  color: var(--font-colour);
  cursor: pointer;
  display: none;
  z-index: 1001;
  position: absolute;
  right: 25px;
  top: 20px;
}

/* Show only hamburger by default */
.menu-toggle {
  display: none;
}

/* When checkbox not checked — show hamburger */
#menu-bar:not(:checked) ~ .menu-toggle {
  display: block;
}

/* When menu open — show close button instead */
#menu-bar:checked ~ .close-menu {
  display: block;
}

/* Optional hover style */
.menu-toggle:hover,
.close-menu:hover {
  color: #ffcc00;
}

/* For smaller devices */
@media (max-width:999px) {
  .menu-toggle,
  .close-menu {
    display: none;
  }

  #menu-bar:not(:checked) ~ .menu-toggle {
    display: block;
  }

  #menu-bar:checked ~ .close-menu {
    display: block;
  }
}
header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--background-color);
  display: none;
  z-index: 999;
  padding-top: 100px; /* space for logo & close button */
}

.close-menu {
  top: 25px;
  right: 25px;
  position: fixed;
}




 










.hero{
    width: 100%;
   height: 100vh;
    position: relative;
   top: 0;
   left: 0;
   
    overflow: hidden;
}



 .hero img{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%,-50%);
    animation: zoom-in 10s linear infinite;
    
   
    
  
}
@keyframes zoom-in{
    100%{
        width: 120%;
    }
}



.content{
    width: 45%;
    position: absolute;
    top: 200px;
    left: 100px;
    transform: translateY(100px);
     animation: textup 40s linear infinite;
    
}
.content1{ animation-delay: 0s; }
.content2{ animation-delay: 10s; }
.content3{ animation-delay: 20s; }
.content4{ animation-delay: 30s; }

@keyframes textup{
    10%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(0px);
    }
}




h1{
    color:white;
    font-size: 40px;
    margin: 10px auto;
   
}
h2{
    font-weight: 100;
    margin: 20px auto 80px;
    font-size: 20px ;
    color:white;
}
hr{
    border: none;            /* remove default */
      height: 2px;             /* thickness */
      background-color: white;  /* set your color */
      margin: 5px 0; 
}
.know-btn{
     background: linear-gradient(45deg, #ff7b00, #ff0080);
  color: white !important;
  font-size: 20px;
  border-radius: 25px;
  padding: 15px 30px;
  transition: all 0.3s ease;

}
.know-btn:hover{
      background: linear-gradient(45deg, #ff0080, #ff7b00);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 0, 128, 0.4);

}
.slide-1{
    animation: slide-1 40s linear infinite;
}
@keyframes slide-1{
    0%{
        visibility: visible;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }
}
.slide-2{
    animation: slide-2 40s linear infinite;
}
@keyframes slide-2{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: visible;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: hidden;
    }
}
.slide-3{
    animation: slide-3 40s linear infinite;
}
@keyframes slide-3{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: visible;
    }
    100%{
        visibility: hidden;
    }
}
.slide-4{
    animation: slide-4 40s linear infinite;
}
@keyframes slide-4{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }
}
@media (max-width:576px){

  .content h1 {
    font-size: 20px;
  }
  .content h2 {
    font-size: 12px;
  }
  .know-btn{
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    overflow: hidden;   /* prevents images from spilling outside */
  }

  .hero img {
    height: 100%;
    object-fit: cover;  /* keeps images inside without overlap */
  }

  /* Force each slide to stay inside boundaries */
  .slide-1, .slide-2, .slide-3, .slide-4 {
    overflow: hidden;
  }
}









    .about-section {
  padding: 80px 10%;

}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background: #fff;
}

/* Left Image */
.about-image {
  position: relative;
  flex: 1;
  max-width: 420px;
  padding: 10px;
}
.about-image img {
 
  box-shadow: -1rem -1rem 0 0 var(--background-color);
  width: 100%;
  display: block;
  height: auto;
  border-radius: 3px;
  
}

.about-hero {
  height: 100vh;
  background: url("office-building.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:  linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.4)
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-overlay h1 {
  font-size: 64px;
  font-weight: 900;
  color: var(--background-color);
  text-align: center;
  
}
/* Textup animation for ABOUT US */
.textup {
  opacity: 0;
  transform: translateY(60px);
  animation: textup-hero 1.2s ease-out forwards;
}

@keyframes textup-hero {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







.experience-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--background-color);
  color:var(--font-colour);
  padding: 15px 20px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  border: 5px solid white;
}
.experience-badge h2 {
  font-size: 22px;
  margin: 0;
  color: var(--font-colour);
}
.experience-badge p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

/* Right Content with Glass Effect */
.about-content {
  flex: 1.5;
  max-width: 600px;
  padding: 25px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.about-content h2 {
  color: var(--background-color);
  font-size: 26px;
  margin-bottom: 10px;
}
.about-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.about-content strong {
  color: var(--background-color);
}

/* Vision + Mission */
.info-boxes {
  display: flex;
  gap: 40px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.info-box {
  flex: 1;
  min-width: 220px;
}
.info-box h3 {
  color: var(--background-color);
  font-size: 18px;
  margin-bottom: 8px;
}
.info-box p {
  font-size: 14px;
  color: #555;
}

/* Button */
.read-btn {
  display: inline-block;
  margin-top: 10px;
  background: var(--background-color);
  color: white;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}
.read-btn::after {
  content: "➝";
  margin-left: 8px;
}
.read-btn:hover {
  background: var(--background-color);
}

/* Scroll Animations */
.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-left.show {
  opacity: 1;
  transform: translateX(0);
}
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    margin-bottom: 20px;
  }
  .experience-badge {
    position: static;
    margin-top: 10px;
  }
  .info-boxes {
    flex-direction: column;
    gap: 20px;
  }
}
.services {
  padding: 80px 10%;
  background: var(--background-color); /* red background */
  color: var(--font-colour);
}

.services-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.services-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-box h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.see-more {
  display: inline-block;
  font-weight: bold;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.see-more:hover {
  border-bottom: 1px solid #fff;
  transform: scale(1.05);
}

.services-text hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* Right Column */
.services-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Scroll-left animation */
.scroll-left {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

.scroll-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.delay1 { transition-delay: 0.2s; }
.delay2 { transition-delay: 0.5s; }
.delay3 { transition-delay: 0.8s; }

/* Responsive */
@media (max-width: 992px) {
  .services-container {
    flex-direction: column;
    text-align: center;
  }
  .services-text {
    gap: 30px;
  }
  .services-image {
    margin-top: 30px;
  }
}


.stats-section {
  width: 100%;
  padding: 50px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.stats-section {
  width: 100%;
  padding: 50px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.stat-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-center {
  padding: 20px;
}

.stat-center h3 {
  font-size: 20px;
  color: #555;
  margin-bottom: 10px;
}

.stat-center h2 {
  font-size: 34px;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding-bottom: 4px;
  font-size: 15px;
  text-decoration: none;
  color: #222;
  border-bottom: 2px solid gold;
  transition: 0.3s;
}

.read-more:hover {
  color: teal;
  border-bottom: 2px solid teal;
}

.stats-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bottom-box {
  background: var(--background-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bottom-box h3 {
  font-size: 18px;
  color: black;
  margin-bottom: 10px;
}

.bottom-box h2 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

/* --- Swipe Left Animation --- */
.swipe-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.swipe-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Tablet */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stat-center h2 {
    font-size: 28px;
  }

  .bottom-box h2 {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .stats-section {
    padding: 30px 15px;
  }

  .stat-center h2 {
    font-size: 24px;
  }

  .stats-bottom {
    grid-template-columns: 1fr;
  }

  .bottom-box {
    padding: 20px;
  }

  .bottom-box h2 {
    font-size: 22px;
  }
}


/* ====== GET IN TOUCH SECTION ====== */
.uday-getintouch-section {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  color: #000;
  background: url(metal-parts-being-treated-with-zinc-coating.jpg) center/cover no-repeat;
  overflow: hidden;
  isolation: isolate;
}

.uday-getintouch-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 60, 110, 0.75), rgba(0, 140, 190, 0.75));
  z-index: 0;
}

/* Animated soft light gradient (optional subtle movement) */
.uday-getintouch-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 60%);
  animation: udayLightSpin 18s linear infinite;
  z-index: 0;
}

@keyframes udayLightSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.uday-getintouch-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}

.uday-getintouch-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  letter-spacing: 1px;
}

.uday-getintouch-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Button Style */
.uday-getintouch-btn {
  background-color: var(--background-color); /* green like your screenshot */
  color: white;
  border: none;
  padding: 14px 34px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.uday-getintouch-btn:hover {
  background-color: #2e8b57;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(60, 179, 113, 0.5);
}





.footer {
  background: #002b36; /* Dark teal background */
  color: white;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
   opacity: 0;
  transform: translateX(-120px);
  transition: all 0.8s ease-out;
}

.footer.show {
  opacity: 1;
  transform: translateX(0);
}


.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 18px;
  border-bottom: 2px solid #ffcc00;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column p,
.footer-column a,
.footer-column li {
  font-size: 14px;
  color: #ddd;
  line-height: 1.8;
}

.footer-column a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffcc00;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.btn-brochure {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #ff6600;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-brochure:hover {
  background: #cc5200;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    margin-top: 10px;
  }
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 14px 18px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #cc5200;
  transform: translateY(-3px);
}

.legacy-section {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
}

.legacy-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--background-color);
}

.legacy-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* Animation base (reuses your .animate-up logic) */
.animate-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-up.show {
  opacity: 1;
  transform: translateY(0);
}



/* ================================
   VISION / MISSION / VALUES SECTION
==================================*/

.gm-section {
    padding: 80px 6%;
    background: #f4f7f8;
}

.gm-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gm-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #008C9E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gm-heading p {
    color: #555;
    font-size: 16px;
    margin-top: 10px;
}

/* ✅ GRID ALIGNMENT */
.gm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    justify-content: center;
    align-items: start;
}

@media (max-width: 900px) {
    .gm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gm-grid {
        grid-template-columns: 1fr;
    }
}

/* ✅ CARD STYLING */


.vision-container,
.mission-container,
.values-container {
  position: relative;
  padding-bottom: 25px;
}

.vision-container::after,
.mission-container::after,
.values-container::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 80%;
  height: 4px;
  background-color: #0e4d5a; /* dark teal blue underline */
  border-radius: 3px;
  transition: width 0.5s ease;
}
.gm-card {
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    padding-bottom: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ✅ IMAGE */
.gm-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ✅ ICON OVERLAP */
.gm-icon {
    width: 2pxpx;
    height: 75px;
    background: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -39px auto 10px auto;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.20);
}

/* ✅ TEXT */
.gm-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #008C9E;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.gm-card p {
    font-size: 15px;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* ✅ CSS-ONLY FADE-UP ANIMATION */
.css-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpCard 1.2s ease-out forwards;
}

.css-fade-up:nth-child(1) { animation-delay: 0.2s; }
.css-fade-up:nth-child(2) { animation-delay: 0.4s; }
.css-fade-up:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}













/* ================================
   About Hero Section
=================================*/
.about-hero {
  height: 70vh; /* smaller than homepage hero */
  background: url("office-building.jpg") no-repeat center center/cover; /* replace with your about image */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-overlay {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.5); /* light overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-title {
  font-size: 4rem;
  font-weight: 800;
  color: #000; /* solid black for readability */
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ================================
   Scroll-up Animation
=================================*/
.scroll-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

.scroll-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   Responsive Adjustments
=================================*/
@media (max-width: 992px) {
  .about-title {
    font-size: 1rem;
  }
  .about-hero {
    height: 60vh;
  }
}

@media (max-width: 600px) {
  .about-title {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .about-hero {
    height: 50vh;
  }
  .about-overlay {
    background: rgba(255,255,255,0.7); /* slightly darker for better readability */
  }
}


/* Single Partner Section */
.single-partner {
  padding: 80px 20px;
  background: var(--background-color);
  text-align: center;
}

.single-partner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

.partner-logo img {
  max-width: 220px;
  height: auto;
  transition: transform 0.3s ease;
}

.partner-logo img:hover {
  transform: scale(1.1);
}

/* Scroll-up Animation */
.scroll-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

.scroll-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .single-partner h2 {
    font-size: 1.6rem;
  }
  .partner-logo img {
    max-width: 160px;
  }
}


/* ------------------------
   COMPANIES PAGE STYLES
   (Completely Isolated)
------------------------- */
.companies-section {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.companies-section h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--background-color);
  text-transform: uppercase;
}

.companies-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Infinite Logo Slider */
.companies-logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.companies-logo-track {
  display: flex;
  width: calc(200px * 10);
  animation: companies-scroll 25s linear infinite;
}

.companies-logo-track img {
  width: 180px;
  height: auto;
  margin: 0 30px;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.companies-logo-track img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Infinite Scroll Animation */
@keyframes companies-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll Animation */
.companies-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}
.companies-animate.companies-show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .companies-section h1 {
    font-size: 1.8rem;
  }
  .companies-section p {
    font-size: 1rem;
  }
  .companies-logo-track img {
    width: 120px;
    margin: 0 20px;
  }
}

/* =========================================
   CONTACT US – UDAY GLASSWORKS THEME
========================================= */
.contact-us {
  background: linear-gradient(to bottom right, #e9f4f6, #f8fbfb);
  padding: 100px 60px;
  color: #0b3c45;
  font-family: 'Poppins', sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b3c45;
}

.contact-header p {
  color: #333;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Info Section */
.contact-info {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(11, 60, 69, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.info-box {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11, 60, 69, 0.1);
}

.info-box:last-child {
  border-bottom: none;
}

.info-box i {
  font-size: 1.8rem;
  color: #0b3c45;
  margin-bottom: 10px;
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #0b3c45;
}

.info-box p {
  font-size: 0.95rem;
  color: #333;
}

/* Right Form Section */
form {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(11, 60, 69, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid rgba(11, 60, 69, 0.2);
  border-radius: 8px;
  font-size: 0.95rem;
  color: #0b3c45;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0b3c45;
  outline: none;
  box-shadow: 0 0 10px rgba(11, 60, 69, 0.15);
}

/* Submit Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0b3c45, #2ca6a4);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #2ca6a4, #0b3c45);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Text-Up Animation */
.text-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.text-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-us {
    padding: 80px 30px;
  }
}
.glass-cta-container {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  color: #0b3c45; /* sand yellow */
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  transform: translateY(60px);
  opacity: 0;
  transition: all 1s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

  /* Patterned teal gradient background */
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(0, 77, 77, 0.35) 0,
      rgba(0, 77, 77, 0.35) 20px,
      rgba(0, 128, 128, 0.25) 20px,
      rgba(0, 128, 128, 0.25) 40px
    ),
    linear-gradient(
      135deg,
      rgba(0, 77, 77, 0.5),
      rgba(0, 128, 128, 0.4)
    );
}

/* Scroll animation effect */
.glass-cta-container.show {
  opacity: 1;
  transform: translateY(0);
}

.glass-cta-container h2 {
  font-size: 1.9rem;
  line-height: 1.4;
  font-weight: 600;
}

.glass-cta-container h2 span {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* CTA BUTTON */
.glass-cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 35px;
  font-weight: 600;
  font-size: 1rem;
  color: #004d4d;
  background: #f5e6b3;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.glass-cta-btn:hover {
  background: #004d4d;
  color: #f5e6b3;
}
/* ===============================
   IMAGE SLIDER SECTION
================================ */
.image-slider-section {
  text-align: center;
  padding: 80px 10%;
  background: #f8f9fa;
}

.slider-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--background-color);
  margin-bottom: 30px;
}

/* Container */
.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Slides */
.slides {
  display: flex;
  transition: transform 0.8s ease;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 15px;
  object-fit: cover;
}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s ease;
  z-index: 2;
}

.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots navigation */
.dots-container {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
  cursor: pointer;
}

.dot.active {
  background-color: var(--background-color);
}

/* Responsive */
@media (max-width: 768px) {
  .slider-heading {
    font-size: 1.5rem;
  }
  .prev, .next {
    font-size: 20px;
    padding: 8px 10px;
  }
}
