 @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;
   
} 
  
  
  
  .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: rgba(255, 255, 255, 0.6); /* light overlay */
  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);
  }
}
.about-hero {
  height: 90vh;
  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: rgba(255, 255, 255, 0.6); /* light overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Optional animated gradient overlay for depth */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 120, 200, 0.35),
    rgba(0, 180, 255, 0.25)
  );
  animation: heroGradientShift 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroGradientShift {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(40deg); }
}

/* Overlay wrapper */
.about-overlay {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 0 20px;
}

/* Hero Title */
.about-title {
  font-size: 3.5rem;
  color: #ffffff;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 999px) {
  .about-title {
    font-size: 1rem;
  }
  .about-hero {
    height: 70vh;
  }
}

/* ===============================
   TEXT-UP ANIMATION
================================ */
.text-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

.text-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   MADE IN INDIA SECTION
========================================= */
.made-in-india {
  text-align: center;
  padding: 100px 40px;
  background-color: #f8f9fa;
}

.made-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #0b3c45; /* dark teal-blue */
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* =========================================
   MADE IN INDIA SECTION (Enhanced Borders)
========================================= */
.made-in-india {
  text-align: center;
  padding: 100px 40px;
  background-color: #f8f9fa;
}

.made-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #0b3c45; /* dark teal-blue */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid Layout */
.made-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

.made-item {
  max-width: 400px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.made-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Image box with dual-tone border */
.img-box {
  position: relative;
  overflow: hidden;
  border: 6px solid transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, #2f2f2f, #0b3c45); /* dark grey to teal */
  padding: 4px; /* space for gradient border effect */
}

.img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: transform 0.6s ease;
  background-color: #fff;
}

.img-box:hover img {
  transform: scale(1.05);
}

/* Text below images */
.made-item p {
  font-size: 1rem;
  color: #333;
  padding: 18px 14px 25px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .made-title {
    font-size: 1.8rem;
  }
  .img-box img {
    height: 200px;
  }
}
/* Section Description */
.made-description {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

/* When scrolled into view */
.made-description.show {
  opacity: 1;
  transform: translateY(0);
}
.glass-cta-section {
  position: relative;
  text-align: center;
  padding-top: 100px;
  background: var(--background-color);
}

/* Glass-style container */
.glass-cta-container {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  color: #f5e6b3; /* 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;
}
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: var(--font-colour); /* 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 */
/* Default: Black logo before scrolling */
.site-logo {
  height: 120px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(0%); /* pure black */
  transition: filter 0.4s ease, transform 0.3s ease;
}

header.scrolled .site-logo {
  filter: invert(73%) sepia(91%) saturate(731%) hue-rotate(360deg) brightness(103%) contrast(98%);
}

  


/* ================================
   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;
}
/* ====== Vision, Mission, and Values Image Spacing ====== */
.modern-info-image img {
  margin: 20px; /* adds margin around the pictures */
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.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: 2rem;
  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: 0.5rem;
    letter-spacing: 1px;
  }
  .about-hero {
    height: 50vh;
  }
  .about-overlay {
    background: rgba(255,255,255,0.7); /* slightly darker for better readability */
  }
}
/* ===============================
   FINAL OVERRIDE – ABOUT TITLE
   (Fix font-size glitch)
================================ */

@media (max-width: 992px) {
  .about-hero .about-overlay .about-title {
    font-size: 4rem;
  }
}

@media (max-width: 600px) {
  .about-hero .about-overlay .about-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 400px) {
  .about-hero .about-overlay .about-title {
    font-size: 1.4rem;
  }
}
