/* =====================================================
GLOBAL RESET
===================================================== */


html, body{
width:100%;
max-width:100%;
overflow-x:hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1d2a38;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent layout shift when switching language */

html[lang="ar"] body {
    direction: rtl;
}

.navbar,
.top-bar,
.container,
.hero,
.about-wrapper,
.wwd-wrapper {
    direction: ltr;
}

/* =====================================================
CONTAINER
===================================================== */


.container{
width:100%;
max-width:1200px;
margin:0 auto;
padding:0 20px;
}

/* =====================================================
SCROLL PROGRESS
===================================================== */

#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: #5cb85c;
    z-index: 99999;
}

/* =====================================================
PAGE LOADER
===================================================== */

#pageLoader {
    position: fixed;
    inset: 0;
    background: #0f2d50;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: .5s ease;
}

.loader-content {
    text-align: center;
    color: #fff;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, .2);
    border-top: 6px solid #5cb85c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
/* =====================================================
TOP BAR
===================================================== */

.top-bar {
    background: #2f3f4f;
    color: #fff;
    font-size: 15px;
    padding: 12px 0;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 30px; /* side spacing */
}

.top-left {
    display: flex;
    align-items: center;
    gap: 70px; /* gap increase */
    flex-wrap: wrap;
}

.top-left a,
.top-left span{
    color:#fff;
    font-weight:500;
}

.divider {
    width: 2px; /* thicker line */
    height: 20px; /* taller line */
    background: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
}

/* =====================================================
LANGUAGE BUTTON
===================================================== */


/* Desktop only language button move */
@media (min-width:769px){

.lang-switch{
position: relative;
z-index: 5000;
flex-shrink: 0;
left: 260px;   /* ya jo value aap use kar rahe the */
}


}

/* Language button smaller on mobile */
@media (max-width:768px){

#langBtnMobile{
padding:6px 12px;   /* button height chhoti */
font-size:13px;     /* text thoda chhota */
border-radius:5px;
gap:6px;
}

#langBtnMobile i{
font-size:14px;     /* globe icon size adjust */
}

}

#langBtn {
    background: #5cb85c;
    border: none;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

#langBtn,
#langBtn i {
    color: #000;
}

html[lang="ar"] #langBtn {
    background: #0f2d50;
    color: #fff;
}

html[lang="ar"] #langBtn i {
    color: #fff;
}

.lang-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    background: #fff;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: .3s;
}

.lang-switch:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-dropdown div {
    padding: 14px 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.lang-dropdown div:hover {
    background: #f4f4f4;
}

.lang-dropdown div.active[data-lang="en"] {
    background: #5cb85c;
    color: #000;
}

.lang-dropdown div.active[data-lang="ar"] {
    background: #0f2d50;
    color: #fff;
}
/* ===== MOBILE TOPBAR ===== */

@media (max-width:768px){

.top-bar{
display:none;
}

}
/* ================= NAVBAR (DESKTOP + MOBILE) ================= */
.navbar {
    background: #f2e9dc;
    padding: 14px 0;
    position: relative;
    z-index: 1000;
}

/* ================= CONTAINER ================= */
.nav-container{
display:flex;
align-items:center;
max-width:1400px;
margin:0 auto;
padding:0;
}

/* ================= LOGO ================= */
.logo{
display:flex;
align-items:center;
margin-right:120px;
}

.logo img{
height:110px;
width:auto;
}

/* ================= NAV LINKS ================= */
.main-nav{
display:flex;
align-items:center;
}

.nav-links{
display:flex;
gap:90px;
list-style:none;
margin:0;
padding:0;
}

.nav-links a{
text-decoration:none;
font-weight:800;
font-size:18px;
color:#1d2a38;
}

.nav-links li { position: relative; }

/* underline animation desktop */
.nav-links a::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 2px;
background: #5cb85c;
transition: 0.3s;
}

.nav-links a:hover::after {
width: 100%;
}

/* dropdown arrow */
.nav-arrow {
font-size: 12px;
margin-left: 6px;
display: inline-block;
transition: 0.3s;
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
position: absolute;
top: 45px;
left: 0;
background: #fff;
min-width: 230px;
border-radius: 6px;
box-shadow: 0 12px 25px rgba(0,0,0,0.15);
padding: 8px 0;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: 0.3s;
z-index: 999;
}

.dropdown-menu li {
list-style: none;
}

.dropdown-menu a {
display: block;
padding: 12px 18px;
font-size: 14px;
font-weight: 600;
color: #1d2a38;
border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
background: #5cb85c;
color: #fff;
}

.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown:hover .nav-arrow {
transform: rotate(180deg);
}

.mobile-lang{
display:none;
}
/* hide hamburger on desktop */
.menu-toggle{
display:none;
}

/* ================= MOBILE NAVBAR ================= */
@media (max-width:768px){

/* navbar compact */
.navbar{
padding:8px 0;
}

/* container layout */
.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
padding:0 12px;
}

/* smaller logo */
.logo{
margin-right:0;
}

.logo img{
height:55px;
}

/* language button */
.mobile-lang{
display:flex;
align-items:center;
margin-left:auto;
margin-right:10px;
position:relative;
}

#langBtnMobile{
padding:5px 9px;
font-size:12px;
border-radius:6px;
background:#5cb85c;
border:none;
display:flex;
align-items:center;
gap:4px;
color:#fff;
}

/* hamburger */

.menu-toggle{
display:block;
font-size:24px;
cursor:pointer;
z-index:10001;
}

/* slide menu */
.main-nav{
position:fixed;
top:0;
right:-100%;
width:260px;
height:100vh;
background:#f2e9dc;
flex-direction:column;
padding-top:85px;
transition:0.35s ease;
z-index:9999;
}

/* open state */
.main-nav.active{
right:0;
}

/* mobile links */
.nav-links{
flex-direction:column;
gap:18px;
padding:0 30px;
}

/* language dropdown (smaller) */
.mobile-lang .lang-dropdown{
position:absolute;
top:36px;
right:0;
min-width:100px;
background:#fff;
border-radius:5px;
box-shadow:0 4px 12px rgba(0,0,0,0.15);
display:none;
z-index:9999;
overflow:hidden;
}

/* dropdown items smaller */
.mobile-lang .lang-dropdown div{
padding:6px 10px;
font-size:12px;
font-weight:500;
cursor:pointer;
}

/* active language */
.mobile-lang .lang-dropdown div.active{
background:#5cb85c;
color:#fff;
}

/* show dropdown */
.mobile-lang.active .lang-dropdown{
display:block;
}

}

/* ================= MAIN HERO ================= */

.main-hero{
position:relative;
width:100%;
min-height:720px;
display:flex;
align-items:center;
justify-content:flex-start;
padding:120px 5% 80px;
overflow:hidden;
color:#fff;
}

/* SLIDER */

.hero-slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-size:110%;
background-position:center;
background-repeat:no-repeat;
opacity:0;
transition:opacity 1s ease;
}

.hero-slide.active{
opacity:1;
}

/* DARK OVERLAY */

.hero-slide::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(10,28,55,.65);
backdrop-filter:blur(3px);
z-index:1;
}

/* HERO CONTENT */

.main-hero-content{
position:relative;
z-index:2;
max-width:620px;
width:100%;
}

/* TITLE */

.main-hero-title{
font-weight:800;
line-height:1.15;
margin-bottom:16px;
}

/* ENGLISH TITLE */

.main-hero-en{
display:block;
font-size:56px;
}

/* ARABIC TITLE */

.main-hero-ar{
display:block;
font-family:'Tajawal',sans-serif;
font-size:34px;
margin-top:6px;
direction:rtl;
}

/* SUBTITLE */

.main-hero-subtitle{
font-size:20px;
font-weight:600;
margin-bottom:20px;
color:#e2e2e2;
}

/* PARAGRAPH */

.main-hero-text{
font-size:16px;
line-height:1.65;
margin-bottom:28px;
color:#e6e6e6;
max-width:520px;  /* desktop text control */
}

/* BUTTON */

