/* ==========================================================================
   ROOT VARIABLES & GLOBAL RESET
   ========================================================================== */
:root {
  --navy: #0f172a;
  --gold: #c28a3e;
  --bg: #f8fafc;
  --white: #ffffff;
  --text: #212933;
  --border: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'san-serif', sans-serif;
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}


/* Apply to all Headings */
h1, h2, h3, h4, h5, h6, .nav-item, .btn-primary {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.02em; /* Tighter spacing for a premium look */
}

a {
  text-decoration: none;
}

.container {
  padding: 0 60px;
}

@media (max-width: 768px) {
  section {
    padding: 80px 10px !important;
  }

  .container {
    padding: 0;
  }

  .project-showcase {
    padding: 80px 0 !important;
  }

}

.section-header h2 {
    color:var(--text) !important;

}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 75px;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.navbar.scrolled .logo a {
  color: var(--navy);
}

.logo-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: #fff;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-menu .nav-item {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-left: 20px;
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-item {
  color: var(--navy);
}

/* Navigation Underline Effect */
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.nav-item:hover,
.nav-item.active {
  color: var(--gold) !important;
}

@media (max-width: 992px) {
.nav-item::after {
  height: 0;
}
}



/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 16px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
  margin-top: 25px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(194, 138, 62, 0.3);
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   HAMBURGER MENU & NAV DRAWER
   ========================================================================== */
#navToggle {
  display: none;
  /* Hidden on Desktop */
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

/* Three bars inside hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  /* White default for transparent header */
  border-radius: 2px;
  transition: background-color 0.4s ease;
}

/* Change hamburger bars to Navy when the header scrolls/becomes white */
.navbar.scrolled .hamburger .bar {
  background-color: var(--navy);
}

/* --- Media Query for Tablet & Mobile --- */
@media (max-width: 992px) {
  #navToggle {
    display: block;
  }

  .nav-menu {
    display: none !important;
  }
}

/* --- NEW: Drawer & Hero Arrow Styles --- */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  max-width: 320px;
  height: 100%;
  background: var(--navy);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 50px 0 0 50px;
}

.nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.drawer-links .nav-item {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.nav-container {
  justify-content: space-between;
}

/* } */

@keyframes blink {

  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: var(--gold);
  }
}


/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
    padding:0 60px;

  color: #fff;
}


.slide.active {
  opacity: 1;
}

.hero-content {
  max-width: 850px;
  padding: 20px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.accent {
  color: var(--gold);
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 30px;
  border-radius: 10px;
}
/* fff */
/* Hero Text Container */
.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    text-align: left; /* Alignment usually feels more professional for corporate sites */
}

/* The small Tag above the H1 */
.hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color:var(--gold); /* Amber Gold */
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
}

/* The Main Title */
.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Responsive sizing */
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.main-title .accent {
    color: var(--gold);
    position: relative;
}

/* The Description */
.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0; /* Light slate gray */
    max-width: 650px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Visual improvement for the slides */


@media (max-width: 768px) {
  .hero-content{
    text-align:left !important;
  }
  .slide{
  padding: 0 !important;
}

}


/* ==========================================================================
   MISSION & ETHOS SECTION
   ========================================================================== */
.section-mission {
  padding: 80px 0;
  background: #0f172a;
  color: #ffffff;
}

.mission-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mission-text h2 {
  color: #c28a3e;
  font-size: 2.5rem;
  margin: 15px 0;
}

.ethos-highlight {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #c28a3e;
}

.stat-card {
  background: #c28a3e;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
}


