@font-face {
  font-family: 'Inter';
  src: url('../Fonts/Inter/Inter-VariableFont_opsz\,wght.ttf');
  font-style: normal;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: 'Inter';
}

:root {
--navy: #001a35;
--gold: #0056b3;
--white: #ffffff;
--transition: all 0.3s ease;

--primary-navy: #002147;
--accent-gold: #FFB400;
--text-dark: #1a1a1a;
--text-muted: #555555;
--bg-light: #f8f9fa;

--primary-blue: #0056b3;
--dark-bg: #0b0d11;
--text-gray: #666;
--white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0f0f0f; /* Deep professional dark */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

.loader-content {
  text-align: center;
}

.logo-text {
  color: #ffffff;
  font-family: 'Inter', sans-serif; /* Or your brand font */
  font-weight: 300;
  letter-spacing: 10px;
  margin-bottom: 20px;
  animation: spread 2.5s ease-in-out infinite;
}

.logo-text span {
  font-weight: 700;
  color: #0056b3; /* A sophisticated gold/bronze accent */
}

.progress-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: #0056b3;
  position: absolute;
  animation: load 2s infinite ease-in-out;
}

@keyframes spread {
  0%, 100% { letter-spacing: 10px; opacity: 0.7; }
  50% { letter-spacing: 14px; opacity: 1; }
}

@keyframes load {
  0% { left: -100%; width: 30%; }
  50% { left: 0%; width: 60%; }
  100% { left: 100%; width: 100%; }
}

/* Class to hide preloader */
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}


/* --- Navbar Styles --- */
.navbar {
position: sticky;
top: 0;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px); /* Modern glass effect */
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 8%;
z-index: 1000;
box-shadow: 0 2px 15px rgba(0,0,0,0.05);
transition: var(--transition);
}

.logo {
font-family: 'Montserrat', sans-serif;
font-size: 1.5rem;
font-weight: 700;
color: var(--navy);
text-decoration: none;
letter-spacing: -1px;
}

.logo span { color: var(--primary-blue); }

.nav-links {
display: flex;
list-style: none;
gap: 35px;
}

.nav-links a {
text-decoration: none;
color: var(--navy);
font-weight: 500;
font-size: 0.95rem;
position: relative;
padding: 5px 0;
transition: var(--transition);
}

/* The Hover Effect */
.nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--gold);
transition: var(--transition);
}

.nav-links a:hover::after {
width: 100%;
}

.nav-links a:hover {
color: var(--gold);
}

/* --- THE ACTIVE FEATURE --- */
.nav-links a.active {
color: var(--gold);
font-weight: 700;
}

.nav-links a.active::after {
width: 100%; /* Keeps the underline visible on active page */
}

/* Mobile Menu Icon */
.menu-toggle {
display: none;
font-size: 1.5rem;
color: var(--navy);
cursor: pointer;
}

/* --- Responsive Design --- */
@media (max-width: 850px) {
.menu-toggle { display: block; }

.nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 25px;
    clip-path: circle(0% at 100% 0); /* Hidden by default */
    transition: transform 0.5s ease-in-out, clip-path 0.5s ease-in-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-links.open {
    clip-path: circle(150% at 100% 0); /* Shows menu */
}
}

/* Hero Section */
/* .page-body{
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
  url('../Media/Image/bgImage1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 0 20px;
  
  
  transition: background-color 1.2s ease, color 1.2s ease;
  
  
  background-color: #1a1a2e;
  color: #ffffff;
} */

/* Hero Section */
.hero {
min-height: 90vh;
background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 26, 53, 0.85)),
url('../Media/Image/bgHome.jpg') center/cover no-repeat;
background-size: cover;
background-position: center;
position: relative;
display: flex;
align-items: center;
padding: 60px 8%;
color: var(--white);
height: 500px;
}

#sub-heading{
  line-height: 20px;
  font-size: 13px;
}

/* .hero-overlay {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.7);
} */