.btn-main-green{
background:#5cb85c;
padding:14px 36px;
font-size:16px;
font-weight:700;
border-radius:6px;
text-decoration:none;
display:inline-block;
color:#fff;
transition:.3s;
}

.btn-main-green:hover{
background:#4aa74a;
transform:translateY(-2px);
}


/* ================= RESPONSIVE ================= */

@media (max-width:1200px){

.main-hero{
padding:100px 5%;
}

.main-hero-en{font-size:46px;}
.main-hero-ar{font-size:30px;}

}

/* DESKTOP PARAGRAPH WIDTH FIX */

@media (min-width:992px){

.main-hero-text{
max-width:420px;   /* text width chhoti */
line-height:1.7;
}

}

/* ================= TABLET ================= */

@media (max-width:992px){

.main-hero{
min-height:650px;
}

.main-hero-en{font-size:40px;}
.main-hero-ar{font-size:28px;}

.main-hero-subtitle{font-size:18px;}
.main-hero-text{font-size:15px;}

}


/* ================= MOBILE HERO ================= */

@media (max-width:768px){

.main-hero{
min-height:380px;
padding:50px 18px 70px;
align-items:flex-start;
}

/* SLIDER */

.hero-slide{
background-size:135%;
background-position:center;
}

/* CONTENT */

.main-hero-content{
max-width:100%;
padding-top:5px;
}

/* TITLES */

.main-hero-en{
font-size:25px;
line-height:1.2;
}

.main-hero-ar{
font-size:19px;
margin-top:4px;
}

/* SUBTITLE */

.main-hero-subtitle{
font-size:14px;
margin-bottom:8px;
}

/* TEXT */

.main-hero-text{
font-size:13px;
line-height:1.45;
margin-bottom:12px;
}

/* BUTTON */

.btn-main-green{
padding:9px 16px;
font-size:12.5px;
border-radius:5px;
}

/* WHATSAPP BUTTON FIX */

.whatsapp-btn{
width:48px;
height:48px;
right:15px;
bottom:120px;
}

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

.main-hero-en{font-size:28px;}
.main-hero-ar{font-size:22px;}

.main-hero-text{
font-size:13.5px;
line-height:1.5;
}

}


/* ================= EXTRA SMALL ================= */

@media (max-width:360px){

.main-hero-en{font-size:26px;}
.main-hero-ar{font-size:20px;}

.main-hero-text{
font-size:13px;
}

}




/* ===== ABOUT HOME PAGE FINAL ===== */

/* ================= HEADING FIX ================= */

/* Force 2 lines */
.about-left h2 br{
  display:block !important;
}

/* Prevent second line break */
.about-left h2 br + *{
  white-space:nowrap;
}

/* ================= TEXT SPACING FIX ================= */

.about-left p{
  margin-bottom:12px;   /* gap reduce */
}

/* ================= BUTTON (HERO STYLE MATCH) ================= */

.about-left .btn-green{
  display:inline-block;
  background:#4CAF50;
  color:#fff !important;
  padding:13px 28px;
  font-size:14px;
  font-weight:600;
  border-radius:6px;
  text-decoration:none;
  margin-top:8px;   /* tight gap */
  transition:all 0.3s ease;
  box-shadow:0 6px 20px rgba(76,175,80,0.25);
}

/* Hover */
.about-left .btn-green:hover{
  background:#43a047;
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(76,175,80,0.35);
}

/* Active click */
.about-left .btn-green:active{
  transform:translateY(0);
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
} 



/* =====================================================
ABOUT SECTION (FINAL CLEAN + FIXED)
===================================================== */

/* ================= DESKTOP ================= */

.about-section{
  padding:110px 0;
  background:#f8f9fb;
}

.about-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

.about-left{
  max-width:600px;
  text-align:left;
}

.about-left h2{
  font-size:40px;
  margin-bottom:20px;
  line-height:1.3;
}

/* 🔥 FORCE 2 LINE STRUCTURE (ALL DEVICES SAFE) */
.about-left h2 br{
  display:block;
}

.about-left h2 br + *{
  white-space:nowrap;
}

/* LINE */
.about-line{
  width:70px;
  height:3px;
  background:#5cb85c;
  margin-bottom:25px;
}

/* IMAGE */
.image-shape{
  width:420px;
  height:520px;
  border-radius:200px 200px 20px 20px;
  overflow:hidden;
}

.image-shape img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


/* ================= TABLET ================= */

@media (max-width:992px){

  .about-wrapper{
    gap:40px;
  }

  .image-shape{
    width:350px;
    height:460px;
  }

  .about-left h2{
    font-size:34px;
  }

}


/* ================= MOBILE ================= */

@media (max-width:768px){

  .about-section{
    padding:70px 20px;
  }

  .about-wrapper{
    flex-direction:column;
    gap:35px;
  }

  .about-right{
    order:-1;
  }

  .image-shape{
    width:100%;
    max-width:320px;
    height:420px;
    margin:auto;
  }

  .about-left{
    max-width:100%;
    width:100%;
    padding:0 5px;
    text-align:left;
  }

  .about-left h2{
    font-size:28px;
  }

  .about-left p{
    margin-bottom:20px;
  }

  .about-left .btn-green{
    display:inline-block;
    margin-top:12px;
  }

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

  .image-shape{
    height:360px;
  }

  .about-left h2{
    font-size:24px;
  }

  .about-left p{
    margin-bottom:20px;
    line-height:1.7;
  }

}

/* ================= WHY CHOSE  SECTION  HOME  ================= */

.why-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0b2545, #173a63);
  text-align: center;
}

/* HEADER */
.why-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-header h2 span {
  display: block;
}

/* SUBTITLE (SLIGHTLY BOLDER) */
.why-header p {
  max-width: 800px;
  margin: auto;
  font-size: 17px;
  font-weight: 500; /* increased */
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 90px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

/* CARD */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  text-align: left;
  transition: all 0.4s ease;
}

/* ICON (FIXED FOR DARK BG) */
.why-card .icon {
  width: 110px;
  height: 110px;
  background: #ffffff; /* white circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b2545; /* dark icon */
  font-size: 42px;
  flex-shrink: 0;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

/* TEXT */
.why-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  max-width: 360px;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px);
}

.why-card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
/* ================= MOBILE PERFECT DESIGN ================= */
@media (max-width: 600px) {

  /* SECTION */
  .why-section {
    padding: 80px 18px;
    border-radius: 20px;
  }

  /* HEADER */
  .why-header h2 {
    font-size: 26px;
    font-weight: 760;
    line-height: 1.3;
    text-align: center;
    max-width: 280px;
    margin: 0 auto 15px;
  }

  /* ✅ FORCE EXACT 2 LINES */
  .why-header h2 span:first-child {
    display: block;
    white-space: nowrap;
  }

  .why-header h2 span:last-child {
    display: block;
    white-space: nowrap;
  }

  /* SUBTITLE */
  .why-header p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 45px;
    padding: 0 10px;
    text-align: center;
  }

  /* GRID → STACK */
  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 45px;
  }

  /* CARD */
  .why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  /* ICON */
  .why-card .icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }

  /* CARD HEADING */
  .why-card h3 {
    font-size: 21px;
    line-height: 1.3;
    margin-top: 5px;
  }

  /* CARD TEXT */
  .why-card p {
    font-size: 14.5px;
    line-height: 1.8;
    max-width: 100%;
    padding: 0 10px;
  }

  /* SEPARATOR */
  .why-card:not(:last-child) {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

}






/* =================ABOUT WHY SECTION ================= */

.why2-section{
  background:#f6f8fb;
  padding:100px 0;
  overflow:hidden;
}

/* ================= HEADER ================= */

.why2-header{
  text-align:center;
  max-width:700px;
  margin:auto;
  margin-bottom:60px;
  padding:0 20px;
}

.why2-header h2{
  font-size:48px;   /* 🔥 bigger */
  font-weight:800;
  color:#0f2d50;
  margin-bottom:14px;
  letter-spacing:0.4px;
}

