/* =========================================== */
/* PART 1 - ROOT + VARIABES + NAVY BLUE       */
/* ye is part ka kaam: poore site ke colors    */
/* =========================================== */

.logo-img {
    max-height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - Navy Premium Theme */
:root { 
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #0A2540;
  --accent-color: #0A2540;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors - Navy Theme */
:root {
  --nav-color: #e5eaee;
  --nav-hover-color: #0A2540;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #0A2540;
}

/* Color Presets */
.light-background {
  --background-color: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll + Performance base */
:root {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* =========================================== */
/* PART 2 - FORM + BUTTONS + PRELOADER        */
/* ye is part ka kaam: forms aur animations    */
/* =========================================== */

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Pulsating Play Button */
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% { transform: scale(0.6, 0.6); opacity: 1; }
  100% { transform: scale(1, 1); opacity: 0; }
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* =========================================== */
/* PART 3 - HEADER + NAV + ACTIVE LINE        */
/* ENHANCED - PROSANDOVAL STYLE               */
/* Mobile responsive same rahegi               */
/* =========================================== */

/* Global Header - Glassmorphism */
/* Header */
.header {
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(8px);
  padding: 18px 0;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sitename {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Desktop Menu Center */
@media (min-width: 1200px) {
  .navmenu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .navmenu ul {
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .navmenu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0 6px 0;
    text-decoration: none;
    position: relative;
  }
  
  .navmenu a:hover {
    color: #fff;
  }
  
  .navmenu a.active {
    color: #fff;
  }
  
  .navmenu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  }
}

/* Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
  }
  
  .navmenu ul {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: rgba(10, 37, 64, 0.98);
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    transition: 0.3s;
  }
  
  .mobile-nav-active .navmenu ul {
    right: 0;
  }
}

.nav-placeholder {
  width: 80px;
}
/* ======================================== */
/* DESKTOP NAVIGATION - CENTERED (PROSANDOVAL) */
/* ========================================== */

@media (min-width: 1200px) {
  .navmenu { 
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
  }
  
  .navmenu li { 
    position: relative; 
  }
  
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 8px 0;
  }
  
  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    padding: 0 0 8px 0;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  
  /* Hover Effect */
  .navmenu a:hover {
    color: #ffffff;
  }
  
  /* ACTIVE PAGE - White Underline */
  .navmenu > ul > li > a.active {
    color: #ffffff;
  }
  
  .navmenu > ul > li > a.active:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #ffffff;
    visibility: visible;
    width: 100%;
  }
  
  .navmenu > ul > li > a:hover:before {
    visibility: hidden;
    width: 0;
  }
  
  /* Dropdown */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 12px 0;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
    z-index: 99;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 220px;
  }
  
  .navmenu .dropdown ul li { min-width: 200px; }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 0;
    background: transparent;
  }
  
  .navmenu .dropdown ul a i { font-size: 12px; }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 25px;
  }
  
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: -12px;
    left: -100%;
    visibility: visible;
  }
  
  .navmenu .dropdown > a i {
    transition: transform 0.3s ease;
  }
  
  .navmenu .dropdown:hover > a i {
    transform: rotate(180deg);
  }
}

/* ========================================== */
/* MOBILE NAVIGATION - SAME AS BEFORE        */
/* ========================================== */

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 9999;
  }
  
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  
  .navmenu ul {
    display: none;
    list-style: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    padding: 80px 20px 30px;
    margin: 0;
    background: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(12px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    transition: 0.4s ease;
    z-index: 9998;
  }
  
  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 18px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    border-radius: 12px;
    margin: 4px 0;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }
  
  .navmenu .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0 10px 20px;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease-in-out;
    border-radius: 12px;
  }
  
  .navmenu .dropdown ul ul { background-color: rgba(255, 255, 255, 0.03); }
  .navmenu .dropdown > .dropdown-active { display: block; }
  
  .mobile-nav-active { overflow: hidden; }
  
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 32px;
    top: 20px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
  }
  
  .mobile-nav-active .navmenu ul {
    display: block;
    right: 0;
  }
  
  .mobile-nav-active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9997;
  }
}

