  :root {
    --navy: #1B2A6B;
    --navy-dark: #111d50;
    --navy-light: #2a3d8f;
    --gold: #D4A017;
    --gold-light: #f0c040;
    --grey: #6B7280;
    --grey-light: #8A9099;
    --white: #ffffff;
    --off-white: #F8F9FC;
    --dark-text: #1a1a2e;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
  }

 /* NAV - Modern & Premium (White Background) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95); /* White with slight transparency */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 25, 60, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
  height: 65px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.4s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.03);
}

/* Logo Image */
.nav-logo img,
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  transition: all 0.3s ease;
}

.nav-logo:hover img,
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 6px 12px rgba(212, 160, 23, 0.3));
  transform: scale(1.04);
}

/* Logo Text */
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #00193c; /* Deep Navy */
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-logo-text span:last-child {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.8px;
  font-weight: 500;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  text-decoration: none;
  color: #333;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f4c95d; /* Gold underline */
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 60%;
}

.nav-item:hover {
  color: #00193c;
  background: rgba(0, 25, 60, 0.05);
  transform: translateY(-2px);
}

/* CTA Button */
.nav-cta {
  background: linear-gradient(135deg, #f4c95d, #e8b13d) !important;
  color: #00193c !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 15px rgba(244, 201, 93, 0.3);
  transition: all 0.3s ease;
  text-decoration: none !important; /* Remove underline */
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(244, 201, 93, 0.4);
  text-decoration: none !important; /* Keep underline removed on hover */
}
/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  position: relative;
  width: 28px;
  height: 3px;
  background: #00193c;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background: #00193c;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(135deg);
  top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-135deg);
  top: 0;
}

/* Mobile Menu */
@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    gap: 12px;
    transition: left 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .nav-links.open {
    left: 0;
  }
  .nav-item {
    font-size: 18px;
    padding: 14px 30px;
    width: 80%;
    text-align: center;
    color: #333;
  }
}

/* Scroll Effect */
@media (min-width: 993px) {
  .navbar.scrolled .nav-logo img,
  .navbar.scrolled .nav-logo-img {
    height: 44px;
  }
}
  /* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:120px 8%;
    overflow:hidden;
    background:#071933;
}

/* =========================
   VIDEO BACKGROUND
========================= */

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/* =========================
   OVERLAY
========================= */

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        135deg,
        rgba(7,25,51,0.92),
        rgba(11,42,86,0.85),
        rgba(0,0,0,0.75)
    );
    z-index:1;
}

/* =========================
   CONTENT POSITIONING
========================= */

.hero-content,
.hero-visual{
    position:relative;
    z-index:5;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-content{
    flex:1;
    max-width:650px;
}

.hero-eyebrow{
    display:inline-block;
    background:rgba(212,160,23,0.15);
    color:#d4a017;
    border:1px solid rgba(212,160,23,0.4);
    padding:10px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:25px;
    text-transform:uppercase;
}

.hero h1{
    font-size:clamp(3rem,6vw,5rem);
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin-bottom:15px;
}

.hero h1 span{
    color:#d4a017;
}

.hero-sub{
    color:#d4a017;
    font-size:1.3rem;
    font-weight:600;
    margin-bottom:20px;
}

.hero p{
    color:#d8dce6;
    line-height:1.8;
    font-size:17px;
    margin-bottom:35px;
}

/* =========================
   BUTTONS
========================= */

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    display:inline-block;
    background:#d4a017;
    color:#071933;
    text-decoration:none;
    padding:15px 35px;
    border-radius:6px;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(212,160,23,.35);
}

.btn-outline{
    display:inline-block;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border:2px solid rgba(255,255,255,.4);
    border-radius:6px;
    transition:.3s;
}

.btn-outline:hover{
    border-color:#d4a017;
    color:#d4a017;
}

/* =========================
   RIGHT SIDE STATS
========================= */

.hero-visual{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:420px;
}

.stat-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:15px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
    animation:floatCard 4s ease-in-out infinite;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card.accent{
    background:#d4a017;
    border-color:#d4a017;
}

.stat-card .num{
    font-size:2.5rem;
    font-weight:800;
    color:#d4a017;
    margin-bottom:10px;
}

.stat-card .label{
    font-size:14px;
    color:#cfd6e4;
}

.stat-card.accent .num,
.stat-card.accent .label{
    color:#071933;
}

.stat-card:nth-child(2){
    animation-delay:.5s;
}

.stat-card:nth-child(3){
    animation-delay:1s;
}