.why2-header p{
  color:#0b0b0b;
  font-size:18px;
  line-height:1.7;
  font-weight:600;   /* 🔥 BOLD */
}
/* ================= GRID ================= */

.why2-grid{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px 30px;
  padding:0 20px;
}

/* ================= ITEM ================= */

.why2-item{
  display:flex;
  align-items:flex-start;
  gap:22px;
  padding:25px 10px;
  border-bottom:1px solid #e5e9f2;
  transition:all 0.35s ease;
  position:relative;
}

/* hover */
.why2-item:hover{
  transform:translateY(-5px);
}

/* ================= ICON ================= */

.why2-icon{
  width:120px;                /* 🔥 bigger */
  height:120px;
  background:#0f2d50;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:32px;            /* 🔥 bigger icon */
  flex-shrink:0;

  box-shadow:0 12px 30px rgba(0,0,0,0.18);
  transition:all 0.4s ease;
}

/* hover animation */
.why2-item:hover .why2-icon{
  transform:scale(1.12) rotate(8deg);
  background:#1f4c7c;
  box-shadow:0 18px 40px rgba(0,0,0,0.25);
}

/* pulse animation */
.why2-icon::after{
  content:"";
  position:absolute;
  width:90px;     /* 🔥 match new size */
  height:90px;
  border-radius:50%;
  border:2px solid rgba(15,45,80,0.2);
  animation:pulse 2.5s infinite;
}

@keyframes pulse{
  0%{
    transform:scale(1);
    opacity:0.6;
  }
  70%{
    transform:scale(1.4);
    opacity:0;
  }
  100%{
    opacity:0;
  }
}

/* ================= TEXT ================= */

.why2-text h3{
  font-size:22px;   /* 🔥 bigger */
  font-weight:700;
  margin-bottom:8px;
  color:#0f2d50;
  transition:0.3s;
}

.why2-text p{
  font-size:15px;
  color:#5a6b7b;
  line-height:1.6;
}

/* hover text */
.why2-item:hover h3{
  color:#1f4c7c;
}

/* ================= ANIMATION (ON LOAD) ================= */

.why2-item{
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 0.8s ease forwards;
}

/* stagger */
.why2-item:nth-child(1){ animation-delay:0.1s; }
.why2-item:nth-child(2){ animation-delay:0.2s; }
.why2-item:nth-child(3){ animation-delay:0.3s; }
.why2-item:nth-child(4){ animation-delay:0.4s; }
.why2-item:nth-child(5){ animation-delay:0.5s; }
.why2-item:nth-child(6){ animation-delay:0.6s; }

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* ===== GREEN LINE UNDER WHY HEADING ===== */

.why2-header h2::after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  background:#5cb85c;
  margin:15px auto 0;
  border-radius:2px;
}




/* ================= RESPONSIVE ================= */

/* ===== LARGE TABLET ===== */
@media (max-width:1100px){

  .why2-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* ===== TABLET ===== */
@media (max-width:768px){

  .why2-section{
    padding:80px 0;
  }

  .why2-header h2{
    font-size:30px;
  }

  .why2-header p{
    font-size:15px;
  }

  .why2-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  /* 🔥 FIX START */
  .why2-item{
    flex-direction:column;      /* icon upar */
    align-items:center;
    text-align:center;
    padding:25px 10px;
  }

  .why2-icon{
    width:75px;
    height:75px;
    font-size:26px;
    margin-bottom:10px;
  }
  /* 🔥 FIX END */

}

/* ===== SMALL MOBILE ===== */
@media (max-width:480px){

  .why2-header h2{
    font-size:26px;
  }

  .why2-header p{
    font-size:14px;
  }

  /* 🔥 SAME STRUCTURE KEEP */
  .why2-item{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:12px;
  }

  .why2-text h3{
    font-size:17px;
  }

  .why2-text p{
    font-size:14px;
  }

  .why2-icon{
    width:65px;
    height:65px;
    font-size:22px;
  }

}
/* =====================================================
WHAT WE DO SECTION
===================================================== */

.what-we-do {
    padding: 120px 8%;
    background: #f4f6f9;
}

/* =====================================================
HEADER
===================================================== */

.section-header {
    text-align: center;
    margin-bottom: 90px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0f2d50;
}

.section-line {
    width: 70px;
    height: 3px;
    background: #0f2d50;
    margin: 18px auto;
}

.section-header p {
    font-size: 18px;
    color: #000;
    max-width: 750px;
    margin: auto;
    line-height: 1.7;
}

/* =====================================================
LAYOUT
===================================================== */

.wwd-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: auto;
}

/* =====================================================
LEFT IMAGE
===================================================== */

.wwd-image {
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-120px);
    transition: 1s ease;
    cursor: pointer;
}

.wwd-image.show {
    opacity: 1;
    transform: translateX(0);
}

.wwd-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.6s ease;
}

/* IMAGE HOVER ZOOM */

.wwd-image:hover img {
    transform: scale(1.25);
}

/* =====================================================
RIGHT CONTENT
===================================================== */

.wwd-content {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

/* =====================================================
ITEM
===================================================== */

.wwd-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 18px 0 25px 0;
    border-bottom: 1px solid #d8d8d8;
    opacity: 0;
    transform: translateX(120px);
    transition: .8s ease;
}

.wwd-item:last-child {
    border-bottom: none;
}

.wwd-item.show {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
ICON
===================================================== */

.wwd-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #1f3d63;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    flex-shrink: 0;
    transition: 0.4s;
}

.wwd-icon img {
    width: 55px;
    height: auto;
    object-fit: contain;
    filter: invert(1);
}

/* ICON HOVER */

.wwd-item:hover .wwd-icon {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* =====================================================
TEXT
===================================================== */

.wwd-text {
    text-align: left;
}

.wwd-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    transition: 0.3s;
}

.wwd-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #000;
    transition: 0.3s;
}

/* TEXT HOVER */

.wwd-item:hover h3 {
    color: #17375E;
    transform: translateX(5px);
}

.wwd-item:hover p {
    transform: translateX(5px);
}

/* =====================================================
TABLET
===================================================== */

@media (max-width:1100px) {

    .wwd-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .wwd-image img {
        height: 420px;
    }

}

/* =====================================================
MOBILE
===================================================== */

@media (max-width:700px) {

    .what-we-do {
        padding: 90px 6%;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .wwd-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .wwd-text {
        text-align: center;
    }

    .wwd-icon {
        margin-bottom: 10px;
    }

    .wwd-image img {
        height: 320px;
    }

}

/* =====================================================
SMALL MOBILE
===================================================== */

@media (max-width:480px) {

    .section-header h2 {
        font-size: 28px;
    }

    .wwd-icon {
        width: 85px;
        height: 85px;
    }

    .wwd-icon img {
        width: 52px;
    }

    .wwd-text h3 {
        font-size: 22px;
    }

    .wwd-text p {
        font-size: 15px;
    }

}

/* =====================================================
SERVICES
===================================================== */

.services-section {
    padding: 120px 0;
    background: #0f2d50;
    text-align: center;
    color: #fff;
}

.services-section h2 {
    font-size: 44px;
    margin-bottom: 14px;
}

.services-subtitle {
    margin-bottom: 60px;
    font-size: 18px;
}




.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
}

html[dir="rtl"] .services-filter {
    direction: rtl;
}

html[dir="rtl"] .nav-links {
    direction: rtl;
}

html[dir="rtl"] .services-grid {
    direction: ltr;
}

.service-card h3 {
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #0f2d50;
}

.services-hero {
    height: 260px;
    background: linear-gradient(rgba(10, 28, 55, .75), rgba(10, 28, 55, .75)),
        url("https://images.unsplash.com/photo-1521791136064-7986c2920216");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

img {
    max-width: 100%;
    display: block;
}

.services-hero h1 {
    font-size: 44px;
    font-weight: 800;
}

.services-header {
    text-align: center;
    margin: 70px 0;
}

.services-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 22px;
    border: 2px solid #0f2d50;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
}

.filter-btn.active {
    background: #0f2d50;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: 0.35s ease;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px;
    font-size: 20px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
}

