@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

:root {
          --header-h: 20vh;
  --header-h-scrolled: 12vh;   /* smaller height on scroll */
    --third-color: #1E1E1E;
    --text-color: #272626;
    --black-color: #000;
    --white-color: #fff;
    --primary-font: 'Arial', 'sans-serif';
    --secondary-font: 'Quicksand', 'sans-serif';
    --brand: #0093CB;
  --dark: #092032;
    --body: #FEFEFE;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}


body {
    font-family: "Barlow", sans-serif;
    color: var(--body);
    line-height: 1.7;
     display: flex;
    flex-direction: column;
}

h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4 {
    font-weight: 700;
    color: var(--dark);
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

img {
    width: 100%;
}

a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: var(--brand);
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-brand {
    color: var(--brand) !important;
}
/*---Home Services--*/
h1, h2, h3, h4, h5 {
    font-family: 'Roboto';
    font-weight: bold;
    margin: 0;
    padding: 0;
  }
  
  h1 {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: 20px;
    margin-top: auto;
  }
  
  h2 {
    font-size: 2rem;
    color: var(--text-color);
    font-family: 'Roboto';
    margin-top: 30px;
    margin-bottom: 18px;
  }
  
  h3 {
    font-size: 2.5rem;
    color: white;
    font-family: Roboto;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  h4 {
    margin-top: 15px;
    font-size: 1.8rem;
    color: var(--brand);
    margin-bottom: 14px;
  }
  
  h5 {
    font-size: 1.25rem;
    color: #1E1E1E;
    margin-bottom: 12px;
  }
  h6{
    font-size: small;
    color: var(--text-color);
    margin: auto;
    font-family: 'Roboto', sans-serif;

  }
  h7{
    font-size: medium;
    color: var(--brand);
    margin: auto;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Paragraphs */
  p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 15px;
  }
  

a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: var(--brand);
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-brand {
    color: var(--brand) !important;
}

.floating-email-btn {
  position: fixed;
  bottom: 160px; /* Place above call button */
  right: 20px;
  width: 50px;
  height: 50px;
  padding: 15px;
  background-color: var(--brand); /* Red */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background-color 0.3s;
  z-index: 1000;
  color: var(--white-color);
  font-size: 30px; /* Size of the Boxicon */
  text-decoration: none;
}

.floating-email-btn:hover {
  transform: scale(1.1);
  background-color: var(--white-color); /* Darker red */
  color: var(--brand);
}

.phone-call-button {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: var(--brand);
  color: white;
  font-size: 24px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: background-color 0.3s, transform 0.3s;
  text-decoration: none;
  line-height: 1; /* Removes the bar under the icon */
  padding: 0; /* No extra padding */
}

.phone-call-button i {
  display: block;
  line-height: 1; /* Ensures icon itself has no extra spacing */
}

.phone-call-button:hover {
  background-color: var(--white-color);
  color: var(--brand);
  transform: scale(1.1);
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 100%;
  padding: 15px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #128C7E; /* Darker green on hover */
  transform: scale(1.1);     /* Slight zoom effect */
  box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
}


#site-header{
  position: fixed; top:0; left:0; right:0; z-index:999;
  height: var(--header-h);
  background: transparent;
  margin-top: 0px;
  transition: height .28s ease, background .25s ease, box-shadow .25s ease;
}

/* smaller + colored when scrolled or menu open */
#site-header.scrolled, 

#site-header.menu-open{
  height: var(--header-h-scrolled);
  background: var(--brand);
  margin-top: -2px;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}




/* main container row */
.container-nav{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 230px;
  height: auto;
   margin-top: 2vh;


 transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease;
}

/* Shrink logo when header is scrolled */
#site-header.scrolled .logo img {
  width: 140px;
  height: 150px;
  margin-top: -45px;
}

/* Navbar inherits flex row automatically */
#navbar {
  flex-grow: 1; /* allows nav to fill space */
}

