/* ============================================
Project Stylesheet Structure
============================================
1. Font Import
2. Root Variables -- 45
3. Global Selectors -- 36
4. Utilities -- 83-199
5. Navbar -- 206-298
6. Footer -- 304-413
7. Home Page
8. About Page
9. Services Page
10. E-Learning
11. Courses
12. Career
13. Contact Us
14. Responsive Breakpoints
  14.1 ≥ 1200px
  14.2 ≤ 1199px
  14.3 ≤ 992px
  14.4 ≤ 850px
  14.5 ≤ 768px
  14.6 ≤ 575px
  14.7 ≤ 480px
  14.8 ≤ 360px
============================================ */

/* ==============
 google fonts
 ================*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Montserrat:wght@100;300;400;700;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");

/* ==============
 global css 
 ================*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ==============
root file
=================*/
:root {
  /* ===== Blue Theme ===== */
  --blue-dark: #0c2b4e;
  --blue-medium: #1a3d64;
  --blue-teal: #1d546c;
  --blue-light: #f4f4f4;

  /* ===== Purple Theme ===== */
  --purple-dark: #540863;
  --purple-medium: #92487a;
  --purple-light: #e49ba6;
  --purple-soft: #ffd3d5;

  /* ===== Neutral Colors ===== */
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-dark: #222222;

  /* ===== Accent Colors ===== */
  --accent: #ffb703; /* warm gold accent for hover or buttons */

  /* ===== Banner Height ===== */
  --banner-height: 80vh;

  /* ===== font size ===== */
  --heading-h1: 50px;
  --subheading-p: 25px;
}