.service-card img {
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
}
/* ================= MOBILE RESPONSIVE FIX ================= */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card img {
        height: 180px;
    }
}

@media (max-width: 600px) {

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px;
    }

    .service-card {
        border-radius: 12px;
    }

    .service-card img {
        width: 100%;
        height: 200px; /* fixed height for equal look */
        object-fit: cover;
        border-radius: 12px 12px 0 0;
    }

    .service-card h3 {
        font-size: 18px;
        padding: 15px;
        line-height: 1.4;
    }

    /* HERO TEXT FIX */
    .services-hero h1 {
        font-size: 28px;
    }

    .services-hero p {
        font-size: 14px;
    }

    /* FILTER BUTTON FIX */
    .services-filter {
        gap: 10px;
        padding: 0 10px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* =========================================
HOME PAGE SERVICES
========================================= */

.services-home{
width:100%;
padding:120px 0;
background:#0f2d50;
text-align:center;
}

/* REMOVE CONTAINER LIMIT */

.services-home .container{
max-width:100%;
width:100%;
padding:0;
margin:0;
}

/* TITLE */

.services-home .services-title{
font-size:44px;
font-weight:800;
color:#ffffff;
margin-bottom:12px;
display:inline-block;
position:relative;
}

/* GREEN LINE */

.services-home .services-title::after{
content:"";
display:block;
width:70px;
height:3px;
background:#5cb85c;
margin:14px auto 0;
border-radius:3px;
}

/* SUBTITLE */

.services-home .services-subtitle{
font-size:18px;
color:#d0d8e4;
margin-bottom:70px;
}

/* GRID */

.services-home .services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
width:100%;
padding:0 40px;
box-sizing:border-box;
}

/* CARD */

.services-home .service-card{
background:#ffffff;
border-radius:14px;
overflow:hidden;
text-decoration:none;
transition:.35s ease;
box-shadow:0 15px 35px rgba(0,0,0,.18);
display:block;
width:100%;
}

/* IMAGE */

.services-home .service-card img{
width:100%;
height:240px;
object-fit:cover;
transition:.5s;
}

/* HOVER EFFECT */

.services-home .service-card:hover img{
transform:scale(1.08);
}

.services-home .service-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,.28);
}

/* CARD TITLE */

.services-home .service-card h3{
padding:22px;
font-size:20px;
font-weight:700;
color:#0f2d50;
}

/* =========================
TABLET
========================= */

@media(max-width:1200px){

.services-home .services-grid{
grid-template-columns:repeat(2,1fr);
padding:0 30px;
gap:35px;
}

.services-home .service-card img{
height:220px;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.services-home{
padding:90px 0;
}

.services-home .services-title{
font-size:34px;
}

.services-home .services-subtitle{
font-size:16px;
margin-bottom:50px;
}

.services-home .services-grid{
grid-template-columns:1fr;
padding:0 20px;
gap:28px;
}

.services-home .service-card img{
height:210px;
}

.services-home .service-card h3{
font-size:18px;
padding:18px;
}

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

.services-home .services-title{
font-size:28px;
}

.services-home .services-grid{
padding:0 15px;
}

.services-home .service-card img{
height:200px;
}

}



/* =====================================================
            CLIENT SLIDER
===================================================== */

.clients-section {
width:100%;
padding:70px 0;
background:#f5f5f5;
text-align:center;
overflow:hidden;
}

.clients-title{
font-size:42px;
color:#1b3b63;
font-weight:800;
margin-bottom:10px;
letter-spacing:0.4px;
}

.clients-line{
width:70px;
height:3px;
background:#5cb85c;
margin:15px auto 35px auto;
border-radius:3px;
}

/* container */

.clients-container{
position:relative;
width:100%;
max-width:100%;
margin:auto;
display:flex;
align-items:center;
padding:0 60px;
box-sizing:border-box;
}

/* slider */

.clients-slider{
width:100%;
overflow:hidden;
direction:ltr;
}

/* track */

.clients-track{
display:flex;
align-items:center;
transition:transform .5s ease;
}

/* logo box */

.client-logo{
min-width:20%;
display:flex;
align-items:center;
justify-content:center;
padding:25px;
box-sizing:border-box;
}

/* logo image */

.client-logo img{
max-width:100%;
height:170px;
object-fit:contain;
transition:.3s;
}

.client-logo img:hover{
transform:scale(1.05);
}

/* arrows */

.client-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:50px;
height:50px;
border-radius:50%;
background:white;
border:none;
cursor:pointer;
font-size:18px;
box-shadow:0 4px 12px rgba(0,0,0,.15);
z-index:10;
display:flex;
align-items:center;
justify-content:center;
}

/* arrow position */

.client-arrow.left{
left:0;
}

.client-arrow.right{
right:0;
}

/* hover */

.client-arrow:hover{
background:#1b3b63;
color:white;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

.client-logo{
min-width:33.33%;
}

.client-logo img{
height:70px;
}

}

@media(max-width:600px){

.clients-container{
padding:0 40px;
}

.client-logo{
min-width:50%;
}

.client-logo img{
height:60px;
}

}

@media(max-width:768px){

.clients-title{
font-size:30px;
}

}
/* =====================================================
COUNTER
===================================================== */

.stats-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;

    background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Dark Overlay */
.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

/* Content Above Overlay */
.stats-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.stat-box {
    width: 23%;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.6s;
}

.stat-box.show {
    opacity: 1;
    transform: translateY(0);
}

.icon {
    width: 110px;
    height: 110px;
    margin: auto;
    border-radius: 50%;
    background: #1f3d63;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    transition: 0.4s;
}

.icon img {
    width: 50px;
    filter: invert(1);
}

.stat-box:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-box h2 {
    font-size: 60px;
    margin-top: 20px;
    font-weight: bold;
}

.stat-box p {
    letter-spacing: 2px;
    margin-top: 5px;
    font-size: 18px;
}

@media(max-width:900px) {
    .stat-box {
        width: 50%;
        margin-bottom: 40px;
    }
}

@media(max-width:500px) {
    .stat-box {
        width: 100%;
    }
}

/* =====================================================
WE ARE CERTIFIED
===================================================== */

.certified-section {
    width: 100%;
    padding: 110px 0;
    background: #f5f5f5;
    text-align: center;
    overflow: hidden;
}

/* header */

.certified-header h2 {
    font-size: 46px;
    font-weight: 700;
    color: #0f2d50;
}

.cert-line {
    width: 70px;
    height: 3px;
    background: #0f2d50;
    margin: 15px auto;
}

.certified-header p{
font-size:19px;
font-weight:500;   /* slightly bold */
margin-bottom:60px;
color:#333;
letter-spacing:0.3px;
}


/* container */

.certified-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 70px;
    box-sizing: border-box;
}

/* slider */

.certified-slider {
    width: 100%;
    overflow: hidden;
}

.certified-track {
    display: flex;
    align-items: center;
    transition: transform 0.8s ease;
}

/* logo */