@media (max-width: 768px) {
    .mission-wrapper, .about-flex {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ENHANCED ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: 120px 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.main-title-dark {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin: 15px 0 25px;
  font-weight: 800;
  line-height: 1.2;
}

.about-description p {
  color: #475569;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.about-description .lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

/* Experience Badge */
.about-visual {
  display: flex;
  justify-content: center;
}

.experience-badge {
  background: var(--navy);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  border-right: 8px solid var(--gold);
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.experience-badge .years {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.experience-badge .text {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Pillars */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background: var(--bg);
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.pillar-card:hover {
  transform: translateY(-10px);
  background: var(--white);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: var(--gold);
}

.pillar-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.pillar-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.pillar-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    width: 100%;
    max-width: 300px;
  }
}
/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-section .tag {
  color: var(--gold) !important;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.services-section .section-header h2{
  color:white !important;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border-top: 5px solid #c28a3e;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 2.5rem;
  color: #c28a3e;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #0f172a;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  margin-bottom: 10px;
  color: #898f97;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #c28a3e;
  font-size: 0.7rem;
}

/* Layout & Animations */
.section-padding {
  padding: 80px 0;
}

.dark-bg {
  background: #0f172a;
  color: #fff;
  padding: 80px 0;
}

.service-card {
  background: #fff;
  color: #333;
  padding: 40px;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

/* Interactive Elements */
.stat-box {
  border: 2px solid #c28a3e;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

.service-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-card ul li::before {
  content: "➤";
  color: #c28a3e;
  position: absolute;
  left: 0;
  font-size: 12px;
}

/* Ensure the grid matches your design system */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-top: 5px solid var(--gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  margin-bottom: 10px;
  color: var(--text);
  padding-left: 25px;
  position: relative;
}

.feature-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Ensure the Services icons are sized correctly */
.service-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

/* Ensure the feature list matches your design */
.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  margin-bottom: 10px;
  color: #475569;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* Fix dark background section text color */
.dark-bg h2,
.dark-bg h3 {
  color: #ffffff !important;
}

.dark-bg .feature-list li {
  color: #94a3b8;
}


/* Professional Services Styling */
.services-section {
  background: var(--navy);
  padding: 100px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-10px);
  border-color: var(--gold);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(194, 138, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 25px;
}

.service-card i {
  font-size: 1.8rem;
  color: var(--gold);
}

.service-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-card ul li {
  color: #afb1b4;
}

.section-header h2 {
  color: #afb1b4 !important;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 12px;
  color: #cbd5e1;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ==========================================================================
   PARTNERSHIPS SECTION
   ========================================================================== */
/* 
/* fff */
/* Global Partnership Section Refinement */
.partnerships-section {
    background-color: #f8fafc; /* Very light slate to separate from white sections */
    padding: 100px 0;
}

/* Tagline matching the Hero Section */
.partnerships-section .tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d97706; /* Amber-600 */
    margin-bottom: 1rem;
    border-left: 3px solid #d97706;
    padding-left: 12px;
}

.partnerships-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    line-height: 1.7;
}

/* Partnership Cards - Professional Grid */
.partnerships-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.partnership-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    border-top: 4px solid #0f172a; /* Navy accent top border */
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-5px);
}

.partnership-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.partnership-card p {
    font-family: 'Inter', sans-serif;
    color: #475569;
    line-height: 1.8;
}

/* Professional Trust Bar (Logos) */
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.partners-logos span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
}

/* --- Responsive Adjustments --- */

/* For Tablets and Mobile (Max-width: 1024px) */
@media (max-width: 1024px) {
    .nav-container, .container {
        padding: 0 20px; /* Reduces side padding on smaller screens */
    }

    .main-title {
        font-size: 3rem; /* Scales down the massive hero title */
    }

    .partnerships-grid {
        grid-template-columns: 1fr; /* Stacks the partnership cards vertically */
    }
}

/* For Mobile Devices (Max-width: 768px) */
@media (max-width: 768px) {
    /* Hero Section Adjustments */
    .hero-content {
        text-align: center; /* Centers text for a cleaner mobile look */
        padding: 0 1rem;
    }

    .hero-tag {
        border-left: none;
        border-bottom: 2px solid #fbbf24;
        padding-left: 0;
        padding-bottom: 5px;
    }

    .main-title {
        font-size: 2.2rem; /* Further reduces size for phone screens */
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin: 0 auto 2rem auto;
    }

    /* Partnership Section Adjustments */
    .partnerships-section {
        padding: 60px 0; /* Reduces vertical spacing */
    }

    .partnerships-section h2 {
        font-size: 1.8rem; /* Smaller heading for mobile */
    }

    .partnership-card {
        padding: 25px; /* Tighter padding inside cards */
    }

    /* Trust Bar (Logos) */
    .partners-logos {
        justify-content: center; /* Centers partner names on mobile */
        gap: 10px;
    }
}

/* ==========================================================================
   INNOVATION SECTION - 2x2 GRID
   ========================================================================== */
.innovation-section {
  padding: 100px 0;
  background-color: #fcfcfc;
}

.innovation-grid {
  display: grid;
  /* Forces 2 columns for Desktop and Tablets */
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1000px; /* Keeps the grid tight and professional */
  margin-left: auto;
  margin-right: auto;
}

.innov-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.innov-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--gold);
}

.innov-card .icon-box {
  width: 50px;
  height: 50px;
  background: rgba(194, 138, 62, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 1.4rem;
  margin-bottom: 25px;
}

.innov-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--navy);
}

.innov-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 0;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.innov-card:hover .card-accent {
  width: 100%;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
  .innovation-grid {
    padding: 0 20px; /* Padding for tablets */
  }
}