@media (max-width: 768px) {
  .header .logo h1 {
    font-size: 20px;
  }
  
  .header .logo img {
    max-height: 30px;
  }
  
  .cta-btn {
    display: none;
  }
}

/* ========================================== */
/* HERO - N.JEY STYLE (Center Text)          */
/* Bilkul waisa hi jaise image mein tha      */
/* ========================================== */

.hero-njey {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background */
.hero-njey-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-njey-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-njey-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 37, 64, 0.75);
  z-index: 2;
}

/* Container */
.hero-njey-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-njey-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.hero-njey-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.hero-njey-highlight {
  color: #FF8C42;
  border-bottom: 3px solid #FF8C42;
  display: inline-block;
}

/* Description */
.hero-njey-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.hero-njey-btn {
  display: inline-block;
  background: transparent;
  color: #23035f;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 30px;
  border: 1.5px solid rgba(11, 2, 43, 0.5);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-njey-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-njey-title {
    font-size: 36px;
  }
  
  .hero-njey-desc {
    font-size: 14px;
    padding: 0 15px;
  }
  
  .hero-njey-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-njey-title {
    font-size: 28px;
  }
}

/* =========================================== */
/* PART 4 - FOOTER                            */
/* ye is part ka kaam: site ka footer         */
/* =========================================== */

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 3px;
  font-size: 13px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* =========================================== */
/* PART 5 - GLOBAL SECTIONS + ABOUT + STATS   */
/* ye is part ka kaam: common sections styling */
/* =========================================== */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}

/* About Section */
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/* Stats Section */
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/* =========================================== */
/* PART 6 - SERVICES + PORTFOLIO + TEAM       */
/* ye is part ka kaam: main content sections   */
/* =========================================== */

.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
}

.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services-2 .service-item:hover {
  border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/* =========================================== */
/* PART 7 - CONTACT + DETAILS + MODERN SECTIONS */
/* ye is part ka kaam: contact aur new sections */
/* =========================================== */

.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

.starter-section {
  /* Add your styles here */
}

/* New Modern Sections */
.hero-audit {
  padding: 80px 0;
}

.audit-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 35px -8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.audit-card:hover {
  transform: translateY(-5px);
}

.trusted-founder {
  padding: 80px 0;
}

.real-results {
  padding: 80px 0;
}

.result-card {
  background: var(--surface-color);
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.ai-search-ready {
  padding: 80px 0;
}

.our-services {
  padding: 80px 0;
}

.service-card {
  background: var(--surface-color);
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.location-industry {
  padding: 80px 0;
}

.process-pricing-faq {
  padding: 80px 0;
}

.process-card {
  background: var(--surface-color);
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.process-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.modern-faq {
  padding: 80px 0;
}

.faq-contact-box {
  background: var(--surface-color);
  border-radius: 28px;
  padding: 40px 30px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.faq-contact-box:hover {
  transform: translateY(-5px);
}

.faq-icon-wrapper {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.faq-icon-wrapper i {
  font-size: 32px;
  color: var(--accent-color);
}

.faq-contact-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.faq-contact-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.contact-item {
  gap: 12px;
  justify-content: center;
}

.contact-item i {
  font-size: 20px;
  color: var(--accent-color);
}

.contact-item span {
  color: var(--default-color);
  font-size: 16px;
}

.btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-chat:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: #fff;
  transform: translateY(-2px);
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #28a745;
}

.trust-badge i {
  font-size: 18px;
}

.modern-faq .accordion-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 20px !important;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.modern-faq .accordion-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.modern-faq .accordion-button::after {
  display: none !important;
}

.modern-faq .accordion-button {
  background: var(--surface-color);
  color: var(--heading-color);
  font-weight: 600;
  font-size: 16px;
  padding: 20px 24px;
  border-radius: 20px !important;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.modern-faq .accordion-button:not(.collapsed) {
  background: var(--surface-color);
  color: var(--accent-color);
  box-shadow: none;
}

.modern-faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-number {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
  min-width: 40px;
}

.question-text {
  flex: 1;
  text-align: left;
  padding: 0 15px;
}

.accordion-icon {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--accent-color);
  margin-left: auto;
}

.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(45deg);
}

.modern-faq .accordion-body {
  padding: 0 24px 24px 64px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  background: var(--surface-color);
}

@media (max-width: 992px) {
  .modern-faq .accordion-body {
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .faq-contact-box {
    padding: 30px 20px;
  }
  
  .modern-faq .accordion-button {
    padding: 16px 20px;
    font-size: 14px;
  }
  
  .faq-number {
    font-size: 14px;
    min-width: 32px;
  }
}
/* ========================================== */
/* ABOUT SECTION - NAVY BLUE + GOLD THEME    */
/* Premium, Elegant, Attractive              */
/* ========================================== */

.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fc 0%, #fff 100%);
}

/* Left Side Image */
.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
  transition: transform 0.4s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: #FFD700;
  border-left: 3px solid #FFD700;
}

.image-badge i {
  margin-right: 6px;
  color: #FFD700;
}

/* Right Side Content */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.12);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: #B8860B;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.about-badge i {
  font-size: 14px;
  color: #FFD700;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-italic {
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 215, 0, 0.08);
  padding: 12px 18px;
  border-radius: 12px;
  margin: 20px 0;
  border-left: 3px solid #FFD700;
}