#navbar .nav-links {
  display: flex;
  align-items: center;
  margin-top: 1%;
  justify-content: flex-end;
}
#navbar {
  width: 100%;
  background: transparent !important;
  transition: all 0.4s ease;
  height: 100px;
  position: fixed;
  top: 35px; /* VERY IMPORTANT: after top-nav height */
  left: 0;
  z-index: 999;
}





/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin: 0 10px;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--white-color);
  font-family: 'Arial', 'sans-serif' ;
  padding: 8px 15px;
  transition: all 0.3s;
  border-radius: 5px;
}

.nav-links a:hover {
  background: var(--brand);
  color: white;
  border-radius: 20px;
  border-bottom: rgba(255, 250, 250, 0.872);
  border-style: double;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  background: rgba(74, 140, 165, 0.7);
  top: 100%;
  left: 0;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.dropdown-menu li {
  padding: 10px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Search Icon */



/* Menu Icon */
.menu-icon {
  display: none;
  font-size: 30px;
  color: white;
}

/* Navbar when scrolled */

#navbar.scrolled .nav-links a {
  color: var(--brand);
}

#navbar.scrolled .search-icon i,
#navbar.scrolled .menu-icon i {
  color: var(--brand);
}



#navbar.scrolled .nav-links a:hover {
  background: var(--brand); /* Background on hover */
  color: white; /* Text becomes white on hover */
  border-radius: 20px;
  border-bottom: var(--white-color);
  border-style: double;
}
.services-item { position: relative; }

/* show button on desktop, hide on mobile */
.services-item { position: relative; }

/* show button on desktop, hide on mobile */
.services-btn{
  display: none;
  background: transparent;
  border: 0;
  color: var(--white-color);
 font-family:'Arial', 'sans-serif';
font-weight: 800;

  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  align-items: center;
  gap: 6px;
}
.services-btn .chev{ width:14px;height:14px; transition:transform .18s ease; }
.services-btn[aria-expanded="true"] .chev{ transform: rotate(180deg); }

/* fallback link for mobile */
.services-link-mobile{ display: inline-block; }

/* Mega menu shell */
.mega-menu{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 14px);
  width: min(1100px, calc(100vw - 40px));
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2,8,23,.15);
  padding: 24px;
  display: none;
  z-index: 1000;
}
.service:hover{
  background: var(--brand) !important;
  transform: translateY(-1px);
}

.service:hover .icon{
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
}

.service:hover .svc-title,
.service:hover .svc-desc{
  color: #fff !important;
}

/* Optional: make icons feel crisper on dark hover */
.service .icon svg{ transition: color .18s ease, fill .18s ease, stroke .18s ease; }
.service:hover .icon svg{ stroke: #ffffff !important; fill: none; }

.mega-menu.open{ display: block; animation: svcFade .12s ease; }
@keyframes svcFade { from{opacity:0; transform:translate(-50%, -4px);} to{opacity:1; transform:translate(-50%, 0);} }

.mega-inner{ width:100%; }
.mega-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px 48px;
}

