/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

:root {
    --primary-blue: #0D4F7C;
    --primary-gold: #F4A21E;
    --dark-bg: #0a0c0f;
    --light-bg: #1a1e24;
    --text-light: #e5e7eb;
    --text-gray: #9ca3af;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}


section {
  scroll-margin-top: 120px;
}

/* Navigation */
.navbar {
     background: linear-gradient(
        to right,
        #ffffff,
        #f8fafc,
        #eef2f7
    );
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(244, 162, 30, 0.2);
    padding: 1.5rem 5%;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);

}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 🔥 FORCE BIG SCALE */
.logo-img {
    width: auto;
    height: 100%;
    transform: scale(1.8); /* 🔥 main fix */
    object-fit: contain;
}

.logo-full {
    font-size: 2rem;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 1px;
    margin-left: 30px;
    align-items: center;
    /* color: #F4A21E;  */
    background: linear-gradient(90deg, #f59e0b, #0f172a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.nav-links {
    display: flex;
    gap: 2rem;
    gap: 30px;
    justify-content: flex-end;
    
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    transition: color 0.3s;
    position: relative;
    color: #1a1a1a;
    white-space: nowrap;   

    
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s;
    background: #f4a21e;
}

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

.nav-links a:hover::after {
    width: 100%;
}


@media (max-width: 1200px) {

.logo-full {

    font-size: 1rem;
    margin-left: 10px;

}

.nav-links
{
    margin-left: 10px;
}
  

.nav-links a {
    font-size: 13px;
  }
  
}

/* ============================= */
/* 📱 MOBILE (≤ 768px) */
/* ============================= */

@media (max-width: 768px) {

    .navbar {
        padding: 0.8rem 4%;
    }

    .nav-container {
        flex-wrap: wrap; /* allow wrapping */
        gap: 10px;
    }

    /* LOGO */
    .logo-img {
        transform: scale(1.2);
    }

    .logo-full {
        font-size: 1.1rem;
        margin-left: 8px;
    }

    /* NAV LINKS */
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 6px 8px;
    }

    .nav-links a::after {
        bottom: -3px;
    }
}