.about-highlight i {
  font-size: 20px;
  color: #FFD700;
}

.about-highlight strong {
  color: #0A2540;
  font-size: 15px;
}

.about-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* Gold Button */
.about-gold-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #F5B041);
  color: #0A2540;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.about-gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  color: #0A2540;
}

/* Responsive */
@media (max-width: 992px) {
  .about {
    padding: 70px 0;
  }
  
  .about-title {
    font-size: 28px;
  }
  
  .content {
    margin-top: 30px;
    text-align: center;
  }
  
  .about-highlight {
    justify-content: center;
  }
  
  .image-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 24px;
  }
  
  .about-italic, .about-text {
    font-size: 14px;
  }
  
  .about-gold-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}
/* ========================================== */
/* FOUNDER SECTION - ENHANCED MODERN         */
/* Navy + Gold Theme | Professional Look     */
/* ========================================== */

.trusted-founder {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

/* Left Side - Image Wrapper */
.founder-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.founder-image-wrapper:hover {
  transform: translateY(-8px);
}

.founder-img {
  width: 100%;
  transition: transform 0.4s ease;
}

.founder-image-wrapper:hover .founder-img {
  transform: scale(1.02);
}

/* Image Glow Effect */
.image-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 2;
}

/* Certification Badge on Image */
.certification-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  border-left: 3px solid #FFD700;
}

.certification-badge i {
  font-size: 18px;
  color: #FFD700;
}

.certification-badge span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.image-caption {
  font-size: 13px;
  color: #777;
  font-style: italic;
}

/* Right Side Content */
.founder-content {
  padding-left: 30px;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.12);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: #B8860B;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.founder-badge i {
  font-size: 14px;
  color: #FFD700;
}

.founder-title {
  font-size: 38px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 25px;
  line-height: 1.2;
}

.title-highlight {
  color: #FFD700;
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, transparent);
}

/* Quote Box */
.founder-quote {
  background: rgba(255, 215, 0, 0.04);
  padding: 20px 25px;
  border-radius: 20px;
  margin-bottom: 25px;
  border-left: 4px solid #FFD700;
  position: relative;
}

.founder-quote i {
  font-size: 28px;
  color: #FFD700;
  opacity: 0.4;
  position: absolute;
  top: 15px;
  left: 20px;
}