.cert-logo {
    min-width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.cert-logo img {
    max-width: 100%;
    height: 170px;
    object-fit: contain;
    transition: .3s;
}

.cert-logo img:hover {
    transform: scale(1.05);
}

/* arrows */

.cert-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.cert-arrow.left {
    left: 0;
}

.cert-arrow.right {
    right: 0;
}

.cert-arrow:hover {
    background: #0f2d50;
    color: white;
}

/* responsive */

@media(max-width:900px) {

    .cert-logo {
        min-width: 33.33%;
    }

    .cert-logo img {
        height: 90px;
    }

}

@media(max-width:600px) {

    .certified-container {
        padding: 0 40px;
    }

    .cert-logo {
        min-width: 50%;
    }

    .cert-logo img {
        height: 70px;
    }

}

@media(max-width:768px){

.certified-header h2{
font-size:34px;
}

.certified-header p{
font-size:16px;
font-weight:500;
max-width:320px;
margin:auto auto 50px auto;
}

}


/* =====================================================
TEAM SECTION
===================================================== */

.team-section {
    padding: 120px 8%;
    background: #f4f6f9;
    text-align: center;
}

.team-section p{
font-size:18px;
font-weight:500;   /* slightly bold */
color:#333;
max-width:620px;
margin:20px auto 0 auto;
line-height:1.7;
letter-spacing:0.3px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* CARD */

.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: .4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

/* IMAGE */

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-card:hover img {
    transform: scale(1.1);
}

/* INFO */

.team-info {
    padding: 22px;
}

.team-info h3 {
    font-size: 22px;
    color: #0f2d50;
    margin-bottom: 6px;
}

.team-info span {
    font-size: 15px;
    color: #666;
}

/* POPUP */

.team-popup {
    position: absolute;
    inset: 0;
    background: rgba(15, 45, 80, .9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: .4s;
}

.team-card:hover .team-popup {
    opacity: 1;
}

/* RESPONSIVE */

@media(max-width:1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
SCROLLING AROWW BUTTON 
===================================================== */

.scroll-arrow {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 45px;
    height: 45px;
    background: #8a8a8a;
    color: white;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.scroll-arrow.show {
    opacity: 1;
    visibility: visible;
}

.scroll-arrow:hover {
    background: #555;
}


/* =====================================================
WHATSAPP BUTTON
===================================================== */

.whatsapp-btn{

position:fixed;

bottom:20px;
right:20px;

width:60px;
height:60px;

background:#25D366;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

box-shadow:0 10px 25px rgba(0,0,0,.25);

cursor:pointer;

z-index:999999;

animation:whatsappPulse 2s infinite;

transition:0.3s;

}

.whatsapp-btn i{

font-size:28px;
color:#fff;

}

/* =====================================================
PULSE ANIMATION
===================================================== */

@keyframes whatsappPulse{

0%{
transform:scale(1);
box-shadow:0 0 0 0 rgba(37,211,102,0.7);
}

70%{
transform:scale(1.08);
box-shadow:0 0 0 15px rgba(37,211,102,0);
}

100%{
transform:scale(1);
}

}

/* =====================================================
WHATSAPP TOOLTIP
===================================================== */

.whatsapp-btn::after{

content:"Chat on WhatsApp";

position:absolute;
right:70px;

background:#333;
color:#fff;

padding:6px 10px;

border-radius:5px;

font-size:13px;

opacity:0;
white-space:nowrap;

transition:0.3s;

pointer-events:none;

}

.whatsapp-btn:hover::after{
opacity:1;
}

/* =====================================================
MOBILE FIX
===================================================== */

@media(max-width:768px){

.whatsapp-btn{

bottom:18px;
right:18px;

width:56px;
height:56px;

z-index:999999;

}

.whatsapp-btn i{

font-size:26px;

}

}

/* =====================================================
HERO STACKING FIX
===================================================== */

.hero{

position:relative;
z-index:1;

}




/* ================= FOOTER ================= */

.footer {
    background: #0f2d50;
    color: #fff;
    padding: 80px 8% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: auto;

    /* prevent RTL column reverse */
    direction: ltr;
}

/* ================= LOGO ================= */

.footer-logo {
    width: 160px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

/* ================= TEXT ================= */

.footer p {
    line-height: 1.7;
    color: #d7e3f2;
}

/* ================= HEADINGS ================= */

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #5cb85c;
    position: absolute;
    left: 0;
    bottom: -10px;
}

/* ================= LIST ================= */

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
    color: #d7e3f2;
    transition: .3s;
    cursor: pointer;
}

.footer ul li:hover {
    color: #5cb85c;
    transform: translateX(5px);
}

/* ================= LINKS ================= */

.footer a {
    color: #d7e3f2;
    text-decoration: none;
    transition: .3s;
}

.footer a:hover {
    color: #5cb85c;
}

/* ================= SOCIAL ICONS ================= */

.socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-direction: row;

    /* keep icons same order in Arabic */
    direction: ltr;
}

.footer .socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    background: transparent;
    transition: .3s;
}

.footer .socials a:hover {
    background: #5cb85c;
    border-color: #5cb85c;
    color: white;
    transform: translateY(-4px);
}

.footer .socials a i {
    pointer-events: none;
}

/* ================= CONTACT ================= */

.contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;

    /* prevent RTL icon reverse */
    direction: ltr;
}

.contact a {
    direction: ltr;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #ffffff20;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #cdd6e2;
}

/* ================= RTL FIX ================= */

html[dir="rtl"] .footer {
    text-align: right;
}

html[dir="rtl"] .footer-col h3::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .footer ul li:hover {
    transform: translateX(-5px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .socials {
        justify-content: center;
    }

    .contact p {
        justify-content: center;
    }

}

/* ================= ABOUT HERO ================= */

/* ================= ABOUT HERO (SAME AS CEO - NO IMAGE) ================= */

.about-hero{
  position:relative;
  height:300px;
  background:#546a82;   /* 🔥 same blue as CEO */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* CONTENT */
.about-hero-content{
  position:relative;
  z-index:2;
  color:#fff;
}

/* TITLE */
.about-hero h1{
  font-size:42px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:12px;
  color:#fff;
}

/* BREADCRUMB */
.about-breadcrumb{
  font-size:16px;
  color:#dcdcdc;
}

.about-breadcrumb a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.about-breadcrumb a:hover{
  color:#5cb85c;
}

.about-breadcrumb span{
  color:#fff;
}
/* ================= HERO RESPONSIVE ================= */

@media(max-width:992px){

.about-hero{
height:220px;
}

.about-hero h1{
font-size:34px;
}

}

@media(max-width:600px){

.about-hero{
height:180px;
padding:20px;
}

.about-hero h1{
font-size:28px;
}

.about-breadcrumb{
font-size:15px;
}

}

/* ================= ABOUT COMPANY ================= */

.about-company{

padding:100px 0;
background:#ffffff;

}

.about-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

/* ================= TEXT ================= */

.about-text h2{

font-size:38px;
font-weight:800;
color:#1d2a38;
margin-bottom:10px;
line-height:1.3;

}

.about-line{

width:70px;
height:3px;
background:#5cb85c;
margin:18px 0 25px;

}

.about-text p{

font-size:17px;
line-height:1.8;
margin-bottom:16px;
color:#111111;

}


/* ================= IMAGE ================= */

.about-image{

display:flex;
justify-content:center;
align-items:center;

}

/* IMAGE CONTAINER */

.about-image-wrapper{

position:relative;

width:420px;
height:520px;

overflow:hidden;

border-radius:14px;

/* box removed */
background:transparent;
box-shadow:none;

}

/* IMAGE */

.about-image-wrapper img{

width:100%;
height:100%;

object-fit:cover;

display:block;

transition:transform .6s ease;

}

/* HOVER EFFECT */

.about-image-wrapper:hover img{

transform:scale(1.05);

}

/* ================= SCROLL ANIMATION ================= */

.about-text,
.about-image{

opacity:0;
transform:translateY(50px);
transition:all .8s ease;

}

.about-show{

opacity:1;
transform:translateY(0);

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;
gap:40px;

}

.about-text{

text-align:center;

}

.about-line{

margin:15px auto 25px;

}

.about-text p{

margin-left:auto;
margin-right:auto;

}

.about-image-wrapper{

width:100%;
max-width:420px;
height:420px;

}

}

@media(max-width:600px){

.about-company{

padding:70px 20px;

}

.about-text h2{

font-size:28px;

}

.about-text p{

font-size:15px;

}

.about-image-wrapper{

height:340px;

}

}

@media(max-width:420px){

.about-image-wrapper{

height:300px;

}

}

/* ================= VISION SECTION ================= */

.vision-section{

padding:120px 0;
background:#ffffff;

}

/* HEADER */

.vision-header{

text-align:center;
margin-bottom:80px;

}

.vision-title{

font-size:48px;
font-weight:800;
color:#142c4f;
margin-bottom:15px;

}

.vision-subtitle{

font-size:20px;
color:#000000;
font-weight:600;
max-width:750px;
margin:auto;
line-height:1.7;

}

/* GRID */

.vision-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:70px;

}

/* ITEM */

.vision-item{

display:flex;
gap:26px;

align-items:flex-start;

opacity:0;
transform:translateY(60px);

transition:all .7s ease;

}

/* SCROLL SHOW */

.vision-item.show{

opacity:1;
transform:translateY(0);

}

/* ICON */

.vision-icon{

width:110px;
height:110px;

background:#17375e;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

color:#ffffff;

font-size:42px;

flex-shrink:0;

transition:all .35s ease;

}

/* ICON HOVER */

.vision-item:hover .vision-icon{

transform:scale(1.08);

}

/* TEXT */

.vision-text h3{

font-size:28px;
font-weight:800;
color:#17375e;
margin-bottom:10px;

}

/* PARAGRAPH */

.vision-text p{

font-size:18px;
color:#000000;
line-height:1.75;

max-width:420px;

}


/* ===== GREEN LINE UNDER HEADING ===== */

.vision-title::after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  background:#5cb85c;
  margin:15px auto 0;   /* center align */
  border-radius:2px;
}