@media (max-width: 480px) {

    .logo-full {
        font-size: 0.95rem;
    }

    .logo-img {
        transform: scale(1.1);
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {

    .logo-img {
        transform: scale(1.4);
    }

    .logo-full {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 1.1rem;
    }
}



/* Main Content */
/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    background: url("./images/img1.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    animation: zoomBg 20s ease-in-out infinite alternate;
   
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
        
    
}

/* CONTENT */
.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
    padding-top: 250px;
}

/* SMALL TITLE */
.hero-content h5 {
    color: #4da3ff; /* BLUE FROM LOGO */
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 30px;
    
   
    
}

/* MAIN HEADING */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* ORANGE HIGHLIGHT */
.hero-content h1 span {
    color: #f5a623; /* ORANGE FROM LOGO */
}

/* PARAGRAPH */
.hero-content p {
    color: #ccc;
    margin: 20px 0;
    font-size: 22px;
    margin-top: 15px;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #ffb703);
    color: #0b2c4d; /* navy text */
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px; /* FIXED (30px was too big ❌) */
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    letter-spacing:0.5px;
}

/* HOVER */
.btn-primary:hover {
    transform: translateY(-2px);
}

/* INFO TEXT */
.hero-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-badges span {
    background: #0b2c4d; /* navy */
    color: #fff; /* white text */
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */


/* BACKGROUND ZOOM EFFECT */
/* @keyframes zoomBg {
    from { background-size: 100%; }
    to { background-size: 110%; }
} */

   /* TABLET (1024px ↓) */

@media (max-width: 1024px) {

    .hero {
        height: 100vh;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h5 {
        font-size: 24px;
       
    }

    .hero-content p {
        font-size: 17px;
    }

    .btn-primary {
        font-size: 17px;
        padding: 12px 24px;
    }
}


/* =========================
   MOBILE (768px ↓)
========================= */
@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 110px 15px 60px;
        
        background-position: center top;
        background-size: cover;
 
    }

    .hero-content {
        padding: 10px;
    }

    .hero-content h5 {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 12px 20px;
        width: 100%;
        max-width: 280px;
    }

    .hero-badges {
        gap: 8px;
    }

    .hero-badges span {
        font-size: 12px;
        padding: 6px 12px;
    }
}


/* =========================
   SMALL MOBILE (480px ↓)
========================= */
@media (max-width: 480px) {

    .hero{
    background-position: center top;
    background-size: cover;

    }

    .hero-content{
        padding-top: 180px;
    }
    .hero-content h1 {
        font-size: 24px;
        margin-top: 10;
    }

    .hero-content p {
        font-size: 16px;
        
    }

    .hero-content h5 {
        font-size: 18px;
        margin-bottom: 0;
       
    }

    .btn-primary {
        font-size: 15px;
        padding: 10px 18px;
        margin-top: 0px;
    }
}
 


/* Services Section */
/* =========================
   SERVICES SECTION
========================= */
.services {
    background: #0b2c4d; /* navy background */
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 38px;
    /* color: #fff; */
    color: #f4a000;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-subtitle {
    color: #ccc;
    margin-bottom: 50px;
    font-size: 20px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD */
.service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
    /* border-top: 1px solid #f5a623;  */
    border: 2.5px solid #f5a623;
}

/* TITLE */
.service-card h3 {
    font-size: 19px;
    color: #0b2c4d;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

/* TEXT */
.service-card p {
    font-size: 17px;
    color: #666;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* =========================
   TABLET (1024px ↓)
========================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   MOBILE (768px ↓)
========================= */
@media (max-width: 768px) {

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        text-align: center;
    }
}


/* =========================
   SMALL MOBILE (480px ↓)
========================= */
@media (max-width: 480px) {

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 16px;
    }
}
/* Why Choose Us */
.why-premium {
    background: linear-gradient(135deg, #081a2c, #0f2b46);
    padding: 100px 20px;
    color: #fff;
}

/* LAYOUT */
.why-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.why-left h2 {
    font-size: 40px;
    color: #f4a000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.why-left p {
    color: #ccc;
    line-height: 1.7;
    font-size: 20px;
    letter-spacing: 0.5px;
}

/* RIGHT STRIPS */
.why-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* STRIP DESIGN */
.why-strip {
    position: relative;
    padding: 20px 20px 20px 30px;
    border-left: 3px solid #f4a000;
    /* background: rgba(255,255,255,0.02); */
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);

    
}

/* GLOW EFFECT */
.why-strip::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 0;
    height: 0%;
    width: 3px;
    background: #f4a000;
    transition: 0.4s;
}

.why-strip:hover::before {
    height: 100%;
}