.founder-quote p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0;
  padding-left: 35px;
}

.founder-quote p strong {
  color: #0A2540;
}

/* Certifications Row */
.cert-row {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-2px);
  border-color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.cert-item i {
  font-size: 18px;
  color: #FFD700;
}

.cert-item span {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

/* Founder Button */
.founder-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #FFD700;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid #FFD700;
}

.founder-btn i {
  transition: transform 0.3s ease;
}

.founder-btn:hover {
  color: #B8860B;
  border-bottom-color: #B8860B;
  gap: 15px;
}

.founder-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .trusted-founder {
    padding: 70px 0;
  }
  
  .founder-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }
  
  .founder-title {
    font-size: 32px;
  }
  
  .founder-quote {
    text-align: left;
  }
  
  .cert-row {
    justify-content: center;
  }
  
  .founder-btn {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .founder-title {
    font-size: 28px;
  }
  
  .founder-quote p {
    font-size: 14px;
    padding-left: 25px;
  }
  
  .founder-quote i {
    font-size: 20px;
    top: 12px;
    left: 12px;
  }
  
  .cert-item {
    padding: 6px 14px;
  }
  
  .cert-item span {
    font-size: 12px;
  }
}
/* Features Section - 4 Tabs in One Row */
.features .nav-tabs {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}

.features .nav-item {
  flex: 1;
  min-width: 180px;
  list-style: none;
}

.features .nav-link {
  background: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 25px 15px;
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  width: 100%;
  display: block;
}

.features .nav-link i {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
  color: #FFD700;
}

.features .nav-link h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
}

.features .nav-link.active {
  background: linear-gradient(135deg, #0A2540, #0B2B4A);
  border-color: #FFD700;
  color: #fff;
}

.features .nav-link.active i {
  color: #FFD700;
}

/* Responsive - Mobile pe 2 ya 1 column */
@media (max-width: 992px) {
  .features .nav-item {
    min-width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .features .nav-item {
    min-width: 100%;
    flex: 0 0 100%;
  }
}
/* ========================================== */
/* SECTION 1: LOCATION SERVICES              */
/* ========================================== */

.location-services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
}

/* Section 2: Industry Expertise */
.industry-expertise {
  padding: 100px 0;
  background: #ffffff;
}

/* Common Styles */
.section-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.12);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.section-title-main {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #0A2540;
  margin-bottom: 20px;
}

.gold-highlight {
  color: #FFD700;
  position: relative;
  display: inline-block;
}

.section-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* Location Chips Grid */
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.location-chip {
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #0A2540;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.location-chip i {
  color: #FFD700;
  font-size: 14px;
}

.location-chip:hover {
  transform: translateY(-3px);
  border-color: #FFD700;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.12);
}