/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

.vision-grid{

grid-template-columns:repeat(2,1fr);
gap:50px;

}

}

@media(max-width:768px){

.vision-grid{

grid-template-columns:1fr;

gap:40px;

}

.vision-item{

flex-direction:column;
align-items:center;
text-align:center;

}

.vision-text p{

max-width:100%;

}

}

@media(max-width:480px){

.vision-section{

padding:80px 20px;

}

.vision-title{

font-size:32px;

}

.vision-subtitle{

font-size:16px;

}

.vision-icon{

width:80px;
height:80px;
font-size:30px;

}

.vision-text h3{

font-size:22px;

}

.vision-text p{

font-size:15px;

}

}




/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section{
  padding:120px 0;
  background:#ffffff;
  overflow:hidden;
}

/* ================= HEADER ================= */

.testimonial-header{
  text-align:center;
  margin-bottom:70px;
}

/* 🔥 FORCE BLUE HEADING (FINAL FIX) */
.testimonial-header h2{
  font-size:44px;
  font-weight:800;
  color:#0f2d50 !important;   /* 🔥 FORCE APPLY */
  letter-spacing:0.3px;
}

/* 🔥 GREEN LINE */
.testimonial-line{
  width:70px;
  height:3px;
  background:#5cb85c !important;
  margin:12px auto 18px;
}

/* 🔥 SUBTITLE BOLD + STRONG LOOK */
.testimonial-header p{
  font-size:18px;
  font-weight:600;   /* 🔥 bold */
  color:#5a6b7b !important;
  max-width:700px;
  margin:auto;
  line-height:1.7;
}

/* ================= SLIDER ================= */

.testimonial-slider{
  overflow:hidden;
}

.testimonial-track{
  display:flex;
  gap:30px;
  transition:transform .6s ease;
}

/* ================= CARD ================= */

.testimonial-item{
  flex:0 0 100%;
  background:#3c5f87;
  color:#fff;
  padding:45px;
  border-radius:8px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  margin-right:30px;
}

/* TEXT */
.testimonial-item p{
  font-size:18px;
  line-height:1.8;
  margin-bottom:25px;
}

/* ================= USER ================= */

.testimonial-user{
  display:flex;
  align-items:center;
  gap:14px;
}

.testimonial-user i{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#1f3c63;
  border-radius:50%;
  font-size:18px;
}

.testimonial-user h4{
  font-size:20px;
  margin-bottom:2px;
}

.testimonial-user span{
  font-size:14px;
  opacity:.85;
}

/* ================= DOTS ================= */

.testimonial-dots{
  text-align:center;
  margin-top:35px;
}

.dot{
  height:12px;
  width:12px;
  margin:0 6px;
  background:#cfcfcf;
  border-radius:50%;
  border:none;
  cursor:pointer;
}

.dot.active{
  background:#17375e;
}

/* ================= SCROLL ANIMATION ================= */

.scroll-show{
  opacity:0;
  transform:translateY(40px);
  transition:.7s ease;
}

.scroll-show.active{
  opacity:1;
  transform:translateY(0);
}

/* 🔥 FORCE SHOW HEADER (FIX ISSUE) */
.testimonial-header.scroll-show{
  opacity:1 !important;
  transform:none !important;
}
/* ================= RESPONSIVE ================= */

/* Desktop */

@media(min-width:992px){

.testimonial-item{
flex:0 0 calc(50% - 15px);
}

}

/* Tablet */

@media(max-width:991px){

.testimonial-section{
padding:100px 40px;
}

.testimonial-header h2{
font-size:36px;
}

.testimonial-item{
flex:0 0 100%;
}

}

/* Mobile */

@media(max-width:600px){

.testimonial-section{
padding:80px 20px;
}

.testimonial-header h2{
font-size:30px;
}

.testimonial-header p{
font-size:16px;
}

.testimonial-item{
padding:30px;
}

.testimonial-item p{
font-size:16px;
}

.testimonial-user h4{
font-size:18px;
}

}



/* =====  CEO  PAGE  ===== */


/* ================= HERO CEO ================= */

.hero-ceo{
position:relative;
height:300px;
background:url('assets/images/hero-bg.jpg') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

/* OVERLAY */

.hero-ceo-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(15,45,80,0.75); /* dark blue overlay */
z-index:1;
}

/* CONTENT */

.hero-ceo-content{
position:relative;
z-index:2;
color:#fff;
}

/* TITLE */

.hero-ceo h1{
font-size:42px;
font-weight:800;
letter-spacing:1px;
margin-bottom:12px;
}

/* BREADCRUMB */

.breadcrumb{
font-size:16px;
color:#dcdcdc;
}

.breadcrumb a{
color:#fff;
text-decoration:none;
transition:0.3s;
}

.breadcrumb a:hover{
color:#5cb85c;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.hero-ceo{
height:240px;
}

.hero-ceo h1{
font-size:30px;
}

.breadcrumb{
font-size:14px;
}

}

@media(max-width:480px){

.hero-ceo{
height:200px;
}

.hero-ceo h1{
font-size:26px;
}

}

/* ================= CEO SECTION ================= */

.ceo-section{
padding:100px 6%;
background:#f8f8f8;
}

/* CONTAINER */

.ceo-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
align-items:center;
}

/* ================= TEXT ================= */

.ceo-header{
margin-bottom:25px;
}

/* TITLE */

.ceo-title{
font-size:40px;
font-weight:800;
color:#1e3a5f;
text-align:left;
}

/* GREEN LINE */

.ceo-divider{
width:70px;
height:3px;
background:#5cb85c;
margin:12px 0 20px 0;
border-radius:3px;
}

/* GREETING */

.ceo-greeting{
font-size:22px;
font-weight:600;
margin-bottom:20px;
color:#000;
}

/* PARAGRAPH */

.ceo-message{
max-width:600px;
}

.ceo-message p{
font-size:17px;
line-height:1.9;
margin-bottom:18px;
color:#222;
text-align:left;
}

/* ================= IMAGE ================= */

.ceo-profile{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}

.ceo-card img{
width:360px;
height:360px;
border-radius:50%;
object-fit:cover;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
margin-bottom:15px;
}

/* NAME */

.ceo-name{
font-size:26px;
font-weight:700;
color:#1e3a5f;
}

/* ROLE */

.ceo-role{
font-size:16px;
color:#555;
}

/* ================= TABLET ================= */

@media(max-width:992px){

.ceo-container{
grid-template-columns:1fr;
text-align:center;
gap:40px;
}

/* IMAGE FIRST */

.ceo-profile{
order:-1;
}

.ceo-title{
text-align:center;
}

.ceo-divider{
margin:12px auto 20px auto;
}

.ceo-greeting{
text-align:center;
}

.ceo-message{
margin:auto;
}

.ceo-message p{
text-align:left;   /* readable */
}

}

/* ================= MOBILE ================= */