.service{
  display:flex; gap:14px; padding:12px; border-radius:12px;
  transition: background .15s ease, transform .15s ease;
  color: #0f172a;
}
.service:hover{ background:#f8fafc; transform: translateY(-1px); }
.service:focus{ outline: none; }
.service:focus-visible{ outline: 3px solid rgba(97,54,240,.25); outline-offset: 2px; }

.icon{
  width:42px;height:42px;border-radius:12px;
  background: rgba(97,54,240,.08); color: var(--brand);
  display:grid;place-items:center;flex:0 0 42px;
}

.svc-title{  font-family: Arial, sans-serif;
  font-weight: normal;   /* was 800 */
  font-size: 16px;
  color: #0f172a;         }
.svc-desc{ font-family: Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #444;  margin-top: 2px; }

.mega-footer{
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid #eef2f7; font-size:14px; color:#64748b;
}
.mega-footer a{ color: var(--brand); font-family: Arial, sans-serif;
  font-weight: normal; }
.mega-footer a :hover{ background-color: var(--brand); font-family: Arial, sans-serif;
  font-weight: normal; }
/* Navbar scrolled variant: keep button/link readable */
#navbar.scrolled .services-btn{ color: var(--brand);}
#navbar.scrolled .services-btn:hover{ color: var(--white); }

/* Hover style to match your links */
.services-btn:hover{
  background: var(--brand);
  
  color: white;
  border-radius: 20px;
  border-bottom: rgba(255, 250, 250, 0.872);
  border-style: double;
}
/* ---------- RESPONSIVE ---------- */
@media (min-width: 992px) {
  .menu-icon {
    display: none;
  }
  #navbar .nav-links {
    position: static;
    transform: none;
    height: auto;
    width: auto;
    flex-direction: row;
    gap: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .services-btn {
    display: inline-flex;
  }
  .services-link-mobile {
    display: none;
  }
}

/* ---------- MOBILE & TABLET (up to 991px) ---------- */
@media (max-width: 991.98px) {
  .top-nav {
    display: none !important;
  }
  .mega-menu {
    display: none !important;
  }
  .services-btn {
    display: none !important;
  }
  .services-link-mobile {
    display: inline-block;
  }

  /* Header Row */
  .container-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* logo left, burger right */
    padding: 8px 15px;
    margin: 0;
    background-color: transparent;
  }
.menu-icon {
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand);
    border: 2px solid var(--brand);
    border-radius: 6px;
    background: #fff;
    padding: 5px;
    margin-top: 2vh;
    margin-bottom: 5vh;
    margin-right: 5vh !important;
    margin-left: 85%;
  }
  #site-header.scrolled .menu-icon,
  #site-header.menu-open .menu-icon {
    color: #fff;
    border-color: #fff;
    background: var(--brand);
  }
  /* Logo */
  .logo {
    order: 2;
    display: flex;
   
    align-items: center;
  }
  .logo img {
    width: 140px;
    height: auto;
     margin-top: -10vh; /* remove extra margin */
    transition: width 0.3s ease, height 0.3s ease;
  }
  #site-header.scrolled .logo img {
    width: 120px; /* shrink when scrolled */
  }

  /* Menu Icon */
  

  /* Side Menu (Off-canvas) */
  #navbar .nav-links {
    position: fixed;
    top: 10vh !important;              /* full screen cover */
    right: 0;
    height: 80vh !important;       /* full viewport height */
    width: 85vw;
    max-width: 460px;
    background: var(--brand);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, .18);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1000;
  }
  #navbar .nav-links.active {
    transform: translateX(0); /* slide in */
  }

  #navbar .nav-links a {
    color: #fff;
    display: block;
    margin-top: 20px !important;
    margin-bottom: 20% !important;
    padding: 12px 10px;
    border-radius: 10px;
  }
  #navbar .nav-links a:hover {
    background: rgba(255, 255, 255, .12);
    text-decoration: none;
    border: 0;
  }
}
/*Banner Section*/
.banner {
  background: url('../img/about-us-banner.png') no-repeat center center/cover;
  height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: var(--brand);
 
  padding: 20px;
}

.banner-content h1 {
  font-size: 48px;
  color: var(--brand);
  font-family: var(--primary-font);

}

.banner-content p {
  font-size: 20px;
  color: var(--brand);
  font-family: var(--secondary-font);
  margin-top: 10px;
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  margin-left:4%;
  margin-right: 4%; 
   margin-top: 10%; 
  padding: 80px;
  background: #f9f9f9;
}
.what-we-do-section{
  display: flex;
  flex-wrap: wrap;
  margin-left: 4%;
  margin-right: 4%;
  margin-top: 10%;
  padding: 80px;
  background: #f9f9f9;

}
.main-heading-section{
    margin-top: 5%;
    margin: 5%;
  


}
.container-heading h3{
  color: var(--white-color);


}
.about-content, .about-image {
  flex: 1 1 45%;
  margin: 10px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}