/* TEXT */
.why-strip h3 {
    font-size: 20px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.why-strip p {
    font-size: 17px;
    color: #ccc;
}

/* HOVER */
.why-strip:hover {
    transform: translateX(8px);
    background: rgba(255,255,255,0.05);
}

/* ================= */
/* 📱 RESPONSIVE */
/* ================= */

@media (max-width: 992px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-left h2 {
        font-size: 30px;
    }

    .why-strip {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .why-premium {
        padding: 70px 15px;
    }

    .why-left h2 {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .why-left p{
        font-size: 17;
    }

    .why-strip h3 {
        font-size: 19px;
    }

    .why-strip p {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
}

/*process section*/
/* ===== Strengths Section ===== */
.strengths-section {
  background: linear-gradient(135deg, #0d2b45, #081f33);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header h2 {
  font-size: 40px;
  color: #f39c12;
  margin-bottom: 10px;
  letter-spacing: 1px;
  
}

.section-header p {
  font-size: 20px;
  color: #cfd8dc;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* Grid */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Item */
.strength-item {
  background: #123a5c;
  padding: 30px 20px;
  border-radius: 10px;
  border-left: 4px solid #f39c12;
  transition: 0.3s;
}

.strength-item h3 {
  font-size: 34px;
  color: #f39c12;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  
}

.strength-item p {
  font-size: 17px;
  color: #e0e0e0;
  letter-spacing: 0.5px;
}

/* Hover (very subtle) */
.strength-item:hover {
  background: #15456d;
}

/* CTA */
.strengths-cta {
  margin-top: 60px;
}

.strengths-cta h4 {
  font-size: 25px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.btn-primary {
  display: inline-block;
  background: #f39c12;
  color: #000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ffb84d;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section-header h2 {
    font-size: 30px;
    margin-top: 0;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .strength-item {
    padding: 25px 15px;
  }

  .strength-item h3{
    font-size: 26px;
  }

  .strengths-cta h4{
    font-size: 22px;
  }
}

/* Contact Section */
/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, #081f33, #0d2b45);
  padding: 80px 20px;
}

/* CARD */
.contact-card {
  max-width: 600px;
  margin: auto;
  background: #0d2b45;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #123a5c;
  text-align: center;

}

.contact-card h2 {
  color: #f39c12;
  margin-bottom: 10px;
  font-size: 32px;
  letter-spacing: 1px;
}

.contact-card p {
  color: #cfd8dc;
  margin-bottom: 30px;
  font-size: 19px;
  letter-spacing: 0.5px;
}

/* FORM */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

/* INPUTS */
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  background: #081f33;
  border: 1px solid #1c4a6e;
  border-radius: 6px;
  color: #fff;
  font-size: 17px;
}

/* PLACEHOLDER */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9fb3c8;
}

/* DROPDOWN FIX */
.form-group select {
  appearance: none;
  cursor: pointer;

  /* custom arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23f39c12' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* FOCUS */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #f39c12;
  outline: none;
}

/* OPTIONS */
.form-group select option {
  color: white;
}

/* BUTTON */
button {
  width: 100%;
  padding: 14px;
  background: #f39c12;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 1px;
}

button:hover {
  background: #ffb84d;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 20px;
  }

  .contact-card h2 {
    font-size: 22px;
  }
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #071a2c, #0d2b45);
    color: #cfd8dc;
    padding: 2.5rem 5% 1.5rem;
    border-top: 1px solid #123a5c;}

.footer-info p {
    margin: 0.8rem 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.footer-info a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-info strong {
    color: var(--primary-gold);
}

.footer-bottom {
     margin-top: 20px;
     padding-top: 10px;
     text-align: center;
    border-top: 1px solid #123a5c;    
    text-align: center;
    font-size: 13px;
   color: #9fb3c8;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.footer-contact a {
    color: var(--primary-gold);
    text-decoration: none;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.floating-call {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(244, 162, 30, 0.4);
    transition: all 0.3s;
    z-index: 999;
    border: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-image-wrapper {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .contact-container {
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }

    .hero-image-wrapper {
        height: 300px;
    }

    .image-badge {
        left: 15px;
        bottom: 15px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .services,
    .why-choose,
    .process,
    .contact {
        padding: 3rem 5%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .features-grid {
        gap: 1rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .hero-image-wrapper {
        height: 250px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}



/* Logo Styles with Real Image */
/* Logo Styles - One Line Text */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-shield {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 55px;
    transition: transform 0.3s ease;
}

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

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.logo-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0D4F7C;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #F4A21E;
    text-transform: uppercase;
}

/* Hover Effects */
.logo:hover .logo-title {
    color: #F4A21E;
    transition: color 0.3s ease;
}

.logo:hover .logo-sub {
    color: #0D4F7C;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-shield {
        width: 40px;
        height: 45px;
    }
    
    .logo-title {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 0.65rem;
        letter-spacing: 1.2px;
    }
    
    .logo-text {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .logo-shield {
        width: 35px;
        height: 40px;
    }
    
    .logo-title {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
    
    .logo-text {
        gap: 5px;
    }
}