body {
  overflow-x: hidden;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

/* =================
 utilies 
 ====================*/
.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.al-start {
  align-items: flex-start;
}

.al-center {
  align-items: center;
}

.al-end {
  align-items: flex-end;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-between {
  justify-content: space-between;
}

.jc-end {
  justify-content: flex-end;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style-type: none;
}

.nav-bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* =================
container
====================*/
.container {
  max-width: 1500px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  height: var(--banner-height);
  background-color: #000;
  opacity: 0.5;
}

/* =================
banner
====================*/
.global-banner {
  position: relative;
  height: var(--banner-height);
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* =================
global wrapper
====================*/
.global-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: var(--banner-height);
  z-index: 99;
}

/* =================
global content
====================*/
.global-content {
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.global-content h1 {
  font-size: var(--heading-h1);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-light);
}

.global-content p {
  font-size: var(--subheading-p);
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}

/* ------------------------
==============================
/* NAVBAR
==============================
------------------------ */
.nav-bar {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: var(--blue-dark) !important;
}

.nav-wrapper {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
  background-color: white;
  border-radius: 8px;
  padding: 4px;
}

.logo img:hover {
  transform: scale(1.08);
}

/* Nav Menu */
.nav-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  padding: 10px 5px;
  transition: all 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
  color: var(--accent);
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
  width: 100%;
}

/* Contact Button */
.contact-btn a {
  background-color: var(--accent);
  color: var(--blue-dark);
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn a:hover {
  background-color: #ffc94d;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 183, 3, 0.4);
}

/* ------------------------ */
/* HAMBURGER MENU */
/* ------------------------ */
.humberger {
  font-size: 26px;
  color: var(--accent);
  cursor: pointer;
  display: none;
}

/* =============================
             footer 
================================= */
/* Footer Styles */
.footer {
  font-family: "Arial", sans-serif;
  color: #f1f1f1;
  background: #1b1b1b;
  background-repeat: no-repeat;
}

.footer a {
  color: #f1f1f1;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #00aaff;
}

.footer-cta {
  text-align: center;
  padding: 50px 20px;
  background: #111;
}

.footer-cta h2 {
  font-size: 2rem;
  color: #00aaff;
  margin-bottom: 10px;
}

.footer-cta p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #00aaff;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0088cc;
}

/* Footer main section */
.footer-main {
  padding: 60px 20px;
  background: #1b1b1b;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #00aaff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a:hover {
  color: #00d4ff;
}

.footer-col.about img.footer-logo {
  width: 120px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.footer-col.about p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.footer-col.about .social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.2rem;
  color: #f1f1f1;
  transition: 0.3s;
}

.footer-col.about .social-icons a:hover {
  color: #00aaff;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.9rem;
}

/* ------------------------ */
/* DROPDOWN SECTION */
/* ------------------------ */
.home-menu-service-setion {
  position: absolute;
  width: 100%;
  background-color: var(--white);
  top: 80px;
  left: 0;
  display: none;
  animation: slideDown 0.4s ease forwards;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.home-menu-service-setion.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
}

.list {
  background-color: var(--gray-light);
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  transition: all 0.3s ease;
  text-align: left;
}

.list:hover {
  background-color: var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.list h2 {
  font-size: 18px;
  color: var(--blue-dark);
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 5px;
}

.list ul li {
  color: var(--gray-dark);
  font-size: 15px;
  margin: 8px 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.list ul li:hover {
  color: var(--blue-medium);
  transform: translateX(6px);
}

/* ------------------------ */
/* CONTACT NAV SECTION (Reworked Design) */
/* ------------------------ */
.contact-nav-section {
  position: absolute;
  width: 100%;
  background-color: #f8fafc;
  padding: 120px 0;
  display: none;
  z-index: 999;
}

.contact-nav-section.active {
  display: block;
}

.nav-service-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 50px;
}

.nav-contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-contact-content .text {
  width: 70%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  margin: 0 auto;
  gap: 30px;
}

.nav-contact-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.nav-contact-content p {
  color: #475569;
  font-size: 18px;
  line-height: 28px;
}

/* Redesigned Contact Options */
.contact-option {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-option ul {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1000px;
}

.contact-option ul li {
  flex: 1 1 280px;
  max-width: 300px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
}

.contact-option ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.contact-option ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 25px;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-option ul li a:hover {
  color: var(--accent);
}

@media screen and (max-width: 768px) {
  .contact-option ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-contact-content h2 {
    font-size: 28px;
  }

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

  .contact-option ul li {
    width: 100%;
    max-width: none;
  }
}

/* ============== landing page why choose us ==================== */
/* ===== Banner Section ===== */
.home-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-slider {
  width: 100%;
  height: 100%;
}

/* ===== Each Slide ===== */
.banner-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-slide .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(12, 43, 78, 0.65); /* dark blue transparent overlay */
  z-index: 1;
  height: 100%;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-content h1 {
  font-size: 48px;
  color: var(--white);
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 18px;
  color: var(--blue-light);
  line-height: 28px;
  margin-bottom: 30px;
}

.banner-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: var(--accent);
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background-color: var(--white);
  color: var(--purple-dark);
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 992px) {
  .banner-content h1 {
    font-size: 36px;
    line-height: 46px;
  }

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

  .banner-btn {
    padding: 12px 25px;
  }
}

@media screen and (max-width: 768px) {
  .banner-content h1 {
    font-size: 28px;
    line-height: 38px;
  }

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

  .home-banner {
    height: 75vh;
  }

  .banner-slide {
    height: 75vh;
  }
}

@media screen and (max-width: 480px) {
  .banner-content {
    padding: 15px;
  }

  .banner-content h1 {
    font-size: 24px;
    line-height: 34px;
  }

  .banner-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* ===== Introduction Section ===== */
.introduction-section {
  background-color: var(--blue-dark);
  color: var(--white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* ===== Header ===== */
.intro-header {
  text-align: center;
  margin-bottom: 60px;
}

.intro-header h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}

.intro-header h2 span {
  color: var(--accent);
}

.intro-header p {
  font-size: 18px;
  color: var(--blue-light);
  max-width: 700px;
  margin: 10px auto 0;
  line-height: 28px;
}

/* ===== Wrapper ===== */
.intro-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* ===== Left Image ===== */
.intro-image {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.intro-image figure {
  width: 100%;
  height: 100%;
  /* max-width: 500px; */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Right Content ===== */
.intro-content {
  flex: 1;
  min-width: 320px;
}

.intro-content h3 {
  font-size: 26px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.intro-content p {
  font-size: 16px;
  color: var(--blue-light);
  line-height: 28px;
  margin-bottom: 20px;
}

/* ===== Stats Section ===== */
.intro-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  background-color: var(--blue-medium);
  border-radius: 10px;
  padding: 20px 25px;
  text-align: center;
  min-width: 160px;
  flex: 1;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background-color: var(--blue-teal);
  border-bottom: 1px solid var(--accent);
}

.stat-item h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  color: var(--white);
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 992px) {
  .intro-header h2 {
    font-size: 34px;
  }
  .intro-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .intro-content h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .intro-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-image figure {
    max-width: 400px;
  }

  .intro-stats {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .introduction-section {
    padding: 60px 15px;
  }
  .intro-header h2 {
    font-size: 28px;
  }
  .intro-content h3 {
    font-size: 20px;
  }
  .stat-item {
    min-width: 100%;
  }
}

/* ===== Base Section ===== */
.home-start {
  background-color: var(--blue-dark);
  color: var(--white);
  padding: 100px 20px;
}

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

.home-start-wrapper {
  text-align: center;
}

/* ===== Content Text ===== */
.home-start-content span {
  color: var(--accent);
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.home-start-content h2 {
  font-size: 40px;
  color: var(--white);
  margin: 15px 0;
  font-weight: 700;
}

.home-start-content p {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 30px;
}

/* ===== Card List ===== */
.home-start-card-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ===== Individual Cards ===== */
.home-start-card {
  background-color: var(--blue-medium);
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 260px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-start-card:hover {
  background-color: var(--blue-teal);
  border-bottom: 1px solid var(--accent);
}

.home-start-card figure {
  margin-bottom: 20px;
}

.home-start-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.home-start-card-content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.home-start-card-content h2 {
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 5px;
}

.home-start-card-content span {
  color: var(--white);
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 992px) {
  .home-start-content h2 {
    font-size: 34px;
  }
  .home-start-content p {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .home-start-card {
    flex: 1 1 45%;
  }
}

@media screen and (max-width: 768px) {
  .home-start-card-list {
    gap: 20px;
  }
  .home-start-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .home-start-content h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 480px) {
  .home-start {
    padding: 60px 15px;
  }
  .home-start-content h2 {
    font-size: 26px;
  }
  .home-start-card-content h2 {
    font-size: 24px;
  }
}

/* ===== Section Base ===== */
.why-choose-us {
  background-color: var(--blue-light);
  padding: 80px 20px;
  color: var(--gray-dark);
}

.why-choose-us .container {
  max-width: 1440px;
  margin: 0 auto;
}

.section_wrapper {
  text-align: center;
}

.section-header h2 {
  font-size: 40px;
  color: var(--blue-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.section-header h2 span {
  color: var(--purple-dark);
}

.section-header p {
  font-size: 18px;
  color: var(--blue-teal);
  margin-bottom: 50px;
}

/* ===== Grid Layout ===== */
.why-choose-us {
  padding: 40px 0;
}

.home-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* ===== Cards ===== */
.choose-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.choose-card i {
  font-size: 40px;
  color: var(--purple-medium);
  margin-bottom: 15px;
}

.choose-card h3 {
  color: var(--blue-dark);
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.choose-card p {
  color: var(--blue-teal);
  font-size: 16px;
  line-height: 26px;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 992px) {
  .home-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .choose-card {
    padding: 25px 20px;
  }

  .choose-card i {
    font-size: 36px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

/* ===== Section Base ===== */
.our-services {
  padding: 80px 20px;
  color: var(--gray-dark);
}

.our-services .container {
  max-width: 1440px;
  margin: 0 auto;
}

.section_wrapper {
  text-align: center;
}
.section-header h2 {
  font-size: 40px;
  color: var(--blue-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.section-header h2 span {
  color: var(--purple-dark);
}

.section-header p {
  font-size: 18px;
  color: var(--blue-teal);
  margin-bottom: 50px;
}

/* ===== Grid Layout ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1440px;
  width: 100%;
  padding: 20px 0;
}

/* ===== Service Cards ===== */
.service-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--gray-dark);
}

.service-card .icon {
  width: 70px;
  height: 70px;
  background-color: var(--purple-soft);
  color: var(--purple-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 32px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .icon {
  background-color: var(--accent);
  color: var(--white);
  border-bottom: 1px solid var(--accent);
}

.service-card h3 {
  font-size: 22px;
  color: var(--blue-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  font-size: 16px;
  color: var(--blue-teal);
  line-height: 26px;
}

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

  .section-header h2 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-card .icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

/* ===== Section Base ===== */
.our-services {
  background-color: var(--blue-light);
  padding: 80px 20px;
  color: var(--gray-dark);
}
.our-services .container {
  max-width: 1200px;
  margin: 0 auto;
}
.section_wrapper {
  text-align: center;
}
.section-header h2 {
  font-size: 40px;
  color: var(--blue-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.section-header h2 span {
  color: var(--purple-dark);
}
.section-header p {
  font-size: 18px;
  color: var(--blue-teal);
  margin-bottom: 50px;
} /* =====
      Grid Layout ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===== Responsive ===== */
@media screen and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-header h2 {
    font-size: 32px;
  }
  .section-header p {
    font-size: 16px;
  }
}

@media screen and (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 30px 20px;
  }
  .service-card .icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .section-header h2 {
    font-size: 28px;
  }
}

/* ===== Testimonial Section ===== */
.testimonial-section {
  width: 100%;
  background-color: var(--blue-light);
  padding: 80px 20px;
  color: var(--gray-dark);
  text-align: center;
}

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

.section-header h2 {
  font-size: 40px;
  color: var(--blue-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.section-header h2 span {
  color: var(--purple-dark);
}

.section-header p {
  font-size: 18px;
  color: var(--blue-teal);
  margin-bottom: 50px;
}

/* ===== Testimonial Slide ===== */
.testimonial-slide {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-content p {
  font-size: 18px;
  color: var(--blue-teal);
  font-style: italic;
  line-height: 28px;
  margin-bottom: 30px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-client figure {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--purple-medium);
}

.testimonial-client img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info h3 {
  font-size: 20px;
  color: var(--blue-dark);
  margin-bottom: 4px;
  font-weight: 600;
}

.client-info span {
  font-size: 16px;
  color: var(--blue-teal);
}

/* ===== Owl Carousel Dots Styling ===== */
.owl-dots {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.owl-dot span {
  width: 14px;
  height: 14px;
  gap: 10px;
  background: var(--purple-light);
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  transform: scale(0.9);
}

.owl-dot.active span {
  background: var(--purple-dark);
  transform: scale(0.8);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .testimonial-slide {
    padding: 35px 40px;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .testimonial-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .testimonial-slide {
    padding: 25px 20px;
  }
  .testimonial-client figure {
    width: 60px;
    height: 60px;
  }
  .client-info h3 {
    font-size: 18px;
  }
  .client-info span {
    font-size: 14px;
  }
}

/* ===== Base Section ===== */
.home-sec-five {
  width: 100%;
  background-color: var(--white);
  padding: 100px 20px;
  color: var(--gray-dark);
  overflow: hidden;
}

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

/* ===== Heading Section ===== */
.heading-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.heading-content .title {
  color: var(--accent);
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.last-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.text-column {
  flex: 1;
  min-width: 320px;
}

.text-column h2 {
  font-size: 46px;
  line-height: 56px;
  color: var(--blue-dark);
  font-weight: 700;
  text-align: left;
}

.text-column h2 span {
  color: var(--purple-dark);
  display: block;
}

.image-column {
  flex: 1;
  min-width: 320px;
}

.upper-img-wrapper {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.upper-img-wrapper figure {
  flex: 1;
}

.upper-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* ===== Bottom Section ===== */
.bottom-part-main {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.bottom-left {
  flex: 1;
  min-width: 320px;
}

.bottom-left figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.bottom-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

/* ===== Paragraph ===== */
.right-content .para {
  font-size: 16px;
  color: var(--blue-teal);
  line-height: 28px;
  margin-bottom: 20px;
}

/* ===== Stats Section ===== */
.rating {
  border-top: 1px solid var(--blue-light);
  padding-top: 30px;
}

.rating-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 40px;
  gap: 20px;
}

.rating-items .item {
  flex: 1;
  min-width: 150px;
}

.rating-items h2 {
  font-size: 30px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 5px;
}

.rating-items p {
  font-size: 15px;
  color: var(--blue-dark);
}

/* ===== Watch Intro Button ===== */
.play-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.watch-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  color: var(--blue-dark);
  transition: color 0.3s ease;
}

.watch-intro:hover {
  color: var(--accent);
}

.play-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s ease;
}

.watch-intro:hover .play-icon {
  background-color: var(--purple-dark);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .text-column h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .upper-img-wrapper {
    justify-content: center;
  }

  .bottom-part-main {
    gap: 40px;
  }

  .rating-items {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .last-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .bottom-wrapper {
    flex-direction: column;
  }

  .bottom-part-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rating {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rating-items {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
  }

  .rating-items .item {
    min-width: 100%;
  }

  .play-btn-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .avatar-group img {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 575px) {
  .bottom-wrapper {
    flex-direction: column;
  }

  .rating-items {
    display: flex;
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .home-sec-five {
    padding: 60px 15px;
  }

  .text-column h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .rating-items h2 {
    font-size: 26px;
  }
}

/* ============================================
12. Career — Hire Developers Section
============================================ */
/* Decorative subtle gradient background overlay */
.developers-section .container {
  position: relative;
  z-index: 2;
}

/* -------------------------
Section Header
-------------------------- */
.developers-header {
  text-align: center;
  margin-bottom: 70px;
}

.developers-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.developers-header p {
  font-size: 18px;
  color: var(--blue-teal);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* -------------------------
Options Grid
-------------------------- */
.developers-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-bottom: 100px;
}

.option {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 35px 25px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.35s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.option:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--purple-light);
}

.option.highlighted {
  border-color: var(--purple-medium);
  background-color: rgba(233, 221, 255, 0.3);
}

.option .icon {
  background-color: var(--purple-soft);
  color: var(--purple-medium);
  font-size: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
/* navbar active */
.activee {
  color: var(--accent);
}

img {
  width: 100%;
  object-fit: cover;
}

/* =================
Banner Section
====================*/
.banner-item-list {
  position: relative;
  display: block;
  width: 100%;
  background-color: red;
}

.banner-container {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
}

.banner-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0;
  gap: 0;
  overflow: hidden;
}

.banner-content {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

.content-box {
  background-color: var(--white);
  border-top-right-radius: 50px;
  padding: 50px 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  left: -80px; /* overlap effect */
  max-width: 700px;
}

.content-box h1 {
  font-size: 48px;
  line-height: 58px;
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.content-box p {
  font-size: 18px;
  line-height: 28px;
  color: var(--blue-teal);
  margin-bottom: 30px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--blue-dark);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--blue-dark);
  color: var(--accent);
  transition: all 0.3s;
}

/* Banner Image */
.banner-image {
  position: absolute;
  right: 0;
  top: 100px;
  z-index: 1;
  width: 60%;
}

.banner-image figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  border-bottom-left-radius: 50px;
}

/* home work details */
.home-work-section {
  margin-top: 220px;
  padding: 60px 20px;
}

.home-work-box-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  width: 100%;
  max-width: 32%;
  padding: 30px 25px;
  background: var(--white, #fff);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 380px;
  text-align: center;
  border: 5px solid var(--blue-dark);
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.box figure {
  height: 90px;
  width: 90px;
  background-color: var(--accent);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.option:hover .icon {
  background-color: var(--purple-medium);
  color: #fff;
}

.option .content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

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

.box figure img {
  width: 100%;
  object-fit: contain;
}

.home-box-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.home-box-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--blue-medium);
  line-height: 1.3;
}

.home-box-content p {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--blue-teal);
  line-height: 1.6;
}

/* -------------------------
Contact Form Section
-------------------------- */
.developers-contact {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ============================================
Contact Section with Image (Professional Layout)
============================================ */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.contact-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 0;
}

.contact-image:hover img {
  transform: scale(1.05);
}

/* --- Form Side --- */
.contact-form {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(28, 61, 100, 0.03); /* light blue tint for contrast */
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 30px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* --- Input Fields --- */
.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  flex: 1;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  color: var(--blue-dark);
  background-color: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-medium);
  box-shadow: 0 0 0 3px rgba(146, 72, 122, 0.15);
}

/* --- Checkbox and Button --- */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--blue-teal);
}

.form-check a {
  color: var(--purple-medium);
  font-weight: 500;
}

.btn {
  background: linear-gradient(135deg, var(--purple-medium), var(--purple-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  padding: 14px 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
  transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-image {
    height: 320px;
  }

  .contact-form {
    padding: 45px 30px;
  }
}

.contact-form {
  background-color: #fff;
  padding: 60px 50px;
  border-radius: 18px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  width: 100%;
  /* max-width: 600px; */
  border-top: 4px solid var(--purple-medium);
  transition: all 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 30px;
  text-align: center;
}

/* Form Layout */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  flex: 1;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  color: var(--blue-dark);
  background-color: #fdfdfd;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-medium);
  box-shadow: 0 0 0 3px rgba(146, 72, 122, 0.15);
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

/* Checkbox Area */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--blue-teal);
  line-height: 1.4;
}

.form-check input {
  margin-top: 3px;
}

.form-check a {
  color: var(--purple-medium);
  font-weight: 500;
}

/* Button */
.btn {
  background: linear-gradient(135deg, var(--purple-medium), var(--purple-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  padding: 14px 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-medium));
  transform: translateY(-3px);
}

/* -------------------------
Responsive Design
-------------------------- */

/* ≤992px */
@media (max-width: 992px) {
  .developers-header h2 {
    font-size: 34px;
  }

  .contact-form {
    padding: 45px 35px;
    max-width: 100%;
  }
}

/* ≤768px */
@media (max-width: 768px) {
  .option {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .option .icon {
    margin-bottom: 10px;
  }

  .form-group {
    flex-direction: column;
  }

  .contact-form {
    max-width: 100%;
  }
}

/* ≤480px */
@media (max-width: 480px) {
  .hire-developers {
    padding: 70px 0;
  }

  .developers-header h2 {
    font-size: 28px;
  }

  .developers-header p {
    font-size: 16px;
  }

  .contact-form {
    padding: 35px 25px;
  }
}

/* ============================================
12. Technologies Page Sections
============================================ */

/* ============================================
 Technologies Section
============================================ */

.technologies {
  padding: 80px 0;
  background-color: #fff;
}

.tech-header {
  text-align: left;
  margin-bottom: 40px;
}

.tech-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.tech-header p {
  font-size: 18px;
  color: var(--blue-teal);
  max-width: 600px;
  line-height: 1.6;
}

.tech-tabs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 0;
}

.tech-tabs ul li {
  padding: 8px 18px;
  border: 1px solid var(--blue-teal);
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--blue-teal);
}

.tech-tabs ul li.active,
.tech-tabs ul li:hover {
  background-color: var(--blue-teal);
  color: #fff;
}

/* Technologies Grid */
.tech-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
}

.tech-box {
  padding: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tech-box:hover {
  border-color: var(--purple-medium);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* ============================================
 Hire Developer Contact Section
============================================ */

.hire-developers {
  padding: 90px 0;
  background-color: #fff;
}

.hire-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Correct image handling */
.hire-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
}
/* ============================================
 Technologies Section
============================================ */

.technologies {
  padding: 80px 0;
  background-color: #fff;
}

.tech-header {
  text-align: left;
  margin-bottom: 40px;
}

.tech-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.tech-header p {
  font-size: 18px;
  color: var(--blue-teal);
  max-width: 600px;
  line-height: 1.6;
}

/* Technology Tabs */
.tech-tabs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 0;
}

.tech-tabs ul li {
  padding: 8px 18px;
  border: 1px solid var(--blue-teal);
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--blue-teal);
}

.tech-tabs ul li.active,
.tech-tabs ul li:hover {
  background-color: var(--blue-teal);
  color: #fff;
}

/* Technologies Grid */
.tech-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
}

.tech-box {
  padding: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tech-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.tech-box:hover {
  transform: translateY(-5px);
  border-color: var(--purple-medium);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* ============================================
 Hire Developer Contact Section
============================================ */

.hire-developers {
  padding: 90px 0;
  background-color: #fff;
}

.hire-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hire-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
}

.hire-image img {
  width: 100%;
  height: auto; /* keeps image sharp */
  display: block;
  object-fit: cover;
}

/* form area */
.hire-form {
  background-color: #fff;
  padding: 40px 35px;
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.hire-form h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 30px;
}

.hire-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group input,
.form-group textarea {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  color: var(--blue-dark);
  outline: none;
  transition: 0.3s;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-medium);
  box-shadow: 0 0 0 3px rgba(146, 72, 122, 0.15);
}

textarea {
  min-height: 120px;
  resize: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--blue-teal);
}

.form-check a {
  color: var(--purple-medium);
}

.btn {
  background-color: var(--purple-medium);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background-color: var(--purple-dark);
}

/* ============================================
 Responsive Adjustments
============================================ */

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

  .hire-image {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .hire-form {
    padding: 30px 25px;
  }

  .hire-form h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .tech-tabs ul {
    gap: 10px;
  }

  .tech-grid {
    gap: 15px;
  }

  .hire-form {
    padding: 25px 20px;
  }
}

/* ============================================
12. Career (Enhanced UI — Pixel Version)
============================================ */
/* ======================
Intro Section
====================== */
.banner-body-content {
  position: absolute;
}

.careers-intro {
  padding: 80px 0px 60px 0px;
  background: linear-gradient(135deg, var(--blue-light) 0%, #f0f7ff 100%);
  text-align: center;
}

.careers-intro h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 15px;
  position: relative;
}

.careers-intro h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--purple-medium);
  margin: 12px auto 0px;
  border-radius: 2px;
}

.careers-intro p {
  font-size: 18px;
  line-height: 30px;
  color: var(--blue-teal);
  max-width: 760px;
  margin: 0px auto;
}

/* ======================
Careers List Section
====================== */
.careers-list {
  padding: 60px 0px 80px 0px;
  background-color: var(--white);
}

.careers-list h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 25px;
  text-align: left;
  border-left: 5px solid var(--purple-medium);
  padding-left: 12px;
}

/* ======================
Job Card
====================== */
.job-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.job-card:hover {
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.08);
}

/* Job Grid */
.job-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 35px;
  margin-bottom: 25px;
  align-items: start;
}

/* Job Info */
.job-info h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.job-info p {
  font-size: 16px;
  color: var(--blue-teal);
  line-height: 28px;
}

/* Skills Tags */
.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-skills span {
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-light), #eef5fa);
  color: var(--blue-dark);
  border: 1px solid var(--blue-teal);
  font-weight: 500;
}

/* Job Location */
/* Job Location – same style as skills */
.job-location {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-location p {
  margin: 0;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-light), #eef5fa);
  color: var(--blue-dark);
  border: 1px solid var(--blue-teal);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* Buttons */
.job-actions {
  display: flex;
  gap: 15px;
}

.job-actions .btn {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: 0.3s;
}

.apply-btn {
  background: linear-gradient(135deg, var(--purple-medium), var(--purple-dark));
  color: var(--white);
  box-shadow: 0px 4px 10px rgba(146, 72, 122, 0.3);
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(146, 72, 122, 0.4);
}

.learn-btn {
  background: linear-gradient(135deg, var(--blue-teal), var(--blue-medium));
  color: var(--white);
  box-shadow: 0px 4px 10px rgba(29, 84, 108, 0.3);
}

.learn-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(29, 84, 108, 0.4);
}

/* ======================
Contact Section
====================== */
.careers-contact {
  padding: 100px 0px;
  background: linear-gradient(135deg, #fdfcff 0%, #eef1ff 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Placeholder Image */
.contact-image {
  width: 100%;
  min-height: 450px;
  border-radius: 24px;
  background: url("../images/career-2.jpg") center/cover no-repeat;
  position: relative;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.contact-form {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 25px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: var(--white);
  font-size: 15px;
  color: var(--blue-dark);
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple-medium);
  box-shadow: 0px 0px 0px 4px rgba(146, 72, 122, 0.15);
}

.contact-form textarea {
  min-height: 130px;
  resize: none;
}

.contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--blue-teal);
}

.contact-form .form-check a {
  color: var(--purple-medium);
  text-decoration: underline;
}

.contact-form .btn {
  background: linear-gradient(135deg, var(--purple-medium), var(--purple-dark));
  color: var(--white);
  padding: 16px 24px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 15px rgba(146, 72, 122, 0.3);
}

/* -------------------- CONTACT PAGE -------------------- */

/* Contact Page Wrapper */
.contact-page-details {
  background-color: #f8f9fb;
  padding: 80px 0;
}

.contact-page-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Section Heading */
.contact-page-content {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  padding: 0 20px;
}

.contact-page-content h2 {
  font-size: 36px;
  color: #0b132b;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-page-content p {
  font-size: 16px;
  color: #5a5f6f;
  line-height: 28px;
}

/* Contact Cards */
.contact-page-card-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  max-width: 1000px;
}

.contact-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  width: 300px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 22px rgba(0, 123, 255, 0.15);
}

.contact-card i {
  font-size: 36px;
  color: #0077ff;
  margin-bottom: 20px;
}

.contact-card h4 {
  font-size: 18px;
  color: #1f2937;
  margin-bottom: 8px;
}

.contact-card b {
  font-size: 16px;
  color: #374151;
  font-weight: 500;
}

.contact-card a {
  color: #0077ff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* -------------------- CONTACT FORM -------------------- */

.contact-page-form {
  padding: 100px 0;
  width: 100%;
  display: flex;
}

.contact-page-form .contact-form-wrapper {
  margin: 0 auto;
  padding: 60px 80px;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  background-color: red;
  flex-direction: column;
}

.contact-page-form .contact-form-wrapper h2 {
  font-size: 34px;
  color: #0b132b;
  margin-bottom: 10px;
}

.contact-page-form .contact-form-wrapper p {
  font-size: 16px;
  color: #555f73;
  margin-bottom: 50px;
}

.contact-page-form .contact-us-form {
  width: 100%;
}

.contact-page-form .form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
}

.contact-page-form .form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  color: #111827;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.contact-page-form .form-group input:focus,
.form-group textarea:focus {
  border-color: #0077ff;
  box-shadow: 0 0 8px rgba(0, 119, 255, 0.15);
  outline: none;
}

.form-group.full-width {
  display: block;
}

textarea {
  resize: none;
}

.form-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444c5c;
  margin-bottom: 40px;
  text-align: left;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0077ff;
  cursor: pointer;
}

.form-check a {
  color: #0077ff;
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}

/* Submit Button */
.btn-primary {
  background-color: #0077ff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 45px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #005ad3;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 119, 255, 0.3);
}

/* -------------------- GOOGLE MAP -------------------- */

.contact-location {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.contact-location-wrapper iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

/* -------------------- RESPONSIVE -------------------- */

/* 1199px - Large Tablet / Small Laptop */
@media (max-width: 1199px) {
  .contact-page-content h2 {
    font-size: 32px;
  }

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

  .contact-card {
    width: 280px;
  }

  .contact-form-wrapper {
    padding: 50px 60px;
  }

  .form-group {
    gap: 15px;
  }
}

/* 1024px - Tablet Landscape */
@media (max-width: 1024px) {
  .contact-page-card-list {
    flex-wrap: wrap;
    gap: 25px;
  }

  .contact-card {
    width: 260px;
    padding: 25px 20px;
  }

  .contact-form-wrapper {
    padding: 45px 50px;
  }
}

/* 768px - Tablet Portrait */
@media (max-width: 768px) {
  .contact-page-content {
    padding: 0 30px;
  }

  .contact-page-content h2 {
    font-size: 28px;
  }

  .contact-page-content p {
    font-size: 14px;
  }

  .contact-page-card-list {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 80%;
    max-width: 400px;
  }

  .contact-form-wrapper {
    padding: 40px 30px;
  }

  .form-group {
    flex-direction: column;
    gap: 20px;
  }

  .btn-primary {
    width: 100%;
    font-size: 15px;
  }
}

/* 576px - Large Phones */
@media (max-width: 576px) {
  .contact-page-details {
    padding: 60px 0;
  }

  .contact-page-content h2 {
    font-size: 26px;
  }

  .contact-card {
    width: 90%;
    padding: 20px 15px;
  }

  .contact-card i {
    font-size: 28px;
  }

  .contact-form {
    padding: 70px 0;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 12px 15px;
  }

  .form-check {
    font-size: 13px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 12px 35px;
  }
}

/* 390px - Small Phones */
@media (max-width: 390px) {
  .contact-page-content h2 {
    font-size: 24px;
  }

  .contact-page-content p {
    font-size: 13px;
    line-height: 22px;
  }

  .contact-card {
    width: 100%;
    padding: 18px 10px;
  }

  .contact-card h4 {
    font-size: 16px;
  }

  .contact-card i {
    font-size: 26px;
  }

  .contact-form-wrapper {
    padding: 25px 15px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 13px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 10px 25px;
  }

  .contact-location-wrapper iframe {
    height: 350px;
  }
}

/* ======================
Responsive Adjustments
====================== */
@media (max-width: 992px) {
  .job-row {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .job-card {
    padding: 30px 25px;
  }

  .contact-form {
    padding: 35px 25px;
  }

  .careers-intro h2 {
    font-size: 32px;
  }

  .careers-list h3 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .job-actions {
    flex-direction: column;
  }

  .apply-btn,
  .learn-btn {
    width: 100%;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-form h3 {
    font-size: 22px;
  }
}

/* =================
responsive
====================*/
@media screen and (min-width: 1600px) {
  .home-work-section {
    margin-top: 100px;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1599px) {
  .home-work-section {
    margin-top: 170px;
  }
}

@media screen and (min-width: 1200px) {
  .content-box {
    padding: 40px 50px;
    left: 0;
  }

  .content-box h1 {
    font-size: 42px;
    line-height: 52px;
  }

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

@media screen and (max-width: 1199px) {
  /* banner */
  .banner-content {
    display: flex;
  }

  .banner-content {
    width: 70%;
  }

  .content-box {
    width: 100%;
    left: 0px;
  }

  /* banner */
  .banner-container {
    padding: 0;
  }

  .banner-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  .banner-image {
    position: relative;
    width: 100%;
    order: 1;
    z-index: 1;
    top: 0;
  }

  .banner-image figure img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    border-radius: 0;
    filter: brightness(70%);
  }

  .banner-content {
    width: 100%;
    order: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 30px 25px;
    border-radius: 20px;
    background-color: transparent;
    box-shadow: none;
    left: 0;
  }

  .content-box h1 {
    font-size: 32px;
    line-height: 42px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .content-box p {
    font-size: 16px;
    line-height: 26px;
    color: #f1f1f1;
    margin-bottom: 25px;
  }

  .btn-primary {
    background-color: var(--accent);
    color: var(--blue-dark);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    background-color: var(--blue-medium);
    color: var(--white);
  }

  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    top: 0;
    left: 0;
  }

  .home-work-box-list {
    gap: 30px;
    flex-direction: row;
    margin-top: 300px;
  }

  .box {
    max-width: 48%;
    min-width: 340px;
  }

  .home-box-content h2 {
    font-size: 21px;
  }

  .home-box-content p {
    font-size: 14px;
  }
}

@media screen and (max-width: 992px) {
  /* home work details */
  .home-work-section {
    margin-top: 40px;
  }

  .home-work-box-list {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 120px;
    padding: 50px 0;
  }

  .box {
    max-width: 90%;
    min-height: 200px;
    padding: 15px;
  }

  .box figure {
    height: 70px;
    width: 70px;
  }

  .home-box-content h2 {
    font-size: 20px;
  }

  .home-box-content p {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  /* footer */
  .footer-cta h2 {
    font-size: 1.5rem;
  }

  /* banner */
  .banner-wrapper {
    padding: 40px 0;
  }

  .content-box {
    max-width: 95%;
    padding: 30px 20px;
  }

  .content-box h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .content-box p {
    font-size: 15px;
    line-height: 24px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .banner-image figure img {
    height: 60vh;
  }

  /* home work details */
  .home-work-section {
    margin-top: 80px;
    padding: 40px 15px;
  }

  .home-work-box-list {
    flex-direction: column;
    gap: 25px;
  }

  .box {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .box figure {
    height: 60px;
    width: 60px;
    margin-bottom: 15px;
  }

  .home-box-content {
    align-items: center;
  }

  .home-box-content h2 {
    font-size: 18px;
  }

  .home-box-content p {
    font-size: 13px;
  }
}

@media screen and (max-width: 575px) {
  .content-box {
    background: none;
    backdrop-filter: none;
    box-shadow: none;
  }
}

@media screen and (max-width: 480px) {
  /* banner */
  .banner-wrapper {
    padding: 30px 0 !important;
    font-size: 238px;
  }

  .content-box {
    width: 100%;
    padding: 25px 15px;
  }

  .content-box h1 {
    font-size: 21px;
    line-height: 32px;
  }

  .content-box p {
    font-size: 14px;
    line-height: 22px;
  }

  .btn-primary {
    padding: 8px 16px;
    font-size: 13px;
  }

  .banner-image figure img {
    height: 55vh;
  }

  /* home work details */
  .home-work-section {
    margin-top: 20px;
  }

  .box figure {
    height: 50px;
    width: 50px;
  }

  .home-box-content h2 {
    font-size: 16px;
  }

  .home-box-content p {
    font-size: 12px;
  }
}

@media screen and (max-width: 391px) {
  .content-box h1 {
    font-size: 20px;
    line-height: 32px;
  }

  .content-box p {
    font-size: 12px;
    line-height: 22px;
  }

  /* home work details */
  .home-work-section {
    margin-top: 50px;
  }
}

/* ------------------------ */
/* RESPONSIVE NAV & SERVICE */
/* ------------------------ */
@media screen and (max-width: 1199px) {
  .nav-menu ul {
    gap: 25px;
  }
  .list {
    padding: 15px;
  }
}

@media screen and (max-width: 992px) {
  .nav-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px 0;
  }

  .nav-menu ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav-menu.show-menu {
    padding: 10px 0;
  }

  .nav-menu.show-menu ul {
    display: block;
  }

  .nav-menu.show-menu ul li {
    margin-top: 15px;
  }

  .humberger {
    position: absolute;
    top: 20px;
    right: 30px;
    display: block;
  }

  .humberger i {
    font-size: 30px;
  }

  .contact-btn {
    position: absolute;
    right: 80px;
    top: 25px;
  }

  .home-menu-service-setion {
    top: 70px;
  }

  .nav-menu ul li a:hover::after,
  .nav-menu ul li a.active::after {
    width: 85%;
    display: none;
  }
}

@media screen and (max-width: 765px) {
  .nav-menu.show-menu {
    padding: 10px 0;
  }

  .nav-banner {
    flex-wrap: wrap;
    gap: 20px;
  }
  .list {
    width: 100%;
  }

  .contact-btn a {
    padding: 7px 20px;
  }
}

@media screen and (max-width: 575px) {
  .nav-wrapper {
    padding: 4px 0;
  }

  .nav-menu.show-menu {
    padding: 10px 0;
  }

  .contact-btn a {
    padding: 8px 15px;
    font-size: 14px;
  }
  .nav-banner {
    padding: 25px 15px;
  }

  .humberger i {
    font-size: 25px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    width: 45px;
    height: 45px;
  }
  .nav-wrapper {
    padding: 3px 0;
  }

  .nav-menu.show-menu {
    padding: 20px 0;
  }

  .home-menu-service-setion {
    top: 60px;
  }

  .contact-btn {
    right: 50px;
    top: 17px;
  }

  .contact-btn a {
    padding: 5px 10px;
    font-size: 13px;
  }

  .humberger {
    top: 10px;
    right: 10px;
  }

  .humberger i {
    font-size: 20px;
  }

  .nav-menu ul li a {
    font-size: 15px;
  }
}

@media screen and (max-width: 390px) {
  .humberger {
    right: 20px;
  }

  .contact-btn {
    display: none;
  }
  .nav-banner {
    gap: 15px;
  }
  .list {
    padding: 12px;
  }
  .list h2 {
    font-size: 16px;
  }
  .nav-menu ul li a {
    font-size: 14px;
  }
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  position: relative;
  margin: 0 auto;
}

.hero-wrapper {
  gap: 100px;
}

.hero-content {
  max-width: 70%;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.btn {
  background: #009ef2;
  padding: 12px 25px;
  border-radius: 20px;
  font-size: 18px;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(0, 158, 242, 0.6);
}

.hero-image img {
  width: 600px;
  animation: glow 6s infinite ease-in-out;
}

@keyframes glow {
  0% {
    filter: drop-shadow(0 0 15px #00ff6a);
  }
  50% {
    filter: drop-shadow(0 0 40px #00ff6a);
  }
  100% {
    filter: drop-shadow(0 0 15px #00ff6a);
  }
}

@media screen and (max-width: 1199px) {
  .hero-wrapper {
    width: 100%;
    flex-direction: column;
    gap: 100px;
  }
}

/* Responsive */
@media screen and (max-width: 992px) {
  .hero-section {
    padding: 40px;
  }

  .hero-wrapper {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-image img {
    width: 350px;
    margin-top: 40px;
  }

  .floating-icons {
    right: 20px;
    top: 70%;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 35px;
    font-weight: 800;
  }
}

.why-section {
  width: 90%;
  margin: auto;
  padding: 50px 0;
}

h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  color: #333;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  object-fit: contain;
  height: 260px;
}

.card h3 {
  padding: 15px 20px 0;
  font-size: 20px;
  color: #222;
}

.card p {
  padding: 10px 20px 0;
  font-size: 15px;
  color: #555;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.floating-icons {
  position: fixed;
  right: 40px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.icon:hover {
  background: #f0f0f0;
}

.icon i {
  font-size: 20px;
  color: #333;
}

/* Responsive Design */
@media (max-width: 900px) {
  .card-container {
    grid-template-columns: 1fr;
  }
}

.people-section {
  padding: 60px 0;
  width: 95%;
  margin: auto;
}

.people-container {
  display: flex;
  background: #000;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  min-height: 450px;
}

.people-image {
  width: 50%;
}

.people-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-content {
  width: 50%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.people-content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  color: white;
}

.people-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #dcdcdc;
  margin-bottom: 30px;
}

.button-group {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 30px;
  background: #0077b6;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #005f90;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
  .people-container {
    flex-direction: column;
  }

  .people-image,
  .people-content {
    width: 100%;
  }

  .people-content {
    padding: 40px 25px;
  }
}

.awards-section {
  text-align: center;
  padding: 60px 20px;
}

.awards-section h2 {
  font-size: 42px;
  font-weight: 400;
  color: #222;
  margin-bottom: 10px;
}

.discover-link {
  display: inline-block;
  color: #0077b6;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 40px;
}

.discover-link:hover {
  text-decoration: underline;
}

.awards-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
}

.awards-container img {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.awards-container img:hover {
  transform: scale(1.08);
}

/* Responsive */
@media screen and (max-width: 900px) {
  .button-group {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 17px;
  }
}

@media screen and (max-width: 768px) {
  .awards-container {
    gap: 30px;
  }

  .awards-container img {
    height: 90px;
  }
}

/* ==============================
   SERVICE SECTION (Only)
============================== */
/* ---------- Section Base ---------- */
.service-container {
  background-color: var(--blue-light);
  padding: 60px 0;
}

.service-container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* ---------- Title & Search ---------- */
.service-content {
  text-align: center;
}

.service-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.service-input {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service-input input {
  width: 350px;
  max-width: 90%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.service-input input:focus {
  border-color: var(--purple-medium);
}

.service-input button {
  background-color: var(--purple-medium);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-input button:hover {
  background-color: var(--accent);
  color: var(--gray-dark);
  transform: scale(1.05);
}

/* ---------- Service Filter Tabs ---------- */
.service-option {
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin-top: 10px;
}

.service-option ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-option ul li a {
  color: var(--blue-dark);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service-option ul li a:hover {
  background-color: var(--purple-medium);
  color: var(--white);
}

/* ---------- Card Grid ---------- */
.service-card-llist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

/* ---------- Card ---------- */
.service-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.12);
}

/* ---------- Card Content ---------- */
.service-title {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-dark);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 8px;
}

.service-btn {
  background-color: var(--purple-medium);
  color: var(--white);
  border: none;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
  background-color: var(--accent);
  color: var(--gray-dark);
}

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

/* Tablets (≤992px) */
@media screen and (max-width: 992px) {
  .service-input input {
    width: 300px;
  }

  .service-content h2 {
    font-size: 28px;
  }

  .service-card-llist {
    gap: 20px;
  }
}

/* Mobile Landscape (≤768px) */
@media screen and (max-width: 768px) {
  .service-card-llist {
    grid-template-columns: 1fr 1fr;
  }

  .service-content h2 {
    font-size: 24px;
  }

  .service-input {
    flex-direction: column;
    gap: 12px;
  }

  .service-input button {
    width: 150px;
  }

  .service-option ul {
    gap: 12px;
  }
}

/* Mobile Portrait (≤480px) */
@media screen and (max-width: 480px) {
  .service-card-llist {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-btn {
    font-size: 14px;
    padding: 10px;
  }

  .service-input input {
    width: 100%;
  }

  .service-input button {
    width: 100%;
  }

  .service-option ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* request service */
/* === SECTION WRAPPER === */
.request-section {
  padding: 60px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.request-container {
  width: 100%;
  max-width: 1250px;
  display: flex;
  flex-direction: column;
  animation: fadeIn 1s ease-in-out;
}

/* === CONTENT WRAPPER === */
.request-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 40px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

/* === LEFT SIDE === */
.form-left {
  flex: 1;
  padding: 70px 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.form-left h4 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.form-left h4 i {
  color: #00aaff;
  margin-right: 10px;
}

.form-left p {
  font-size: 18px;
  color: #000000;
  margin-bottom: 50px;
  line-height: 1.8;
  max-width: 90%;
}

/* === FORM STYLING === */
.service-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  flex: 1;
}

/*............Job Description Page..............*/
/* Job Description Container */
.job-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  background-color: red;
}

.job-card {
  margin-top: 10px;
}

/* Titles */
.section-title,
.title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

/* Job Details stacked layout */
.job-details-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.job-item {
  font-size: 16px;
  color: #444;
}

.job-item .label {
  font-weight: 600;
  color: #222;
}

/* Buttons */
.button-area {
  margin: 25px 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  width: 400px;
}

.btn {
  padding: 12px 20px;
  background: #ffb703;
  color: var(--white);
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--blue-dark);
}

/* Job Summary */
.job-summary {
  margin-top: 15px;
  line-height: 1.7;
  font-size: 16px;
  color: var(--blue-teal);
}

/* Recommend Section */
.recommend-box {
  margin-top: 40px;
  padding: 20px 30px;
  background-color: #0c2b4e;
  border-radius: 15px;
}
.Jobhead {
  color: white;
}

/* ✅ FIXED FORM GRID (2 Columns) */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
  margin-top: 25px;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: white;
}

.form-group input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 5px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.form-group input:focus {
  border-color: var(--accent);
}

/* Submit Button */
.submit-btn {
  margin-top: 25px;
  background: #ffb703;
  color: var(--white);
  padding: 14px 40px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* -------------------- */
/* ✅ RESPONSIVE FIXES  */
/* -------------------- */

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn {
    width: 100%;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .section-title,
  .title {
    font-size: 22px;
  }

  .submit-btn,
  .btn {
    width: 100%;
  }
}

/*...........Apply Now.........*/
.apply {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 30px 0;
  /* background-color: var(--blue-dark); */
}

.note {
  font-size: 14px;
  opacity: 0.8;
  color: var(--purple-light);
}

form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.input-box {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 25px;
}

label {
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

/* === INPUT STYLING === */
input,
select,
textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #3a3f50;
  padding: 10px 0;
  color: #000000;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-bottom: 1px solid #00aaff;
}

textarea {
  resize: none;
}

/* === CHECKBOXES === */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  line-height: 1.5;
}

.form-checkbox input {
  margin-right: 10px;
  accent-color: #00aaff;
  transform: scale(1.1);
  margin-top: 4px;
}

.form-checkbox label {
  font-size: 14px;
  color: #000000;
}

/* === PRIVACY NOTE === */
.privacy-note {
  font-size: 13px;
  color: #8f8f8f;
  margin-top: 20px;
}

.privacy-note a {
  color: #00aaff;
  text-decoration: underline;
}

.mandatory {
  font-size: 13px;
  color: #777;
  margin-top: 5px;
}

/* === BUTTON === */
.send-btn {
  background: #1f273a;
  border: 1px solid #00aaff;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 30px;
  padding: 12px 40px;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
}

.send-btn:hover {
  background: #00aaff;
  color: #fff;
  transform: translateY(-3px);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Tablets */
@media (max-width: 992px) {
  .request-section {
    padding: 40px 40px;
  }

  .request-content {
    flex-direction: column;
    align-items: center;
  }

  .form-left {
    padding: 50px 30px;
    width: 100%;
  }

  .form-right {
    display: none;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-left p {
    max-width: 100%;
  }
}

/* Mobile Devices (<=768px) */
@media (max-width: 768px) {
  .request-section {
    padding: 30px 25px;
  }

  .form-left {
    padding: 40px 25px;
    border-radius: 12px;
  }

  .form-left h4 {
    font-size: 14px;
  }

  .form-left p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  label {
    font-size: 13px;
  }

  input,
  select,
  textarea {
    font-size: 14px;
  }

  .send-btn {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }
}

/* Small Phones (<=480px) */
@media screen and (max-width: 480px) {
  .request-section {
    padding: 20px;
  }

  .form-left {
    padding: 30px 20px;
  }

  .form-left h4 {
    font-size: 13px;
  }

  .form-left p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .form-row {
    gap: 15px;
  }

  input,
  select,
  textarea {
    font-size: 13px;
  }

  .send-btn {
    font-size: 14px;
    padding: 10px;
  }
}

label {
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--white);
}

input,
select {
  padding: 12px;
  border: 1px solid var(--purple-medium);
  border-radius: 4px;
  background: var(--white);
  color: var(--gray-dark);
  font-size: 15px;
}

input::placeholder {
  color: var(--gray-dark);
}

.small {
  font-size: 12px;
  margin-top: 5px;
  color: var(--purple-light);
}

.submit-btn {
  width: 160px;
  padding: 12px;
  background: var(--accent);
  color: var(--gray-dark);
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.submit-btn:hover {
  background: var(--purple-medium);
  color: var(--white);
}

/* ✅ Responsive Design */
@media screen and (max-width: 768px) {
  .input-box {
    flex: 1 1 100%;
  }

  .submit-btn {
    width: 100%;
  }
}

/* ======================
service card info
=======================
===== Banner ===== */
.service-banner {
  position: relative;
  width: 100%;
  height: 10vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 43, 78, 0.6);
}

.service-banner .banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.service-banner h1 {
  font-size: 40px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===== Service Details ===== */
.service-details {
  padding: 80px 20px;
  background-color: var(--white);
  color: var(--blue-dark);
}

.service-details h2 {
  font-size: 32px;
  color: var(--blue-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 16px;
  color: var(--blue-teal);
  line-height: 28px;
  margin-bottom: 20px;
}

/* ===== Requirements ===== */
.service-requirements {
  background-color: var(--blue-light);
  padding: 80px 20px;
}

.service-requirements h2 {
  font-size: 30px;
  color: var(--blue-dark);
  margin-bottom: 30px;
  text-align: center;
}

.service-requirements ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.service-requirements li {
  font-size: 16px;
  color: var(--blue-teal);
  padding: 12px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-requirements i {
  color: var(--accent);
  font-size: 18px;
  margin-right: 10px;
}

/* ===== Other Services ===== */
.other-services {
  padding: 100px 20px;
  background-color: var(--blue-dark);
  color: var(--white);
  text-align: center;
}

.other-services h2 {
  font-size: 34px;
  color: var(--white);
  margin-bottom: 50px;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 20px;
  margin: 20px 0 10px;
  color: var(--white);
}

.view-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 25px;
  background-color: var(--accent);
  color: var(--blue-dark);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background-color: var(--white);
  color: var(--purple-dark);
}

/* ===== Contact Button ===== */
.contact-section {
  margin-top: 60px;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 992px) {
  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-banner h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 576px) {
  .other-services-grid {
    grid-template-columns: 1fr;
  }

  .service-banner {
    height: 25vh;
  }

  .service-banner h1 {
    font-size: 26px;
  }

  .service-details h2,
  .service-requirements h2,
  .other-services h2 {
    font-size: 26px;
  }
}
/* =========================================================
   GLOBAL / RESET
========================================================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
}

.section-title .accent {
  color: var(--accent);
  font-size: 32px;
  font-weight: 900;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-about {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(12, 43, 78, 0.7), rgba(12, 43, 78, 0.9));
}

.hero-content {
  position: absolute;
  bottom: 45%;
  width: 100%;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

/* =========================================================
   ABOUT INFO SECTION
========================================================= */

.about-info .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-info p {
  font-size: 16px;
  color: var(--blue-medium);
}

.about-video iframe {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  margin-top: 40px;
  box-shadow: 0px 6px 25px rgba(12, 43, 78, 0.18);
}

/* =========================================================
   WHY IT-WINGS
========================================================= */

.why-wings .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.why-content .badge {
  background: var(--purple-soft);
  color: var(--purple-dark);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.why-content p {
  color: var(--blue-medium);
}

.why-list {
  margin-top: 20px;
  list-style: none;
}

.why-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: var(--blue-teal);
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.why-image img {
  border-radius: 14px;
  box-shadow: 0px 10px 30px rgba(12, 43, 78, 0.15);
}

/* =========================================================
   OUR STRATEGY
========================================================= */

.strategy-box {
  background: var(--blue-medium);
  color: var(--white);
  padding: 40px;
  border-radius: 18px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0px 10px 25px rgba(12, 43, 78, 0.25);
}

.strategy-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--accent);
}

/* =========================================================
   EXPERIENCE SECTION
========================================================= */

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.exp-stats {
  display: grid;
  gap: 20px;
}

.exp-stats div {
  background: var(--blue-light);
  padding: 18px;
  border-radius: 12px;
  font-size: 18px;
  box-shadow: 0px 8px 20px rgba(12, 43, 78, 0.08);
  color: var(--blue-medium);
}

.exp-stats strong {
  font-size: 34px;
  color: var(--accent);
}

.exp-text .badge {
  background: var(--purple-soft);
  color: var(--purple-dark);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

.exp-text p {
  color: var(--blue-teal);
}

/* =========================================================
   TEAM SECTION
========================================================= */

.team-grid-main {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.team-founder img {
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0px 8px 25px rgba(12, 43, 78, 0.25);
}

.team-founder h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--blue-dark);
}

.team-members {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.member {
  background: var(--gray-light);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0px 6px 15px rgba(12, 43, 78, 0.1);
  color: var(--blue-medium);
}

.manage-btn {
  margin-top: 25px;
  padding: 10px 22px;
  border: 1px solid var(--blue-medium);
  background: var(--white);
  color: var(--blue-medium);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

/* =========================================================
   CTA SECTION
========================================================= */

.cta {
  background: var(--blue-dark);
  text-align: center;
  padding: 90px 20px;
  color: var(--white);
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--white);
}

.cta p {
  margin-bottom: 25px;
  font-size: 16px;
  color: var(--blue-light);
}

.cta-btn {
  display: inline-block;
  padding: 12px 26px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #e6a403;
}

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

/* Tablets */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .about-info .about-grid,
  .why-wings .why-grid,
  .exp-grid,
  .team-grid-main {
    grid-template-columns: 1fr;
  }

  .team-members {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

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

  .about-video iframe {
    height: 260px;
  }

  .cta h2 {
    font-size: 26px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-about {
    height: 260px;
  }

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

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

  .cta-btn {
    width: 100%;
  }
}

/* ===== Service Requirements Section (Enhanced) ===== */
.service-requirements {
  background-color: var(--blue-light);
  padding: 100px 20px;
}

.requirements-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* ----- Left Side (List) ----- */
.requirements-list {
  flex: 1;
  min-width: 320px;
}

.requirements-list h2 {
  font-size: 32px;
  color: var(--blue-dark);
  margin-bottom: 25px;
  font-weight: 700;
}

.requirements-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-list li {
  font-size: 16px;
  color: var(--blue-teal);
  padding: 14px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.requirements-list i {
  color: var(--accent);
  font-size: 18px;
  margin-right: 12px;
}

/* ----- Right Side (Visual Block) ----- */
.requirements-visual {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.requirements-visual figure {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.requirements-visual figure:hover {
  transform: translateY(-5px);
}

.requirements-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ----- Quote Box ----- */
.quote-box {
  background-color: var(--white);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  padding: 25px 30px;
  color: var(--blue-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

.quote-box p {
  font-size: 16px;
  line-height: 26px;
  color: var(--blue-teal);
  margin-bottom: 20px;
  font-style: italic;
}

/* ----- Call to Action Button ----- */
.cta-btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--blue-dark);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--purple-dark);
  color: var(--white);
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 992px) {
  .requirements-wrapper {
    gap: 40px;
  }

  .requirements-list h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .requirements-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .requirements-visual figure {
    max-width: 400px;
  }

  .quote-box {
    padding: 20px;
  }

  .cta-btn {
    padding: 10px 25px;
  }
}

@media screen and (max-width: 480px) {
  .requirements-list h2 {
    font-size: 24px;
  }

  .quote-box p {
    font-size: 14px;
  }
}

/* ===== Contact Page ===== */
.contact-details-section {
  padding: 100px 20px;
  background-color: var(--blue-light);
}

.contact-details-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* ===== Left: Info ===== */
.contact-info {
  flex: 1;
  min-width: 320px;
}

.contact-info h2 {
  font-size: 36px;
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: var(--blue-teal);
  line-height: 28px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 22px;
  color: var(--accent);
  margin-top: 3px;
}

.info-item h4 {
  color: var(--blue-dark);
  font-size: 18px;
  margin-bottom: 3px;
}

.info-item p,
.info-item a {
  color: var(--blue-teal);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--accent);
}

/* Social Icons */
.social-links {
  margin-top: 30px;
}

.social-links a {
  display: inline-block;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--blue-dark);
}

/* ===== Right: Form ===== */
.contact-form-box {
  flex: 1;
  min-width: 350px;
  /* background-color: var(--white); */
  border-radius: 12px;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
  padding: 40px 30px;
}

.contact-form-box h2 {
  font-size: 28px;
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row input,
textarea {
  flex: 1;
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  color: var(--gray-dark);
  background-color: var(--blue-light);
  transition: all 0.3s ease;
}

.form-row input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.4);
  outline: none;
}

.submit-btn {
  background-color: var(--accent);
  color: var(--blue-dark);
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--blue-dark);
  color: var(--white);
}

/* ===== Map Section ===== */
.contact-map-section {
  position: relative;
}

.contact-map-section iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 43, 78, 0.5);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.map-overlay h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.map-overlay p {
  font-size: 16px;
  max-width: 600px;
  color: var(--blue-light);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .contact-details-wrapper {
    flex-direction: column;
  }

  .contact-form-box {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-info h2 {
    font-size: 28px;
  }

  .contact-form-box {
    padding: 25px 20px;
  }

  .submit-btn {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .contact-details-section {
    padding: 40px 0px;
  }

  .contact-details-section {
    padding: 70px 10px;
  }
}

:root {
  --blueDark: #0c2b4e;
  --accent: #ffb703;
  --blueLight: #f4f4f4;
  --grayDark: #222222;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  margin: auto;
}

/* ===== HERO SECTION ===== */
.service-hero {
  background: var(--blueDark);
  padding: 70px 0;
  color: white;
  text-align: center;
}

.service-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.service-hero p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.8;
}

/* ===== SERVICE DETAILS ===== */
.service-details {
  padding: 70px 0;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ===== REQUIREMENTS ===== */
.service-requirements {
  background: var(--blueLight);
  padding: 80px 0;
}

.requirements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.requirements-list ul li {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}

.requirements-list i {
  color: var(--accent);
}

/* Visual Block */
.requirements-visual figure img {
  width: 100%;
  border-radius: 14px;
}

.quote-box {
  background: white;
  margin-top: 20px;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  background: var(--accent);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #e59b00;
}

/* ===== OTHER SERVICES ===== */
.other-services {
  padding: 80px 0;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
}

.view-btn {
  display: inline-block;
  margin-top: 12px;
  color: var(--blueDark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .service-details-grid,
  .requirements-wrapper {
    grid-template-columns: 1fr;
  }

  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .service-hero h1 {
    font-size: 30px;
  }

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

/* PAGINATION WRAPPER */
.pagination {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* PAGE BUTTON */
.page-btn {
  padding: 10px 16px;
  background: #f1f1f1;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

/* HOVER */
.page-btn:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
  transform: translateY(-2px);
}

/* ACTIVE PAGE NUMBER */
.page-btn.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 480px) {
  .page-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  .pagination {
    gap: 8px;
  }
}

/* TABLET RESPONSIVE */
@media (max-width: 768px) {
  .page-btn {
    padding: 9px 14px;
    font-size: 15px;
  }
}

.service-card h3 {
  color: var(--blue-dark);
}

.uppper-up-btn a {
  background-color: var(--blue-dark);
  padding: 13px 15px;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  position: fixed;
  right: 43px;
  bottom: 35px;
  display: none;
  /* hidden initially */
  z-index: 99999;
  transition: all 0.3s ease;
  scroll-behavior: smooth;
}

/* Hover effect: lift + shadow + background */
.uppper-up-btn a:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Arrow spins continuously on hover */
.uppper-up-btn a:hover i {
  animation: spin 1s linear infinite;
}

/* arrow top */
@media screen and (max-width: 480px) {
  .uppper-up-btn a {
    background-color: var(--blue-dark);
    padding: 8px 12px;
    bottom: 100px;
  }
}

/* ================================
   JOB PAGE BANNER
================================ */

.job-banner {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for readability */
.job-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.job-banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

/* Tablets */
@media (max-width: 992px) {
  .job-banner {
    height: 300px;
  }
}

@media screen and (max-width: 576px) {
  .job-banner {
    background-image: none !important;
    background-position: center;
  }

  .job-banner .banner-content {
    margin-top: 40px;
  }
}

/* ================================
   JOB DESCRIPTION SECTION
================================ */

.job-description-section {
  padding: 60px 0;
  background: #f7f9fc;
}

.job-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.job-details {
  flex: 2;
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-top: 15px;
  margin-bottom: 18px;
}

/* JOB DETAILS GRID */
.job-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 15px;
  column-gap: 20px;
  margin-bottom: 25px;
}

.job-item {
  font-size: 15px;
  color: var(--blue-medium);
  background: #f1f5f9;
  padding: 12px 14px;
  border-radius: 10px;
  border-left: 4px solid var(--blue-medium);
}

.job-item span:first-child {
  font-weight: 700;
  color: var(--blue-medium);
}

/* JOB SUMMARY */
.job-summary {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  background: #fff;
  margin-top: 20px;
}

/* ================================
   APPLY BOX (RIGHT COLUMN)
================================ */

.apply-box {
  flex: 1;
  position: sticky;
  top: 80px;
}

.apply-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.apply-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.apply-card p {
  color: #666;
  margin-bottom: 20px;
}

/* APPLY BUTTON */
.apply-btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s ease;
  text-decoration: none;
}

.apply-btn:hover {
  background: #0f5ca7;
  color: var(--white);
  transform: translateY(-2px);
}

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

/* LARGE TABLETS */
@media (max-width: 992px) {
  .job-content-wrapper {
    flex-direction: column;
  }

  .apply-box {
    width: 100%;
    position: relative;
    top: 0;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .job-details {
    padding: 25px;
  }

  .job-details-grid {
    grid-template-columns: 1fr;
  }

  .apply-card {
    padding: 25px;
  }

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

  .job-item {
    font-size: 14px;
  }

  .apply-btn {
    width: 100%;
  }
}

/* SMALL MOBILE */
@media (max-width: 420px) {
  .job-details {
    padding: 20px;
    border-radius: 12px;
  }

  .job-item {
    padding: 10px;
    border-radius: 8px;
  }

  .apply-card {
    border-radius: 14px;
  }
}

/* ===========================
APPLY FORM — CONTAINER CARD =========================== */
.apply {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-top: 0px;
  /* max-width: 900px; */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.apply h2 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #222;
}

.apply .note {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

/* ===========================
   FORM ROWS & INPUT BOXES
   =========================== */

#applyForm .row {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}

#applyForm .input-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#applyForm label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

#applyForm input,
#applyForm select {
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
  font-size: 15px;
  outline: none;
  background: #fdfdfd;
  transition: all 0.25s ease-in-out;
}

#applyForm input:focus,
#applyForm select:focus {
  border-color: #2980b9;
  background: #fff;
  box-shadow: 0 0 6px rgba(41, 128, 185, 0.3);
}

#applyForm small {
  margin-top: 4px;
  font-size: 12px;
  color: #888;
}

/* ===========================
   SUBMIT BUTTON
   =========================== */

.submit-btn {
  background-color: var(--blue-dark);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 17px;
  border: none;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #145a96, #0f426d);
  border: 2px solid var(--accent);
}

/* ===========================
   RESPONSIVE — TABLET
   =========================== */

@media (max-width: 1024px) {
  .apply {
    padding: 35px 30px;
  }

  #applyForm .row {
    gap: 20px;
  }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */

@media (max-width: 768px) {
  .apply {
    padding: 30px 22px;
  }

  #applyForm .row {
    flex-direction: column;
    gap: 15px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 14px 25px;
  }
}

/* ===========================
   RESPONSIVE — SMALL MOBILE
   =========================== */

@media (max-width: 480px) {
  .apply {
    padding: 25px 18px;
    border-radius: 14px;
  }

  apply h2 {
    font-size: 24px;
  }

  #applyForm input,
  #applyForm select {
    padding: 12px 12px;
    font-size: 14px;
    border-radius: 8px;
  }

  .submit-btn {
    font-size: 15px;
    padding: 12px 20px;
  }
}

/* =======================
   CONTACT PAGE STYLING
======================= */

.contact-header {
  text-align: center;
  padding: 80px 20px;
  background: var(--blueDark);
  color: white;
}

.contact-header h1 {
  font-size: 42px;
  font-weight: bold;
}

.contact-header p {
  font-size: 16px;
  max-width: 550px;
  margin: 15px auto;
  opacity: 0.9;
}

.contact-header .cta-btn {
  background: var(--accent);
  padding: 12px 30px;
  color: white;
  border-radius: 30px;
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
  transition: 0.3s;
}

.contact-header .cta-btn:hover {
  background: #e39c03;
}

/* Contact Info Section */
.contact-info-section {
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.contact-card {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  color: var(--accent);
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--blueDark);
}

.contact-card p a {
  color: #444;
  font-weight: bold;
}

.contact-card span {
  font-size: 13px;
  color: gray;
}

/* Social Section */
.contact-social {
  text-align: center;
  padding: 60px 20px;
  background: var(--blueLight);
}

.contact-social h2 {
  color: var(--blueDark);
  margin-bottom: 20px;
  font-size: 28px;
}

.social-links-large a {
  margin: 0 12px;
  font-size: 28px;
  color: var(--blueDark);
  transition: 0.3s;
}

.social-links-large a:hover {
  color: var(--accent);
}

/* Map Section */
.contact-map-section {
  position: relative;
}

.contact-map-section .map-overlay {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

.contact-map-section h3 {
  font-size: 24px;
}

.service-option ul li a {
  cursor: pointer;
}

.service-option ul li a.active {
  background-color: var(--purple-medium);
  color: var(--white);
}

/* ============================
   JOIN OUR TEAM SECTION
============================ */

.join-team-section {
  background: var(--blueLight);
  padding: 80px 0;
}

.join-team-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.join-text {
  flex: 1;
  min-width: 300px;
}

.join-text h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--blueDark);
  margin-bottom: 15px;
}

.join-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 500px;
}

/* Benefits List */
.join-benefits {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.join-benefits li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.join-benefits li i {
  color: var(--accent);
  font-size: 18px;
}

/* CTA Button */
.join-btn {
  display: inline-block;
  background: var(--accent);
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  margin-top: 20px;
  transition: 0.3s;
}

.join-btn:hover {
  background: #e39c03;
  transform: translateY(-3px);
}

/* Right Image */
.join-image {
  flex: 1;
  min-width: 280px;
}

.join-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.join-image img:hover {
  transform: scale(1.03);
}

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

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
  .join-text h2 {
    font-size: 30px;
  }

  .join-benefits li {
    font-size: 14px;
  }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
  .join-team-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .join-text p {
    max-width: 100%;
  }

  .join-image img {
    max-width: 500px;
    margin: 20px auto 0;
  }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
  .join-text h2 {
    font-size: 26px;
  }

  .join-text p {
    font-size: 14px;
  }

  .join-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
  .join-text h2 {
    font-size: 22px;
  }

  .join-benefits li {
    font-size: 13px;
  }

  .join-image img {
    border-radius: 15px;
  }
}

/* education */
/* =============================
   EDUCATION SYSTEM SECTION
============================= */

.education-system-section {
  background: white;
  padding: 80px 0;
}

.edu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  flex-wrap: wrap;
}

/* LEFT TEXT */
.edu-content {
  flex: 1;
  min-width: 300px;
}

.edu-content h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--blueDark);
  margin-bottom: 15px;
}

.edu-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 22px;
  line-height: 1.6;
  max-width: 500px;
}

/* FEATURES */
.edu-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.edu-features li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.edu-features li i {
  color: var(--accent);
  font-size: 18px;
}

/* CTA BUTTON */
.edu-btn {
  display: inline-block;
  background: var(--accent);
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.edu-btn:hover {
  background: #e39c03;
  transform: translateY(-3px);
}

/* RIGHT IMAGE */
.edu-image {
  flex: 1;
  min-width: 300px;
}

.edu-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.edu-image img:hover {
  transform: scale(1.03);
}

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

@media (max-width: 1024px) {
  .edu-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .edu-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .edu-content p,
  .edu-features {
    max-width: 100%;
  }

  .edu-image img {
    max-width: 500px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .edu-content h2 {
    font-size: 26px;
  }

  .edu-btn {
    padding: 10px 24px;
    font-size: 14px;
  }

  .edu-features li {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .edu-content h2 {
    font-size: 22px;
  }
}

.social-contact-section {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

/* ================================
   Floating Contact Button (Fixed)
================================ */

/* Main round trigger */
.contact-trigger {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ff9d28;
  color: #000;

  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  box-shadow: 0 8px 18px rgba(255, 157, 40, 0.5);
  transition: 0.3s ease;
  font-size: 26px;

  z-index: 9999;
  animation: shake 2.3s ease-in-out infinite;
}

.contact-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 157, 40, 0.9);
}

/* ================================
   Popup
================================ */
.contact-popup {
  list-style: none;
  position: fixed;
  bottom: 160px; /* Appears above trigger */
  right: 25px;
  padding: 12px 14px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 12px;

  display: none;
  flex-direction: column;
  gap: 14px;

  z-index: 9998;
  animation: fadeUp 0.35s ease forwards;
}

/* Popup icons */
.contact-popup li a {
  color: #ff9d28;
  font-size: 24px;
  transition: 0.3s ease;
}

.contact-popup li a figure {
  height: 30px;
  width: 30px;
}

.contact-popup li a:hover {
  transform: scale(1.25);
  text-shadow: 0 0 12px rgba(255, 157, 40, 0.9);
}

/* ================================
   Animations
================================ */
@keyframes shake {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  75% {
    transform: translateY(-2px);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   Mobile Adjustments
================================ */
@media (max-width: 480px) {
  .contact-trigger {
    bottom: 80px;
    right: 15px;
    width: 52px;
    height: 52px;
  }

  .contact-popup {
    right: 18px;
    bottom: 145px;
    padding: 10px 12px;
  }

  .contact-popup li a {
    font-size: 22px;
  }
}

/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 20px; /* FIX: remove the 20px */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 20px;
  overflow-y: hidden; /* FIX: allow scroll on small screens */
}

/* POPUP BOX */
.popup-container {
  background: #ffffff;
  width: 90%;
  max-width: 450px;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  animation: popupFade 0.4s ease;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7e6, #ffe0b2, #ffcc80, #ffb74d);
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 2px;
  right: 18px;
  font-size: 35px;
  cursor: pointer;
  font-weight: bold;
}

/* SLIDER */
.popup-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.popup-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
  /* position: relative; */
  top: 0;
}

.popup-slide h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--blueDark);
}

.popup-slide p {
  color: #444;
  margin: 10px 0 20px;
}

/* FORM FIELDS */
.popup-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

/* BUTTON */
.popup-form button,
.popup-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.popup-btn:hover,
.popup-form button:hover {
  background: #e39a00;
}

/* DOTS */
.popup-dots {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* Animation */
@keyframes popupFade {
  from {
    transform: scale(1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .popup-container {
    padding: 20px;
    border-radius: 15px;
  }

  .popup-slide h2 {
    font-size: 20px;
  }
}
/* ===============================
   PRIVACY / POLICY PAGE STYLES
   =============================== */

.policy-page {
  padding-top: 120px; /* desktop header offset */
  padding-bottom: 60px;
  background-color: #ffffff;
}

.policy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.policy-page h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.policy-page .updated {
  color: #777;
  margin-bottom: 30px;
  font-size: 14px;
}

.policy-page h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 28px;
}

.policy-page h3 {
  margin-top: 30px;
  font-size: 20px;
}

.policy-page h4 {
  margin-top: 20px;
  font-size: 18px;
}

.policy-page p {
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 16px;
}

.policy-page ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-page li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* ===============================
   TABLET RESPONSIVE (≤ 1024px)
   =============================== */

@media (max-width: 1024px) {
  .policy-page {
    padding-top: 100px;
  }

  .policy-page h1 {
    font-size: 32px;
  }

  .policy-page h2 {
    font-size: 26px;
  }
}

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

@media (max-width: 768px) {
  .policy-page {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .policy-container {
    padding: 0 16px;
  }

  .policy-page h1 {
    font-size: 28px;
  }

  .policy-page h2 {
    font-size: 22px;
    margin-top: 40px;
  }

  .policy-page h3 {
    font-size: 18px;
  }

  .policy-page h4 {
    font-size: 16px;
  }

  .policy-page p,
  .policy-page li {
    font-size: 15px;
  }
}

/* ===============================
   SMALL MOBILE (≤ 480px)
   =============================== */

@media (max-width: 480px) {
  .policy-page {
    padding-top: 80px;
  }

  .policy-page h1 {
    font-size: 24px;
  }

  .policy-page h2 {
    font-size: 20px;
  }

  .policy-page p,
  .policy-page li {
    font-size: 14px;
  }
}

/* ===============================
   LEGAL PAGES (TERMS / PRIVACY)
   CONFLICT-FREE & RESPONSIVE
   =============================== */

.legal-page {
  padding-top: 120px; /* desktop header offset */
  padding-bottom: 60px;
  background-color: #ffffff;
}

.legal-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------------------
   Typography
-------------------------------- */

.legal-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.legal-heading {
  font-size: 28px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 15px;
}

.legal-subheading {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #333;
}

.legal-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-list li {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===============================
   TABLET (≤ 1024px)
   =============================== */

@media (max-width: 1024px) {
  .legal-page {
    padding-top: 100px;
  }

  .legal-title {
    font-size: 32px;
  }

  .legal-heading {
    font-size: 26px;
  }
}

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

@media (max-width: 768px) {
  .legal-page {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .legal-wrapper {
    padding: 0 16px;
  }

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

  .legal-heading {
    font-size: 22px;
    margin-top: 40px;
  }

  .legal-subheading {
    font-size: 18px;
  }

  .legal-text,
  .legal-list li {
    font-size: 15px;
  }
}

/* ===============================
   SMALL MOBILE (≤ 480px)
   =============================== */

@media (max-width: 480px) {
  .legal-page {
    padding-top: 80px;
  }

  .legal-title {
    font-size: 24px;
  }

  .legal-heading {
    font-size: 20px;
  }

  .legal-text,
  .legal-list li {
    font-size: 14px;
  }
}

/* ================================
   WHO IS BEHIND IT-WINGS
================================ */

.team {
  padding: 80px 20px;
  background-color: #fff;
}

.team .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0c2b4e;
}

.team .accent {
  color: #ffb703;
  margin-right: 8px;
}

/* MAIN LAYOUT */
.team-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT SIDE */
.team-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* SUB TITLES */
.sub-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #1a3d64;
}

/* ================================
   FOUR PILLARS
================================ */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.pillar {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pillar img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

.pillar h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0c2b4e;
  margin-bottom: 5px;
}

.pillar p {
  font-size: 14px;
  color: #475569;
}

/* ================================
   QUOTE
================================ */

.team-quote {
  background: #0c2b4e;
  color: #fff;
  padding: 25px 30px;
  border-radius: 14px;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
}

/* ================================
   TEACHING EXPERTS
================================ */

.teaching-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.teacher {
  text-align: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.teacher:hover {
  transform: translateY(-5px);
}

.teacher img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.teacher h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0c2b4e;
  margin-bottom: 4px;
}

.teacher p {
  font-size: 13px;
  color: #64748b;
}

/* ================================
   CEO SECTION (RIGHT SIDE)
================================ */

.team-founder {
  background: #f8f9fa;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  position: sticky;
  top: 120px;
}

.team-founder img {
  width: 100%;
  max-width: 260px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.team-founder h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0c2b4e;
  margin-bottom: 6px;
}

.team-founder p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #ffb703;
  color: #ffb703;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ffb703;
  color: #0c2b4e;
}
/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .team-layout {
    grid-template-columns: 1fr;
  }

  .team-founder {
    position: relative;
    top: 0;
    margin-top: 40px;
  }

  .teaching-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

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

  .team .section-title {
    font-size: 26px;
  }
}

.banner-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 9999;
}

.banner-slider .owl-prev,
.banner-slider .owl-next {
  position: absolute;
  width: 56px;
  height: 56px;
  background-color: var(--accent) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px !important;
  color: #000 !important;
  cursor: pointer;
}

.banner-slider .owl-prev {
  left: 20px;
}
.banner-slider .owl-next {
  right: 20px;
}

.banner-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  gap: 10px;
}

.banner-slider .owl-dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

@media (max-width: 575px) {
  .banner-slider .owl-prev,
  .banner-slider .owl-next {
    display: none;
  }

  .banner-slider .owl-dots {
    bottom: 10px;
    gap: 15px;
  }

  .banner-slider .owl-dot {
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .banner-slider .owl-nav {
    top: 70% !important;
  }

  .banner-slider .owl-prev,
  .banner-slider .owl-next {
    width: 44px;
    height: 44px;
    font-size: 28px !important;
  }

  .banner-slider .owl-prev {
    left: 12px;
  }
  .banner-slider .owl-next {
    right: 12px;
  }

  .banner-slider .owl-dot {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .banner-slider .owl-nav {
    top: 55%;
  }

  .banner-slider .owl-prev,
  .banner-slider .owl-next {
    width: 50px;
    height: 50px;
    font-size: 34px !important;
  }

  .banner-slider .owl-prev {
    left: 16px;
  }
  .banner-slider .owl-next {
    right: 16px;
  }
}