.hero-content {
position: relative;
z-index: 2;
max-width: 700px;
}

.badge {
background: rgba(255, 255, 255, 0.1);
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
font-size: 4.5rem;
margin: 20px 0;
line-height: 1.1;
}

.blue-text { color: var(--primary-blue); }

.hero-btns { margin-top: 30px; }

.btn {
padding: 15px 30px;
text-decoration: none;
border-radius: 30px;
font-weight: bold;
display: inline-block;
margin-right: 15px;
margin-bottom: 10px;
}

.btn-primary { background: var(--primary-blue); color: white; }
.btn-outline { border: 1px solid white; color: white; }

/* Partners Bar */
/* .partners-bar {
background: #000;
color: white;
padding: 30px 8%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
font-weight: bold;
letter-spacing: 2px;
opacity: 0.8;
} */

.partners-bar {
  overflow: hidden;
  background: #f4f4f4; /* Optional background */
  padding: 20px 0;
  display: flex;
}

.partners-track {
  display: flex;
  width: calc(250px * 10); /* Adjust based on item width */
  animation: scroll 20s linear infinite;
}

.partner-item {
  width: 250px;
  flex-shrink: 0;
  font-weight: bold;
  text-align: center;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Moves halfway through the duplicated list */
}

/* Optional: Pause on hover so people can actually read it! */
.partners-bar:hover .partners-track {
  animation-play-state: paused;
}

/* About Section */
.about {
padding: 80px 8%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.paragraph{
  /* padding: 20px; */
  line-height: 20px;
}

.stat-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 40px 0;
border-bottom: 1px solid #eee;
}

.num { font-weight: bold; color: var(--primary-blue); margin-right: 15px;}
.sub-title { color: var(--primary-blue); font-weight: bold; display: block; margin-bottom: 10px; }

/* Service Cards */
.services { padding: 80px 8%; background: #f9f9f9; }
.center { text-align: center; }
.service-card {
background: white;
margin: 20px 0;
padding: 50px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
gap: 20px;
}

.service-tags span {
background: #eee;
padding: 7px 15px;
border-radius: 15px;
font-size: 0.75rem;
margin-left: 5px;
}

.service-arrow{
  transition: var(--transition);
}

.service-arrow:hover{
  border-radius: 50%;
  background: #eee;
  padding: 10px 13px;
}

 /* --- MEDIA QUERIES --- */

@media screen and (max-width: 1024px) {
.hero h1 { font-size: 3.5rem; }
.about { gap: 30px; }
}

@media screen and (max-width: 768px) {
body { overflow-x: hidden; }


/* Hero Mobile */
.hero h1 { font-size: 2.8rem; }
.hero-btns .btn { width: 100%; text-align: center; }

/* Partners Mobile */
.partners-bar { justify-content: center; text-align: center; }

/* Sections Grid to Single Column */
.about {
    grid-template-columns: 1fr;
}

.service-card {
    flex-direction: column;
    text-align: center;
}

.service-tags { margin: 15px 0; }
}

/* --- CTA --- */
.heavy-cta {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 26, 53, 0.85)),
    url('../Media/Image/man.jpg') center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 40px;
    margin: 60px 20px;
    height: 500px;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3); }


/* --- Footer Style --- */
  footer {
      background: #000;
      color: white;
      padding: 80px 0 40px;
      margin-top: 50px;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1.5fr;
      gap: 40px;
      padding-bottom: 50px;
      border-bottom: 1px solid #333;
  }

  .footer-logo h2 { font-family: 'Inter'; font-size: 1.8rem; margin-bottom: 15px; }
  .footer-col h4 { margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; color: #999; font-size: 0.9rem; }

  /* Responsive */
  @media (max-width: 992px) {
      .service-row, .service-row:nth-child(even) { flex-direction: column; text-align: center; }
      .feature-list li { justify-content: center; }
      .service-image img { height: 300px; }
      .footer-grid { grid-template-columns: 1fr; text-align: center; }
  }