.stat-card:nth-child(4){
    animation-delay:1.5s;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

.hero-content{
    animation:slideLeft 1s ease;
}

.hero-visual{
    animation:slideRight 1s ease;
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* =========================
   GOLD GLOW EFFECT
========================= */

.hero-stats{
    position:relative;
}

.hero-stats::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(212,160,23,.18);
    border-radius:50%;
    filter:blur(120px);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:-1;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero{
        flex-direction:column;
        text-align:center;
        padding:120px 30px 80px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-visual{
        width:100%;
        margin-top:30px;
    }
}

@media(max-width:768px){

    .hero h1{
        font-size:2.8rem;
    }

    .hero-stats{
        grid-template-columns:1fr;
        max-width:320px;
    }

    .hero-sub{
        font-size:1.1rem;
    }
}

@media(max-width:480px){

    .hero{
        padding:100px 20px 60px;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
        text-align:center;
    }

    .hero h1{
        font-size:2.2rem;
    }
}
  
/* =========================
   ABOUT SECTION
========================= */
.about {
    padding: 100px 8%;
    background: #f0f1f3;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =========================
   IMAGE AREA
========================= */
.about-image-wrap {
    position: relative;
}

.about-image {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Experience Badge */
.about-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: #041c4a;
    color: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(4,28,74,0.25);
}

.about-badge .big {
    font-size: 30px;
    font-weight: 700;
}

.about-badge .small {
    font-size: 13px;
    line-height: 1.4;
}

/* =========================
   CONTENT AREA
========================= */

.section-label {
    display: inline-block;
    color: #f4a300;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    color: #041c4a;
    margin-bottom: 20px;
}

.section-divider {
    width: 90px;
    height: 4px;
    background: #f4a300;
    margin: 25px 0;
    border-radius: 20px;
}

.section-desc {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* =========================
   FEATURE POINTS
========================= */

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 35px 0;
}

.about-point {
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-point:hover {
    transform: translateY(-5px);
}

.about-point .icon {
    font-size: 24px;
    color: #f4a300;
}

.about-point p {
    margin: 0;
    color: #1e293b;
    font-size: 15px;
    font-weight: 600;
}

/* =========================
   MISSION VISION
========================= */

.mission-vision {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mv-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #f4a300;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mv-box h3 {
    color: #041c4a;
    margin-bottom: 10px;
    font-size: 22px;
}

.mv-box p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* =========================
   BUTTON
========================= */

.btn-primary {
    display: inline-block;
    background: #f4a300;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #d88f00;
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px){

    .about-inner{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title{
        font-size: 38px;
    }

    .about-badge{
        position: static;
        width: fit-content;
        margin-top: 20px;
    }
}

@media(max-width: 768px){

    .about-points{
        grid-template-columns: 1fr;
    }

    .section-title{
        font-size: 32px;
    }
}

@media(max-width: 576px){

    .about{
        padding: 70px 5%;
    }

    .section-title{
        font-size: 28px;
    }

    .section-desc{
        font-size: 15px;
    }

    .about-badge{
        width: 100%;
        justify-content: center;
        left: 0;
    }
}
/* =========================
   SERVICES SECTION
========================= */

.services{
    position:relative;
    padding:120px 8%;
    background:url("Images/services-bg.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.services-overlay{
    position:absolute;
    inset:0;
    background:rgba(7,25,51,0.88);
}

.services-container{
    position:relative;
    z-index:2;
}

.services .section-label{
    text-align:center;
    color:#d4a017;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
    display:block;
}

.services .section-title{
    text-align:center;
    color:#fff;
    font-size:3rem;
    margin-bottom:20px;
}

.services .section-desc{
    text-align:center;
    color:#cfd6e4;
    max-width:800px;
    margin:0 auto 60px;
    line-height:1.8;
}

/* =========================
   SERVICE GRID
========================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
}

/* =========================
   SERVICE CARD
========================= */

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.service-content{
    padding:30px;
}

.service-content h3{
    color:#071933;
    margin-bottom:15px;
    font-size:1.4rem;
}

.service-content p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .services{
        padding:80px 20px;
    }

    .services .section-title{
        font-size:2.2rem;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card img{
        height:220px;
    }
}

/* =========================
   Why Us
========================= */

.why{
    position: relative;
    padding: 100px 8%;
    background:
        linear-gradient(rgba(0,0,0,.75),
        rgba(0,0,0,.75)),
        url("images/construction-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.why-container{
    position: relative;
    z-index: 2;
}

.why .section-label{
    color: #f4b400;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why .section-title{
    color: #fff;
    font-size: 42px;
    margin: 15px 0;
}

.why .section-desc{
    color: rgba(255,255,255,.85);
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
}

.why-stats{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin: 60px 0;
}

.stat-box{
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    transition: .4s;
}

.stat-box:hover{
    transform: translateY(-10px);
}

.stat-box h3{
    color: #f4b400;
    font-size: 40px;
    margin-bottom: 10px;
}

.stat-box span{
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.why-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 24px 18px;
    transition: .4s;
}

.why-card:hover{
    transform: translateY(-12px);
    border-color: #f4b400;
}

.why-icon {
    font-size: 32px;
    margin-bottom: 10px;
}


.why-card h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.why-card p {
    color: rgba(255,255,255,.85);
    line-height: 1.6;
    font-size: 0.85rem;
}

.why-btn{
    display: inline-block;
    margin-top: 50px;
    background: #f4b400;
    color: #111;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    transition: .3s;
}

.why-btn:hover{
    transform: translateY(-3px);
}

@media(max-width: 1100px) {
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .why-stats,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why .section-title {
        font-size: 30px;
    }
}

  /* TEAM */
.team{
    padding:100px 8%;
    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
            rgba(4, 28, 74, 0.90),
            rgba(1, 11, 34, 0.92)
        ),
        url("images/team-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Floating Icons */

.floating-icon{
    position:absolute;
    color:#f3b50a;
    opacity:.08;
    z-index:1;
    animation:float 8s ease-in-out infinite;
}

.floating-icon i{
    font-size:80px;
}

.icon1{
    top:120px;
    left:40px;
}

.icon2{
    top:180px;
    right:60px;
}

.icon3{
    bottom:120px;
    left:50px;
}

.icon4{
    bottom:100px;
    right:50px;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
}

/* Header */

.team-header,
.team-stats,
.team-grid{
    position:relative;
    z-index:2;
}

.team-header{
    text-align:center;
    max-width:850px;
    margin:auto;
}

.section-label{
    color:#f4b400;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    color:#fff;
    font-size:48px;
    margin:20px 0 35px;
    position:relative;
}

.section-title::after{
    content:"";
    position:absolute;
    width:100px;
    height:4px;
    background:#f4b400;
    left:50%;
    transform:translateX(-50%);
    bottom:-15px;
    border-radius:10px;
}

.section-desc{
    color:rgba(255,255,255,.85);
    line-height:1.8;
}


/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
/* Card */

.team-card {
    background: rgba(151, 11, 11, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: visible;
    transition: .4s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 28px 16px 20px;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #30437d;
}

.team-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 1px solid #f4b400;
    box-shadow: 0 4px 16px rgba(244, 180, 0, 0.3);
    background: rgba(255,255,255,0.08);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: .5s;
}
.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-content {
    padding: 0;
    text-align: center;
}

.team-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 0.92rem;
    font-weight: 600;
}

.team-role {
    display: inline-block;
    background: #dfaf2d;
    color: #111;
    padding: 4px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.78rem;
    margin-bottom: 14px;
}

/* Social */

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#041c4a;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.3s;
}

.team-social a:hover{
    background:#f4b400;
    color:#111;
}


/* Responsive */

@media(max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
        font-size: 30px;
    }
    .floating-icon {
        display: none;
    }
}

@media(max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT SECTION */
.contact{
    padding:120px 8%;
    background:linear-gradient(
        135deg,
        #041c4a 0%,
        #001530 100%
    );
}

.contact-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

/* LEFT SIDE */
.contact-info{
    color:#fff;
}

.section-label{
    color:#f4c95d;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.contact-info h2{
    font-size:48px;
    margin:15px 0 20px;
    color:#fff;
}

.contact-info p{
    color:#dbe5f1;
    line-height:1.8;
}

.contact-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    padding:20px;
    border-radius:16px;
    display:flex;
    gap:15px;
    margin-top:20px;
}

.contact-card span{
    font-size:28px;
}

.contact-card h4{
    color:#fff;
    margin-bottom:5px;
}

/* FORM */
.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.contact-form h3{
    color:#041c4a;
    margin-bottom:25px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #d6dce5;
    border-radius:10px;
    font-size:15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#f4c95d;
    box-shadow:0 0 0 4px rgba(244,201,93,.15);
}

.btn-submit{
    width:100%;
    border:none;
    cursor:pointer;
    background:linear-gradient(
        135deg,
        #f4c95d,
        #e8b13d
    );
    color:#041c4a;
    padding:16px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
}

.btn-submit:hover{
    transform:translateY(-3px);
}

/* SUCCESS MESSAGE */
.success-message{
    display:none;
    background:#22c55e;
    color:#fff;
    text-align:center;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
    font-weight:600;
}

/* MAP */
.map-section iframe{
    width:100%;
    height:500px;
    border:none;
}

/* RESPONSIVE */
@media(max-width:991px){

    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-info h2{
        font-size:36px;
    }

    .form-row{
        grid-template-columns:1fr;
    }
}

  /* FOOTER */
  footer {
    background: var(--navy-dark);
    padding: 60px 5% 30px;
    color: #8090b8;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px;
    margin-bottom: 50px;
  }
  .footer-brand img { height: 55px; width: auto; margin-bottom: 16px; filter: brightness(1.2); }
  .footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
  .footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700; color: var(--white);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    text-decoration: none; color: #8090b8; font-size: 13px;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
  .footer-contact-item span:first-child { font-size: 15px; margin-top: 1px; }
  .footer-contact-item span:last-child { font-size: 13px; line-height: 1.5; }
  .footer-contact-item a { color: #8090b8; text-decoration: none; }
  .footer-contact-item a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 13px; }
  .pan-badge {
    background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.3);
    color: var(--gold); font-size: 12px; font-weight: 600;
    padding: 4px 12px; border-radius: 4px; letter-spacing: 0.5px;
  }

  /* MOBILE NAV TOGGLE */
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }

  @media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy-dark); padding: 20px 5%; gap: 4px; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero p { margin: 0 auto 36px; }
    .hero-btns { justify-content: center; }
    .hero-visual { padding: 40px 0 0; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; max-width: 300px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { right: 10px; bottom: 10px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
  }

.footer-bottom a {
    background: none;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.05em;
    text-decoration: none;
    padding: 0;
    border-radius: 0;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
  