/* Map Illustration */
.map-illustration {
  position: relative;
  background: linear-gradient(135deg, #0A2540, #0B2B4A);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.globe-icon i {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.08);
}

.location-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #FFD700;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.location-dot span {
  position: absolute;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 20px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.dot-usa { top: 25%; left: 20%; }
.dot-uk { top: 20%; left: 45%; }
.dot-germany { top: 35%; left: 55%; }
.dot-netherlands { top: 28%; left: 52%; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Industry List Modern */
.industry-list-modern {
  margin-bottom: 35px;
}

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

.industry-card-mini {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  background: #f8faff;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.industry-card-mini:hover {
  background: #ffffff;
  border-color: #FFD700;
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.industry-card-mini i {
  font-size: 28px;
  color: #FFD700;
}

.industry-card-mini h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 5px;
}

.industry-card-mini p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Industry Illustration */
.industry-illustration {
  position: relative;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  border-radius: 40px;
  padding: 50px;
  text-align: center;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-icon-wrapper i {
  font-size: 100px;
  color: rgba(10, 37, 64, 0.08);
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.floating-icons i {
  position: absolute;
  font-size: 28px;
  color: #FFD700;
  opacity: 0.6;
}

.floating-icons i:nth-child(1) { top: 15%; left: 15%; animation: float 4s ease-in-out infinite; }
.floating-icons i:nth-child(2) { top: 60%; left: 10%; animation: float 5s ease-in-out infinite 1s; }
.floating-icons i:nth-child(3) { top: 20%; right: 15%; animation: float 4.5s ease-in-out infinite 0.5s; }
.floating-icons i:nth-child(4) { bottom: 20%; right: 20%; animation: float 3.5s ease-in-out infinite 1.5s; }
.floating-icons i:nth-child(5) { top: 50%; right: 30%; animation: float 5.5s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Gold Outline Button */
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #0A2540;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  border: 2px solid #FFD700;
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background: #FFD700;
  color: #0A2540;
  gap: 15px;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .location-services, .industry-expertise {
    padding: 70px 0;
  }
  
  .section-title-main {
    font-size: 32px;
  }
  
  .industry-row {
    flex-direction: column;
  }
  
  .map-illustration, .industry-illustration {
    margin-top: 40px;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .section-title-main {
    font-size: 28px;
  }
  
  .location-grid {
    gap: 10px;
  }
  
  .location-chip {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  .floating-icons {
    display: none;
  }
}
/* ========================================== */
/* PRICING & RESOURCES SECTION               */
/* Same Style as Other Sections              */
/* ========================================== */

.pricing-resources {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
}

/* Cards Base */
.pricing-card,
.resources-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 35px;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover,
.resources-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 25px 45px -20px rgba(0, 0, 0, 0.15);
}

/* Card Icon */
.card-icon {
  width: 65px;
  height: 65px;
  background: rgba(10, 37, 64, 0.06);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.card-icon i {
  font-size: 32px;
  color: #0A2540;
  transition: all 0.3s ease;
}

.pricing-card:hover .card-icon,
.resources-card:hover .card-icon {
  background: #0A2540;
}

.pricing-card:hover .card-icon i,
.resources-card:hover .card-icon i {
  color: #FFD700;
}

/* Card Title */
.card-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #0A2540;
  margin-bottom: 15px;
}

/* Card Text */
.card-text {
  font-size: 15px;
  line-height: 1.65;
  color: #5a6e7a;
  margin-bottom: 25px;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(10, 37, 64, 0.05);
}

.feature-item i {
  font-size: 18px;
  color: #FFD700;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  font-size: 14px;
  color: #4a5b68;
  line-height: 1.5;
}

/* Resources List */
.resources-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 15px;
  background: #f8faff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.resource-item:hover {
  background: #ffffff;
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(8px);
}

.resource-item i {
  font-size: 28px;
  color: #FFD700;
  flex-shrink: 0;
}

.resource-item div {
  flex: 1;
}

.resource-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 4px;
}

.resource-item p {
  font-size: 13px;
  color: #6a7c8a;
  margin: 0;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0A2540;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #FFD700;
  color: #0A2540;
  gap: 15px;
  transform: translateY(-2px);
}

.btn-gold-outline-resource {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #0A2540;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
  text-decoration: none;
  border-bottom: 2px solid #FFD700;
  transition: all 0.3s ease;
}

.btn-gold-outline-resource i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-gold-outline-resource:hover {
  color: #FFD700;
  gap: 15px;
}

.btn-gold-outline-resource:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-resources {
    padding: 70px 0;
  }
  
  .pricing-card,
  .resources-card {
    padding: 30px 25px;
  }
  
  .card-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .pricing-resources {
    padding: 60px 0;
  }
  
  .card-title {
    font-size: 22px;
  }
  
  .resource-item {
    padding: 10px 12px;
  }
  
  .resource-item i {
    font-size: 22px;
  }
}
/* ========================================== */
/* SIMPLE CTA SECTION                        */
/* ========================================== */

.cta-simple {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2540 0%, #0B2B4A 100%);
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #0A2540;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  color: #0A2540;
}

.cta-btn-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFD700;
  transform: translateY(-2px);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-simple {
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .cta-description {
    font-size: 14px;
    padding: 0 15px;
  }
  
  .cta-buttons {
    gap: 12px;
  }
  
  .cta-btn-primary,
  .cta-btn-outline {
    padding: 10px 24px;
    font-size: 13px;
  }
}
/* Contact Page Styles */
.contact-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 120px 0;
}

.trust-line {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.form-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #0A2540;
  margin: 10px 0 5px;
}

.form-subtitle {
  color: #666;
  margin-bottom: 25px;
}

.form-label {
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 8px;
  display: block;
}

.form-control, .form-select {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  width: 100%;
}

.form-control:focus, .form-select:focus {
  border-color: #FFD700;
  outline: none;
}

.privacy-note {
  font-size: 12px;
  color: #888;
  text-align: center;
}

.privacy-note a {
  color: #FFD700;
}

.info-card {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
}

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

.why-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.why-item i {
  font-size: 24px;
  color: #FFD700;
  flex-shrink: 0;
}

.contact-details {
  margin-top: 20px;
}

.contact-detail-item {
  display: flex;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-detail-item i {
  font-size: 22px;
  color: #FFD700;
  flex-shrink: 0;
}

.small-text {
  font-size: 12px;
  color: #888;
}

.contact-faq {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .form-card, .info-card {
    padding: 25px;
  }
  .form-title {
    font-size: 24px;
  }
  .trust-line {
    gap: 10px;
    font-size: 12px;
  }
}
/* About Page Styles */
.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 120px 0;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.gold-text {
  color: #FFD700;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: #FFD700;
  color: #0A2540;
}

.stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #FFD700;
  display: block;
}

.country-badge {
  display: inline-block;
  background: #f8faff;
  padding: 8px 20px;
  border-radius: 40px;
  margin: 0 8px;
  font-weight: 500;
}

.mission-card, .vision-card {
  background: #fff;
  padding: 40px;
  border-radius: 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.05);
}

