@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');


*{
  padding:0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #0f2b4a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
   font-family: "Helvetica Neue", Arial, sans-serif;
}
a {
  text-decoration: none;
}


.srt-scope .header {
  position: fixed;           
  top: 0;
  left: 0;
  width: 100%;
    background: rgba(184, 209, 241, 0.35);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 90px;
   
     z-index: 9999;
        

}

.srt-scope .header.scrolled {
    background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.srt-scope .left-box {
    width: 330px;
    height: 100%;
    background: white;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding-left: 25px;
}

.srt-scope .logo {
  object-fit: contain;
  width: 70%;
}

.srt-scope .menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.srt-scope .menu a {
    text-decoration: none;
    color: rgb(0, 49, 95);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.srt-scope .menu a:hover {
    color: #ea5e26; 
}

.srt-scope .menu a.active {
    color: #ea5e26 !important; 
    position: relative;
}

.srt-scope .quote-btn {
    background: #855907;
    padding: 12px 24px;
    border-radius: 4px;
    color: #fff !important;
}
.srt-scope .menu a.quote-btn.active {
    color: #fff !important; 
    background: #855907;
}

/* HAMBURGER */
.srt-scope .hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.srt-scope .hamburger span {
    width: 28px;
    height: 3px;
   background: #ea5e26;
    transition: 0.4s;
}
.srt-scope .hamburger:hover span {
    background: rgb(228, 103, 58);
}

/* HAMBURGER → CROSS */
.srt-scope .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ea5e26;
}

.srt-scope .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.srt-scope .hamburger.active span:nth-child(3) {
   transform: rotate(-45deg) translate(6px, -6px);
    background: #ea5e26;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .srt-scope .menu {
        gap: 16px;
    }
}

/* ================= MOBILE & TABLET ================= */
@media (max-width: 768px) {

    .srt-scope .header {
        height: 70px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .srt-scope .left-box {
        width: auto;
        height: auto;
        background: transparent;
        clip-path: none;
        padding-left: 0;
    }

    .srt-scope .logo {
        height: 45px;
    }

    .srt-scope .hamburger {
        display: flex;
    }

    .srt-scope .hamburger span {
        width: 22px;
        height: 2px;
    }

    /* MENU */
    .srt-scope .menu {
              z-index: 9998;

        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 16px;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .srt-scope .menu.active {
        max-height: 500px;
        padding: 18px 0;
    }

    .srt-scope .menu a {
        width: 100%;
        text-align: center;
        font-size: 15px;
    }

    .srt-scope .quote-btn {
        width: 90%;
        margin: auto;
        text-align: center;
    }

    .srt-scope .menu a.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #ffc107;
    }
    .srt-scope .hamburger span {
        width: 25px; 
        height: 2.5px;
    }
}
.srt-scope .quote-btn:hover {
    color: #fff !important;
    background: #a6710a; 
}

@media (max-width: 1200px) {
    .srt-scope .header {
        padding: 0 15px;
        height: 90px; 
    }
    .srt-scope .left-box {
        width: 280px; 
    }
    .srt-scope .menu {
        gap: 15px;
    }
    .srt-scope .menu a {
        font-size: 14px; 
    }
}

@media (max-width: 1024px) {
    .srt-scope .header {
        height: 80px;
    }
    .srt-scope .left-box {
        width: 240px;
        padding-left: 15px;
    }
    .srt-scope .logo {
        width: 85%; 
    }
    .srt-scope .menu {
        gap: 12px;
    }
    .srt-scope .menu a {
        font-size: 13px;
    }
    .srt-scope .quote-btn {
        padding: 10px 18px; 
    }
}

@media (max-width: 900px) {
    .srt-scope .hamburger {
        display: flex; 
    }

    .srt-scope .left-box {
        width: auto;
        background: transparent;
        clip-path: none;
        padding-left: 0;
    }

    .srt-scope .header {
        height: 70px;
        background: white; 
    }

    .srt-scope .menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 9998;
    }

    .srt-scope .menu.active {
        max-height: 500px;
        padding-bottom: 20px;
    }

    .srt-scope .menu a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
        font-size: 16px;
    }

    .srt-scope .quote-btn {
        width: 80%;
        margin: 15px auto;
        border-radius: 50px; 
    }
}
/* ==========================================================================
   FOOTER SECTION (Original + Updated Alignment)
   ========================================================================== */