@media (max-width: 600px) {
  .innovation-grid {
    /* Collapses to 1 column for Phones */
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .innov-card {
    padding: 30px;
  }
}



/* ==========================================================================
   PROJECT SECTION
   ========================================================================== */
.section-header h2 {
  font-size: 3rem;
  color: var(--navy);
  margin-top: 10px;
  font-weight: 700;
}

.project-showcase {
  padding: 100px 0;
  background: var(--bg);
}

.slider-wrapper {
  position: relative;
  max-width: 950px;
  margin: 50px auto 0;
}

.project-slider {
  position: relative;
  height: 550px;
  border: 4px solid var(--navy); /* Professional Navy Border */
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.project-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  transition: opacity 0.5s ease-in-out;
  visibility: hidden;
}

.project-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.project-image {
  height: 55%;
  width: 100%;
  background: #000;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.project-info {
  height: 45%;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.project-info h3 {
  color: var(--navy);
  font-size: 1.7rem;
  margin-bottom: 5px;
  font-weight: 800;
}

.address-text {
  color: var(--gold); /* Highlighted address in Gold */
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.address-text i {
  margin-right: 5px;
}

.description {
  color: #475569;
  max-width: 650px;
  line-height: 1.7;
  font-size: 1rem;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn.prev { left: -25px; }
.nav-btn.next { right: -25px; }

.nav-btn:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

/* Responsive Logic */
@media (max-width: 768px) {
  .project-slider {
    height: 600px;
    margin: 0 15px;
    border-width: 3px;
  }
  
  .project-info h3 { font-size: 1.3rem; }
  
  .nav-btn.prev { left: 5px; }
  .nav-btn.next { right: 5px; }

  .project-showcase .description {
  
    line-height: 1.2;
}

.project-info {
  padding:0;
}
}
/* ==========================================================================
   CLIENT SECTION
   ========================================================================== */
/* --- Clients Section Professional Styling --- */
.clients-section {
  padding: 80px 0;
  background: #ffffff;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.client-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.client-logo-wrapper {
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.client-card:hover .client-logo-wrapper {
  filter: grayscale(0%);
}

.client-logo-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.client-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   OPERATION & HSE SECTION
   ========================================================================== */
.op-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.op-card {
  background: var(--navy);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
}

.hse-card {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--gold);
}

.op-card h3 {
  color: var(--gold);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .op-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */
.contact-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
}

.contact-info {
  padding: 60px;
  /* Reduced from default to make it less bulky */
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.contact-info .tag {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.contact-info .main-heading {
  font-size: 1.8rem;
  /* Scaled down slightly for better balance */
  margin-bottom: 20px !important;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px !important;
  color: #cbd5e1;
  /* Slightly lighter for better readability */
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Reduced gap */
}

.c-item {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 500;
  gap: 12px;
  font-size: 0.9rem;
}

.c-item i {
  color: var(--gold);
  font-size: 1.2rem;
  width: 20px;
}

/* Form Styling */
.contact-form {
  padding: 30px;
  background: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  outline: none;
}


.form-wrapper {
  background: #fff;
  padding: 60px;
  position: relative;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 40px;
  }

  .contact-form {
    padding: 40px 0;
  }
}

/* Add these to style.css */
.form-container {
  background: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* Essential for containing the swapping elements */
}

.hidden-form {
  display: none !important;
}

.success-msg {
  display: none;
  /* Default hidden */
  text-align: center;
  padding: 40px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  color: #166534;
}

.visible-msg {
  display: block !important;
}

/* Add this to style.css */
.success-msg {
  display: none;
  /* Keeps it hidden until JS changes it */
  text-align: center;
  padding: 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  margin-top: 20px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background: #020617;
  color: #94a3b8;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.section-header h2 {
    color:var(--text) !important;
}


.f-brand p {
  margin-top: 15px;
  font-size: 0.9rem;
  max-width: 300px;
}

.f-links,
.f-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.f-links h5,
.f-social h5 {
  color: #fff;
  margin-bottom: 10px;
}

.f-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.f-links a:hover {
  color: var(--gold);
}

/* Social Icon Styling */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    justify-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .f-links a {
    margin-left: 0;
  }

  div.f-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }
}



/* ggggggggggggggggggggggggggggggggggggggggggggggggg */





.main-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-weight: 700;
  text-transform: uppercase;
}

.nav-item {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}



 .about-description p, .feature-list li, .description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #475569;
}

.lead {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
}
@media (max-width: 700px) {
.section-header h2 {
  font-size: 2rem;
  line-height: 1.2;
}
.mission-text h2{
  font-size: 1.6rem;
  line-height: 1.2;
}

.hero-content h1 {
  font-size: 2rem;
}
.hero-tag, .hero-sub{
  font-size: 0.9rem;
}

}


.new-badge {
    background: #ef4444; /* Corporate Red */
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 10px;
    font-weight: 800;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.type-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
}