/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }
  .counter-section {
    flex-direction: column;
  }
  .team-container {
    flex-direction: column;
  }
}


.container {
  display: flex;
  flex-wrap: wrap;
  
  align-items: center;
  gap: 30px;
  max-width: 1200px;
 
  margin: auto;
}
.container-1 {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  
  align-items: center;
  gap: 40px;
  max-width: 1200px;
 
  margin: auto;
}

.container .text {
  flex: 1;
  min-width: 300px;
 
}

.container .text2 {
  flex: 1;
  min-width: 100px;
}

.container .image {
  flex: 1;
  min-width: 300px;
}

.container img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.container img:hover {
  transform: scale(1.03);
}

.vision-mission-section {
   margin-left:4%;
  margin-right: 4%; 
   margin-top: 10%; 
  padding: 80px 20px;
  background: #f6f6f6;
}

.vision-mission-section .container {
  max-width: 1200px;
  margin: auto;
}

.vision-mission-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.vision-mission-section .row.reverse {
  flex-direction: row-reverse;
}

.vision-mission-section .col {
  flex: 1;
  min-width: 300px;
}

.vision-mission-section img.img-fluid {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vision-mission-section h2 {
  font-size: 32px;
  color: var(--brand);
  margin-bottom: 20px;
}

.vision-mission-section h3 {
  margin-top: 20px;
  color: var(--brand);
}

.vision-mission-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 768px) {
  .vision-mission-section .row {
    flex-direction: column;
    text-align: center;
  }

  .vision-mission-section .content {
    text-align: center;
  }
}
 
.core-values {
    background:   #b4e0efd7;
    margin: 4%;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .card-grid {
    display: flex;
   flex-direction: row;
    gap: 10px;
    margin-top: 10px;
    padding: 20px;
  }
  
  .card1 {
    background:  #ffffff;
    width: auto;
    height: auto;  
  
    padding: 10px;
    box-shadow: #1E1E1E;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card1:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .card1 p{
    color: var(--text-color);
  }
  

/* Responsive */
@media (max-width: 768px) {
  .card1 {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .card1 {
    width: 100%;
  }
}

.loader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:var(--brand);
    z-index: 99999;
    position: fixed;
    left: 0;
    right: 0;
}


input.form-control {
    border-color: transparent;
    height: 44px;
}

.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--brand);
}


/*Contact Form*/

.contact-section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    background: #f9f9f9;
  }
  
  .contact-form, .contact-info {
    flex: 1 1 45%;
    margin: 10px;
  }
  
  .contact-form h2,
  .contact-info h2 {
    margin-bottom: 20px;
    color: var(--brand);
  }
  
  .contact-form form input,
  .contact-form form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
  }
  
  .contact-form form button {
    padding: 15px 30px;
    border-radius: 30px;
    border-style: dashed;
    border-width: 2px;
    background-color:var(--brand);
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .contact-form form button:hover {
    background-color: white;
    border-radius: 30px;
    color: var(--brand);
    border-color: var(--brand);
    border-style: dashed;
    border-width: 2px;
  }
  
  .map-container {
    margin: 20px;
    padding: 15px 30px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
    }
  }
  


  .container {
  width: 85%;
  margin: auto;
  padding: 40px 0;
}

h1, h2, h3 {
  margin-bottom: 15px;
  color: #111;
}

/* Hero */
.careers-hero {
  background: url('img/careers-banner.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

/* Job Cards */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.job-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
}

.badge {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.apply-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  background: #007bff;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.apply-btn:hover {
  background: #0056b3;
}

/* Benefits */
.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  margin: 8px 0;
  font-size: 1rem;
}

.benefits-list i {
  color: #007bff;
  margin-right: 8px;
}

/* Application Form */
.application-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.application-form input,
.application-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.application-form button {
  background: #28a745;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
}

.application-form button:hover {
  background: #218838;
}

#formMessage {
  margin-top: 15px;
  font-weight: bold;
}