/* --- Base Footer Styles --- */


.ft-footer {
  background-color: #001a33;
  background-size: 400% 400%;
  animation: oceanGradient 15s ease infinite;
  color: white;
  padding: 25px 8% 0px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* --- Waves Fix for Desktop --- */
.ft-footer::before,
.ft-footer::after {
  content: "";
  position: absolute;
  left: 0;
  width: 200%;
  height: 180px;
  bottom: -50px;
  background: rgba(255,255,255,0.1);
  opacity: 0.3;
  border-radius: 100%;
  animation: waveFooter 8s ease-in-out infinite;
  z-index: 1;
}

.ft-footer::after {
  height: 220px;
  opacity: 0.2;
  animation-duration: 12s;
  animation-delay: -4s;
}

@keyframes waveFooter {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-25px); }
}

@keyframes oceanGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Overlay & Video Logic --- */
.ft-footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ft-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%); 
  object-fit: cover; 
  opacity: 0.15; 
}

/* --- Content Styling --- */
.ft-footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  /* margin-bottom: 40px; */
  position: relative;
  z-index: 5;
}

.ft-footer-col { display: flex; flex-direction: column; }
.ft-about { align-items: flex-start; }

.ft-logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.95);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ft-logo-img { max-width: 180px; height: auto; object-fit: contain; }

.ft-footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: #ffc107;
  position: relative;
  display: inline-block;
}

.ft-footer-col h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #ff7b00;
  bottom: -6px;
  left: 0;
}

.ft-footer-col p { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 8px; }
.ft-footer-col ul { list-style: none; padding: 0; }
.ft-footer-col ul li { margin-bottom: 12px; }
.ft-footer-col ul li a { color: rgba(255,255,255,0.8); text-decoration: none; transition: 0.3s ease; display: inline-block; }
.ft-footer-col ul li a:hover { color: #ea5e26; transform: translateX(5px); }

.ft-contact p strong { color: #ffc107; }
.contact-num-2 { display: inline-block; margin-left: 5%; color: inherit; }

/* --- Footer Bottom --- */
.ft-footer-bottom {
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 5;
}

.ft-bottom-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.ft-footer-certificates { display: flex; gap: 15px; align-items: center; }
.ft-footer-certificates img { height: 45px; width: auto; transition: 0.3s; }

.ft-social-links { display: flex; gap: 15px; position: relative; z-index: 999; }
.ft-social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: rgba(255,255,255,0.1);
  border-radius: 50%; color: white; transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.2); font-size: 1.1rem; text-decoration: none;
}

.ft-footer-bottom p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* --- 📱 MOBILE UPDATED (FINAL FIX) 📱 --- */