.mission-card i, .vision-card i {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
}

.service-card-small {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.service-card-small i {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 15px;
}

.service-card-small:hover {
  transform: translateY(-5px);
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
}

.value-card i {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 15px;
}

.award-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

.award-card i {
  font-size: 32px;
  color: #FFD700;
  margin-bottom: 10px;
}

.bottom-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2540, #0B2B4A);
}

.cta-trust {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .stat-number { font-size: 36px; }
  .mission-card, .vision-card { padding: 25px; }
}
/* About Page Styles - Icons Gold, Rest Navy Blue */
.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 120px 0;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.gold-text {
  color: #FFD700;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 800px;
  margin: 0 auto;
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn-outline-gold:hover {
  border-color: #FFD700;
  background: rgba(255,215,0,0.1);
  transform: translateY(-3px);
}

/* Stats Cards */
.stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-bottom: 3px solid #0A2540;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-bottom-color: #FFD700;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #0A2540;
  display: block;
}

.stat-card p {
  color: #0A2540;
  font-weight: 500;
}

/* Country Badges */
.country-badge {
  display: inline-block;
  background: #f0f4f9;
  padding: 8px 20px;
  border-radius: 40px;
  margin: 0 8px;
  font-weight: 500;
  color: #0A2540;
  transition: 0.3s;
}

.country-badge:hover {
  background: #0A2540;
  color: #fff;
  transform: translateY(-2px);
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
  background: #fff;
  padding: 40px;
  border-radius: 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.05);
  border-top: 4px solid #0A2540;
  transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-5px);
  border-top-color: #FFD700;
}

/* ICONS GOLD */
.mission-card i, .vision-card i {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
}

.mission-card h3, .vision-card h3 {
  color: #0A2540;
  font-weight: 700;
}

/* Service Cards */
.service-card-small {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(10,37,64,0.08);
}