@media(max-width:768px){

.ceo-section{
padding:70px 20px;
}

.ceo-title{
font-size:30px;
text-align:center;
}

.ceo-divider{
margin:10px auto 18px auto;
}

.ceo-greeting{
font-size:20px;
text-align:center;
}

/* ✅ TEXT PERFECT FLOW */

.ceo-message{
max-width:100%;
}

.ceo-message p{
font-size:16px;
line-height:1.8;
text-align:left;
margin-bottom:16px;
}

/* IMAGE */

.ceo-card img{
width:260px;
height:260px;
}

}

/* ================= SMALL MOBILE ================= */

@media(max-width:480px){

.ceo-title{
font-size:26px;
}

.ceo-greeting{
font-size:18px;
}

.ceo-message p{
font-size:15px;
line-height:1.7;
}

.ceo-card img{
width:220px;
height:220px;
}

}
/* ================= RTL SUPPORT ================= */

html[dir="rtl"] .ceo-container{
direction:rtl;
}

html[dir="rtl"] .ceo-message{
text-align:right;
}

html[dir="rtl"] .ceo-profile{
text-align:center;
}

/* ================= PROCESS SECTION ================= */


/* ================= PROCEDURE HERO (EXACT CEO MATCH) ================= */

.procedure-hero{
  position:relative;
  height:300px;
  background:url('assets/images/hero-bg.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

/* OVERLAY (SAME AS CEO) */
.procedure-hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(15,45,80,0.75);
  z-index:1;
}

/* CONTENT */
.procedure-hero-content{
  position:relative;
  z-index:2;
  color:#fff;
}

/* TITLE */
.procedure-hero h1{
  font-size:42px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:12px;
}

/* BREADCRUMB (EXACT SAME STYLE) */
.procedure-breadcrumb{
  font-size:16px;
  color:#dcdcdc;
}

.procedure-breadcrumb a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.procedure-breadcrumb a:hover{
  color:#5cb85c;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .procedure-hero{
    height:240px;
  }

  .procedure-hero h1{
    font-size:30px;
  }

  .procedure-breadcrumb{
    font-size:14px;
  }

}

@media(max-width:480px){

  .procedure-hero{
    height:200px;
  }

  .procedure-hero h1{
    font-size:26px;
  }

}

.process-section{
padding:100px 6%;
background:#f7f8fb;
}

/* HEADER */

.process-header{
text-align:center;
margin-bottom:60px;
}

.process-header h2{
font-size:42px;
color:#1e3a5f;
font-weight:700;
}

.process-line{
width:80px;
height:3px;
background:#1e3a5f;
margin:15px auto;
}

.process-header p{
font-size:18px;
color:#444;
max-width:700px;
margin:auto;
line-height:1.6;
}


/* ================= GRID ================= */

.process-grid{

display:grid;
grid-template-columns:repeat(3,1fr);

gap:40px;

max-width:1300px;
margin:auto;

align-items:stretch;

}


/* ================= CARD ================= */

.process-card{

background:#ffffff;

padding:40px 30px;

border-radius:10px;

box-shadow:0 15px 35px rgba(0,0,0,0.08);

text-align:center;

transition:all .35s ease;

border:2px solid #e6e6e6;

display:flex;
flex-direction:column;

justify-content:flex-start;

min-height:340px;

}


/* ================= ICON ================= */

.process-icon{

width:80px;
height:80px;

border-radius:50%;

background:#1e3a5f;

display:flex;
align-items:center;
justify-content:center;

margin:auto;
margin-bottom:20px;

color:#fff;
font-size:28px;

transition:all .3s ease;

}


/* ================= TITLE ================= */

.process-card h3{

font-size:22px;

color:#1e3a5f;

margin-bottom:15px;

min-height:55px;

display:flex;
align-items:center;
justify-content:center;

}


/* ================= TEXT ================= */

.process-card p{

font-size:16px;

color:#555;

line-height:1.7;

flex-grow:1;

}


/* ================= HOVER EFFECT ================= */

.process-card:hover{

background:#1e3a5f;

transform:translateY(-8px);

border-color:#1e3a5f;

}

.process-card:hover h3{
color:#fff;
}

.process-card:hover p{
color:#fff;
}

.process-card:hover .process-icon{
background:#fff;
color:#1e3a5f;
}


/* ================= REMOVE HIGHLIGHT ================= */

.process-card.highlight{
background:#ffffff;
border-color:#e6e6e6;
}

.process-card.highlight h3{
color:#1e3a5f;
}

.process-card.highlight p{
color:#555;
}

.process-card.highlight .process-icon{
background:#1e3a5f;
color:#fff;
}


/* ================= LARGE SCREEN ================= */

@media (min-width:1400px){

.process-grid{
max-width:1400px;
}

.process-header h2{
font-size:46px;
}

}


/* ================= LAPTOP ================= */

@media (max-width:1200px){

.process-grid{
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.process-header h2{
font-size:36px;
}

}


/* ================= TABLET ================= */

@media (max-width:992px){

.process-grid{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.process-header h2{
font-size:34px;
}

.process-card{
padding:35px 25px;
}

}


/* ================= MOBILE ================= */

@media (max-width:768px){

.process-section{
padding:70px 5%;
}

.process-grid{
grid-template-columns:1fr;
gap:25px;
}

.process-header h2{
font-size:30px;
}

.process-header p{
font-size:16px;
}

.process-card{
padding:30px 25px;
min-height:auto;
}

.process-card h3{
font-size:20px;
min-height:auto;
}

.process-card p{
font-size:15px;
}

.process-icon{
width:70px;
height:70px;
font-size:24px;
}

}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

.process-header h2{
font-size:26px;
}

.process-card{
padding:25px 20px;
}

.process-card p{
font-size:14px;
}

.process-icon{
width:60px;
height:60px;
font-size:22px;
}

}

/* ================= CONTACT SECTION ================= */

.contact-section{
padding:100px 6%;
background:#f7f8fb;
text-align:center;
}

.contact-header h2{
font-size:42px;
color:#1e3a5f;
}

.contact-header p{
margin-top:10px;
color:#555;
margin-bottom:60px;
}


/* ================= CONTACT CARDS ================= */

.contact-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-bottom:70px;
}

.contact-card{
background:#fff;
padding:40px 30px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;
}

.contact-card:hover{
background:#1e3a5f;
color:#fff;
transform:translateY(-8px);
}

.contact-card:hover h3,
.contact-card:hover p{
color:#fff;
}

.contact-icon{
width:90px;
height:90px;
border-radius:50%;
background:#1e3a5f;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:20px;
color:#fff;
font-size:30px;
}


/* ================= CONTACT FORM ================= */

.contact-form-wrapper{
max-width:900px;
margin:auto;
background:#fff;
padding:50px;
border-radius:10px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-bottom:20px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea{
width:100%;
padding:14px;
border:1px solid #ccc;
border-radius:6px;
font-size:15px;
}

.contact-form-wrapper textarea{
height:130px;
margin-bottom:20px;
}

.contact-submit{
background:#4CAF50;
color:#fff;
padding:14px 40px;
border:none;
border-radius:6px;
font-size:16px;
cursor:pointer;
}

.contact-submit:hover{
background:#3a8e3f;
}


/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.contact-cards{
grid-template-columns:1fr 1fr;
}

.form-grid{
grid-template-columns:1fr;
}

}

@media(max-width:600px){

.contact-cards{
grid-template-columns:1fr;
}

.contact-header h2{
font-size:30px;
}

.contact-form-wrapper{
padding:35px 20px;
}

}



/* ================= GLOBAL CONTAINER ================= */

.container{
max-width:1200px;
margin:auto;
width:100%;
}




/* ================= JOB SEEKER HERO ================= */

.job-hero{
  position:relative;
  height:300px;
  background:url('assets/images/hero-bg.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

/* OVERLAY */
.job-hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(15,45,80,0.75);
  z-index:1;
}

/* CONTENT */
.job-hero-content{
  position:relative;
  z-index:2;
  color:#fff;
}

/* TITLE */
.job-hero h1{
  font-size:42px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:12px;
}

/* BREADCRUMB */
.job-breadcrumb{
  font-size:16px;
  color:#dcdcdc;
}

.job-breadcrumb a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.job-breadcrumb a:hover{
  color:#5cb85c;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .job-hero{
    height:240px;
  }

  .job-hero h1{
    font-size:30px;
  }

  .job-breadcrumb{
    font-size:14px;
  }

}