@media (max-width: 768px) {
  .ft-footer {
    /* Direct background on main footer to ensure visibility */
    background: linear-gradient(rgba(0, 26, 51, 0.8), rgba(0, 26, 51, 0.8)), 
                url('img/footer-img.webp') no-repeat center center !important;
    background-size: cover !important;
    animation: none !important; /* Animation band taaki image dikhe */
  }

  .ft-footer::before, .ft-footer::after {
    display: none !important; /* Waves band mobile pe image block kar rahe the */
  }

  .ft-video-bg, .ft-footer-overlay {
    display: none !important; /* Video and overlay layers band */
  }

  .ft-footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .ft-about { align-items: center; }
  .ft-footer-col h3::after { left: 50%; transform: translateX(-50%); }
  
  .ft-contact p { display: flex; flex-direction: column; align-items: center; }
  .contact-num-2 { margin-left: 0; width: 100%; }

  .ft-bottom-flex { flex-direction: column; gap: 20px; }
  .ft-footer-certificates { order: 1; justify-content: center; width: 100%; }
  .ft-social-links { order: 2; justify-content: center; width: 100%; }
  .ft-footer-bottom p { order: 3; text-align: center; width: 100%; }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .ft-footer-container { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   GLOBAL BUBBLES
   ========================================================================== */
/* 
.global-bubbles {
  position: fixed;         
  inset: 0;                  
  pointer-events: none;    
  z-index: 5;
}



.bubble {
  position: absolute;
  background: rgba(220, 240, 255, 0.9);   
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(180, 230, 255, 0.7); 
  animation: float-bubble 18s linear infinite;
}

.global-bubbles .bubble:nth-child(odd) {
  background: rgba(200, 235, 255, 0.85);
}
.global-bubbles .bubble:nth-child(even) {
  box-shadow: 0 0 15px rgba(180, 230, 255, 0.9);
}

@keyframes float-bubble {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-105vh) translateX(10px); opacity: 0; }
} */


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f2027; /* Match your site theme */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Stay on top of everything */
    transition: opacity 0.5s ease;
}

/* Your provided loader CSS */
.loader {   
  --r1: 154%;
  --r2: 68.5%;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%; 
  background:
    radial-gradient(var(--r1) var(--r2) at top   ,#0000 79.5%,#269af2 80%),
    radial-gradient(var(--r1) var(--r2) at bottom,#269af2 79.5%,#0000 80%),
    radial-gradient(var(--r1) var(--r2) at top   ,#0000 79.5%,#269af2 80%),
    #ccc;
  background-size: 50.5% 220%;
  background-position: -100% 0%,0% 0%,100% 0%;
  background-repeat:no-repeat;
  animation: l9 2s infinite linear;
}

@keyframes l9 {
    33%  {background-position:    0% 33% ,100% 33% ,200% 33% }
    66%  {background-position: -100%  66%,0%   66% ,100% 66% }
    100% {background-position:    0% 100%,100% 100%,200% 100%}
}

/* Hide loader class */
.loader-hidden {
    opacity: 0;
    pointer-events: none;
}


/* BOTTOM TO TOP */

/* Scroll to Top Button with Constant Animation */
#scrollTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px; /* Same size as loader */
    aspect-ratio: 1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.3);
    
    /* SAME UI AS LOADING */
    --r1: 154%;
    --r2: 68.5%;
    background:
        radial-gradient(var(--r1) var(--r2) at top   ,#0000 79.5%,#269af2 80%),
        radial-gradient(var(--r1) var(--r2) at bottom,#269af2 79.5%,#0000 80%),
        radial-gradient(var(--r1) var(--r2) at top   ,#0000 79.5%,#269af2 80%),
        #132c44; /* Darker base to match your theme */
    background-size: 50.5% 220%;
    background-position: -100% 0%,0% 0%,100% 0%;
    background-repeat: no-repeat;
    
    /* SAME ANIMATION AS LOADING */
    animation: l9 2s infinite linear;
}

#scrollTopBtn:hover {
    filter: brightness(1.2);
    transform: scale(1.1);
}

/* Arrow inside the button */
#scrollTopBtn i {
    position: relative;
    z-index: 10;
    font-style: normal;
    font-weight: bold;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
    color: #fcdc4d;
}

/* 1. TABLET (Max-width: 1024px) */
@media (max-width: 1024px) {
    #scrollTopBtn {
        width: 55px;
        bottom: 25px;
        right: 25px;
        font-size: 22px;
    }
}

/* 2. MOBILE (Max-width: 768px) */
@media (max-width: 768px) {
    #scrollTopBtn {
        width: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
        box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    }
}

/* 3. SMALL MOBILE (Max-width: 480px) */
@media (max-width: 480px) {
    #scrollTopBtn {
        width: 45px; 
        bottom: 15px;
        right: 15px;
        font-size: 18px;
    }
    
    #scrollTopBtn:hover {
        transform: none;
    }
}


@keyframes l9 {
    33%  {background-position:    0% 33% ,100% 33% ,200% 33% }
    66%  {background-position: -100%  66%,0%   66% ,100% 66% }
    100% {background-position:    0% 100%,100% 100%,200% 100%}
}