/* ICONS GOLD */
.service-card-small i {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 15px;
}

.service-card-small h4 {
  color: #0A2540;
  font-weight: 700;
}

.service-card-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
  border-color: #0A2540;
}

/* Value Cards */
.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border-left: 3px solid #0A2540;
}

/* ICONS GOLD */
.value-card i {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 15px;
}

.value-card h4 {
  color: #0A2540;
  font-weight: 700;
}

.value-card:hover {
  transform: translateX(5px);
  border-left-color: #FFD700;
}

/* Award Cards */
.award-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 2px solid #0A2540;
}

/* ICONS GOLD */
.award-card i {
  font-size: 32px;
  color: #FFD700;
  margin-bottom: 10px;
}

.award-card h5 {
  color: #0A2540;
  font-size: 14px;
  font-weight: 700;
}

.award-card span {
  font-size: 11px;
  color: #666;
}

.award-card:hover {
  transform: translateY(-5px);
  border-bottom-color: #FFD700;
}

/* Bottom CTA */
.bottom-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2540, #0B2B4A);
}

.cta-trust {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
}

/* Section Titles */
.section-title h2 {
  color: #0A2540;
  font-weight: 800;
}

.section-badge {
  background: rgba(10,37,64,0.08);
  color: #0A2540;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .stat-number { font-size: 36px; }
  .mission-card, .vision-card { padding: 25px; }
}
/* Services Page - Enhanced Style */
.services-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
}

.services-hero .hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #0A2540;
  line-height: 1.2;
}

.services-hero .gold-text {
  color: #FFD700;
}

.services-hero .hero-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Intro Card */
.intro-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 32px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px -15px rgba(0,0,0,0.1);
}

.intro-card i {
  font-size: 48px;
  color: #FFD700;
}

.solution-badge {
  display: inline-block;
  background: #0A2540;
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
}

/* Service Badge */
.service-badge {
  display: inline-block;
  background: rgba(10,37,64,0.08);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 15px;
}

/* Section Title */
.section-title-main {
  font-size: 36px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 20px;
}

.section-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Feature Chips */
.service-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.feature-chip {
  background: #f0f4f9;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: #0A2540;
  transition: 0.3s;
}

.feature-chip i {
  color: #FFD700;
  margin-right: 8px;
}

.feature-chip:hover {
  background: #0A2540;
  color: #fff;
  transform: translateY(-2px);
}

.feature-chip:hover i {
  color: #FFD700;
}

/* Buttons */
.btn-gold {
  background: #FFD700;
  color: #0A2540;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.btn-outline-navy {
  background: transparent;
  color: #0A2540;
  border: 2px solid #0A2540;
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-outline-navy:hover {
  background: #0A2540;
  color: #fff;
  transform: translateY(-2px);
}

/* Not Sure Card */
.not-sure-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
  transition: 0.4s;
}

.not-sure-card:hover {
  transform: translateY(-5px);
}

.not-sure-card i {
  font-size: 56px;
  color: #FFD700;
  margin-bottom: 20px;
}

.not-sure-card h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0A2540;
}