@media(max-width:480px){

  .job-hero{
    height:200px;
  }

  .job-hero h1{
    font-size:26px;
  }

}
/* ================= JOB SEEKER CONTACT INFO SECTION ================= */

.contact-info{
padding:100px 6%;
background:#f7f8fb;
}


/* HEADER */

.contact-header{
text-align:center;
margin-bottom:60px;
}

.contact-header h2{
font-size:42px;
color:#1e3a5f;
margin-bottom:10px;
font-weight:700;
}

.contact-header p{
font-size:18px;
color:#444;
max-width:700px;
margin:auto;
line-height:1.6;
}


/* =================JOB SEEKER CONTACT ITEMS GRID ================= */

.contact-items{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1100px;
margin:auto;
text-align:center;
}


/* ICON */

.contact-icon{
width:100px;
height:100px;
border-radius:50%;
background:#1e3a5f;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:20px;
color:#fff;
font-size:32px;
position:relative;
}

.contact-icon::after{
content:"";
position:absolute;
width:115px;
height:115px;
border:3px solid #1e3a5f;
border-radius:50%;
}


/* TITLE */

.contact-item h3{
font-size:24px;
margin-bottom:12px;
color:#1e3a5f;
font-weight:600;
}


/* TEXT */

.contact-item p{
font-size:17px;
line-height:1.7;
color:#444;
max-width:280px;
margin:auto;
}


/* LINKS */

.contact-item a{
color:#1e3a5f;
text-decoration:none;
font-weight:500;
}

.contact-item a:hover{
text-decoration:underline;
}


/* =================JOB SEEKER CONTACT FORM SECTION ================= */

.contact-form-section{
padding:100px 6%;
background:#ffffff;
}


/* ================= FORM HEADER ================= */

.form-header{
text-align:center;
margin-bottom:60px;
}

.form-header h2{
font-size:38px;
color:#1e3a5f;
margin-bottom:12px;
font-weight:700;
}

.form-header p{
font-size:18px;
color:#555;
max-width:650px;
margin:auto;
line-height:1.6;
}


/* ================= FORM CONTAINER ================= */

.contact-form{

max-width:950px;
margin:auto;

background:#fff;

padding:50px;

border-radius:12px;

box-shadow:0 20px 50px rgba(0,0,0,0.08);

transition:.35s;

}

.contact-form:hover{
box-shadow:0 25px 65px rgba(0,0,0,0.12);
}


/* ================= FORM GRID ================= */

.form-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:25px;

margin-bottom:25px;

direction:ltr;

}


/* ================= FORM GROUP ================= */

.form-group{
display:flex;
flex-direction:column;
}

.form-group.full{
grid-column:1 / -1;
}


/* ================= LABEL ================= */

.form-group label{

font-size:14px;
font-weight:600;

margin-bottom:6px;

color:#1e3a5f;

}


/* ================= INPUT ================= */

.contact-form input,
.contact-form textarea{

width:100%;

padding:14px 16px;

border:1px solid #ddd;

border-radius:6px;

font-size:15px;

background:#fafafa;

transition:all .25s ease;

}


/* ================= INPUT FOCUS ================= */

.contact-form input:focus,
.contact-form textarea:focus{

border-color:#1e3a5f;

background:#fff;

outline:none;

box-shadow:0 0 0 3px rgba(30,58,95,0.08);

}


/* ================= TEXTAREA ================= */

.contact-form textarea{
height:170px;
resize:none;
}


/* ================= FILE INPUT ================= */

.contact-form input[type="file"]{

padding:12px;

background:#fff;

border:1px dashed #ccc;

border-radius:6px;

cursor:pointer;

}

.contact-form input[type="file"]:hover{
border-color:#1e3a5f;
}


/* ================= SUBMIT BUTTON ================= */

.form-submit{
margin-top:15px;
}

.submit-btn{

background:#3fa046;

color:#fff;

border:none;

padding:14px 45px;

font-size:16px;

font-weight:600;

border-radius:6px;

cursor:pointer;

transition:.25s;

}

.submit-btn:hover{

background:#2f8b37;

transform:translateY(-2px);

box-shadow:0 10px 25px rgba(0,0,0,0.12);

}


/* ================= FORM MESSAGE ================= */

.form-message{

margin-top:15px;

padding:12px 15px;

border-radius:6px;

font-size:14px;

display:none;

}

.form-message.success{
background:#e8f9ec;
color:#0a7a0a;
}

.form-message.error{
background:#ffe5e5;
color:#b30000;
}


/* ================= NOTIFICATION ================= */

.form-notification{

position:fixed;

top:25px;
right:25px;

background:#1e3a5f;
color:#fff;

padding:15px 22px;

border-radius:6px;

font-size:15px;

box-shadow:0 10px 30px rgba(0,0,0,0.15);

opacity:0;
transform:translateY(-20px);

transition:all .35s ease;

z-index:9999;

pointer-events:none;

}

.form-notification.show{

opacity:1;
transform:translateY(0);

}

.form-notification.success{
background:#3fa046;
}

.form-notification.error{
background:#e53935;
}


/* ================= RTL SUPPORT ================= */

html[dir="rtl"] .contact-form input,
html[dir="rtl"] .contact-form textarea{
direction:rtl;
text-align:right;
}

html[dir="rtl"] .form-grid{
direction:ltr;
}


/* ================= RESPONSIVE ================= */

@media (max-width:992px){

.form-grid{
grid-template-columns:1fr;
}

.form-header h2{
font-size:34px;
}

}


@media (max-width:768px){

.contact-form-section{
padding:70px 5%;
}

.contact-form{
padding:35px;
}

.form-header h2{
font-size:30px;
}

}


@media (max-width:480px){

.contact-form{
padding:28px;
}

.form-header h2{
font-size:26px;
}

.contact-form input,
.contact-form textarea{
font-size:14px;
}

.form-notification{
right:15px;
left:15px;
top:15px;
text-align:center;
}

}



/* ================= ABOUT TEXT FIX ================= */

/* 🔥 HEADING 2 LINES (ALL DEVICES) */
.about-text h2{
  line-height:1.3;
}

.about-text h2 br{
  display:block;
}

.about-text h2 br + *{
  white-space:nowrap;   /* second line break nahi hogi */
}


/* 🔥 PARAGRAPH PERFECT FORMAT */
.about-text p{
  font-size:15.5px;
  line-height:1.9;        /* readability */
  color:#444;
  margin-bottom:18px;

  text-align:left;        /* ya center chaho to change */
  
  /* 🔥 important fix */
  word-break:normal;
  overflow-wrap:break-word;
}

/* MOBILE IMPROVEMENT */
@media (max-width:768px){

  .about-text{
    text-align:center;
  }

  .about-text h2{
    font-size:28px;
  }

  .about-text p{
    font-size:14.5px;
    line-height:1.8;
  }

}

@media (max-width:480px){

  .about-text h2{
    font-size:24px;
  }

}



/* ================= VACANCY PAGE ================= */

.vacancy-section{
padding:100px 20px;
background:#f8f9fb;
}

.section-title{
text-align:center;
font-size:36px;
color:#0f2d50;
margin-bottom:10px;
font-weight:800;
}

.section-subtitle{
text-align:center;
max-width:700px;
margin:0 auto 40px;
color:#5a6b7b;
}

/* FORM */

.vacancy-form{
max-width:900px;
margin:auto;
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.vacancy-form input,
.vacancy-form textarea{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.vacancy-form textarea{
margin-top:20px;
height:130px;
}

.btn-green{
background:#4CAF50;
color:#fff;
padding:14px 30px;
border:none;
border-radius:6px;
margin-top:20px;
cursor:pointer;
}

.btn-green:hover{
background:#43a047;
}


/* MOBILE */

@media(max-width:768px){

.form-grid{
grid-template-columns:1fr;
}

.section-title{
font-size:28px;
}

}