/* Why Cards */
.why-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.why-card i {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2540, #0B2B4A);
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

.cta-description {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

.btn-outline-gold {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-outline-gold:hover {
  border-color: #FFD700;
  background: rgba(255,215,0,0.1);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero .hero-title { font-size: 32px; }
  .section-title-main { font-size: 28px; }
  .intro-card { padding: 30px 20px; }
  .not-sure-card { padding: 30px 20px; }
  .not-sure-card h2 { font-size: 24px; }
  .cta-title { font-size: 28px; }
  .feature-chip { font-size: 11px; padding: 6px 12px; }
  .service-features-grid { gap: 8px; }
}
/* ========================================== */
/* BLOG STYLES - Navy Blue + Gold Theme      */
/* ========================================== */

/* Blog Hero */
.blog-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
}

.blog-hero .hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #0A2540;
}

.blog-hero .gold-text {
  color: #FFD700;
}

/* Featured Post */
.featured-post {
  padding: 60px 0;
}

.featured-card {
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.featured-card:hover {
  transform: translateY(-5px);
}

.featured-badge {
  display: inline-block;
  background: #FFD700;
  color: #0A2540;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.featured-title {
  font-size: 32px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 15px;
}

.featured-excerpt {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.featured-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #888;
}

.featured-meta i {
  margin-right: 5px;
  color: #FFD700;
}

/* Blog Cards */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  transition: 0.3s;
  aspect-ratio: 16/9;
  object-fit: cover;
}

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

.blog-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #FFD700;
  color: #0A2540;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.blog-meta i {
  color: #FFD700;
  margin-right: 4px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.blog-link {
  color: #FFD700;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.blog-link:hover {
  color: #e6c200;
  letter-spacing: 0.5px;
}

/* Pagination */
.pagination-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-link {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px 15px;
  border-radius: 8px;
  color: #0A2540;
  text-decoration: none;
  transition: 0.3s;
}

.page-link.active,
.page-link:hover {
  background: #FFD700;
  border-color: #FFD700;
  color: #0A2540;
}

/* Single Post */
.post-hero {
  padding: 60px 0;
}

.post-category {
  display: inline-block;
  background: #FFD700;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.post-title {
  font-size: 42px;
  font-weight: 800;
  color: #0A2540;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #888;
}

.post-meta i {
  color: #FFD700;
  margin-right: 5px;
}

/* Content Wrapper */
.content-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
}

.content-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0A2540;
  margin: 30px 0 15px;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.content-wrapper ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-wrapper li {
  font-size: 16px;
  color: #555;
  margin-bottom: 8px;
}

.content-wrapper blockquote {
  background: #f8faff;
  border-left: 4px solid #FFD700;
  padding: 20px 30px;
  margin: 30px 0;
  font-style: italic;
  font-size: 18px;
  color: #0A2540;
}

/* Author Box */
.author-box {
  display: flex;
  gap: 20px;
  background: #f8faff;
  padding: 25px;
  border-radius: 20px;
}

.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 8px;
}

.author-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.author-social a {
  color: #0A2540;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.author-social a:hover {
  color: #FFD700;
}

/* Comments */
.comments-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 25px;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.sidebar-widget h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
}

/* Search Box */
.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.search-box button {
  background: #0A2540;
  border: none;
  padding: 0 20px;
  border-radius: 12px;
  color: #fff;
  transition: 0.3s;
}

.search-box button:hover {
  background: #FFD700;
  color: #0A2540;
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  color: #555;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}

.category-list a:hover {
  color: #FFD700;
  padding-left: 5px;
}

/* Recent Posts */
.recent-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.recent-item img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.recent-item a {
  color: #0A2540;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.recent-item span {
  font-size: 11px;
  color: #888;
  display: block;
  margin-top: 5px;
}

.recent-item a:hover {
  color: #FFD700;
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, #0A2540, #0B2B4A);
  color: #fff;
}

.newsletter-widget h4,
.newsletter-widget p {
  color: #fff;
}

.newsletter-widget input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
}

/* Recent Blog Mini Card (Homepage) */
.blog-card-mini {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

.blog-card-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
}

.blog-card-mini img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-mini-content {
  padding: 20px;
}

.blog-date {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.blog-card-mini-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 10px;
  line-height: 1.4;
}

.read-more {
  color: #FFD700;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}

.read-more:hover {
  color: #e6c200;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero .hero-title { font-size: 32px; }
  .featured-title { font-size: 24px; }
  .post-title { font-size: 28px; }
  .featured-card { padding: 25px; }
  .content-wrapper { padding: 20px; }
  .content-wrapper h2 { font-size: 22px; }
  .author-box { flex-direction: column; text-align: center; }
  .author-box img { margin: 0 auto; }
  .sidebar { margin-top: 40px; }
}
