/* ============================================
   OMS Consultants - Main Stylesheet
   Colors: #fefefe (White) | #c28d3f (Gold) | #011a38 (Navy)
   ============================================ */

/* CSS Variables */
:root {
    --color-white: #fefefe;
    --color-gold: #c28d3f;
    --color-navy: #011a38;
    --color-navy-light: #0a2a4d;
    --color-navy-dark: #001020;
    --color-gold-light: #d4a85a;
    --color-gold-dark: #a07030;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(1, 26, 56, 0.15);
    --shadow-hover: 0 8px 30px rgba(1, 26, 56, 0.25);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-navy);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }



.gold-text {
    color: var(--color-gold);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 15px auto 0;
}

.section-title p {
    color: var(--color-navy);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-navy);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--color-navy);
    font-family: var(--font-heading);
}

.logo-text {
    color: var(--color-white);
}

.logo-text img{
padding-top: 1rem;
padding-bottom: 0.5rem;
    width: 11rem;
}
.logo-text .logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--color-gold);
}

.logo-text .logo-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    color: var(--color-white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: calc(100% - 36px);
}

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

.nav-cta {
    background-color: var(--color-gold);
    color: var(--color-navy) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    margin-left: 10px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background-color: var(--color-gold-light) !important;
    color: var(--color-navy) !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 26, 56, 0.92) 0%, rgba(1, 26, 56, 0.75) 50%, rgba(1, 26, 56, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 .gold-line {
    display: block;
    color: var(--color-gold);
    font-size: 2.8rem;
    margin-top: 10px;
}

.hero-subtitle {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-desc {
    color: rgba(254, 254, 254, 0.85);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Bar */
.features-bar {
    background-color: var(--color-navy);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
}

.feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gold);
}

.feature-content h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-content p {
    color: rgba(254, 254, 254, 0.75);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Welcome Section */
.welcome-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

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

.welcome-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.welcome-content h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.welcome-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-navy);
}

.welcome-content p {
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.8;
}

.welcome-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.wf-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wf-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(194, 141, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-gold);
}

.wf-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-navy);
}

.why-choose h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-navy);
}

.why-choose ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.why-choose ul li i {
    color: var(--color-gold);
    font-size: 1.1rem;
}




/* Services Preview Section */
.services-preview {
    background-color: var(--color-navy);
    padding: 80px 0;
}

.services-preview .section-title h2,
.services-preview .section-title p {
    color: var(--color-white);
}

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

.service-card {
    background-color: rgba(254, 254, 254, 0.03);
    border: 1px solid rgba(194, 141, 63, 0.2);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background-color: rgba(254, 254, 254, 0.06);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
}

.service-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background-color: rgba(194, 141, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-gold);
    border: 2px solid rgba(194, 141, 63, 0.3);
}

.service-card h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(254, 254, 254, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* Training Section */
.training-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

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

.training-image {
    position: relative;
}

.training-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.training-content h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.training-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-navy);
}

.training-content > p {
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.8;
}

.training-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.training-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-navy);
}

.training-list li i {
    color: var(--color-gold);
    font-size: 0.8rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--color-navy);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(254, 254, 254, 0.75);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Knowledge Center Section */
.knowledge-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.article-card {
    background-color: var(--color-white);
    border: 1px solid rgba(1, 26, 56, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.article-content {
    padding: 25px;
}

.article-date {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
}

.article-content h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--color-navy);
    line-height: 1.4;
}

.article-content p {
    font-size: 0.85rem;
    color: var(--color-navy);
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

/* Page Banner */
.page-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 26, 56, 0.9) 0%, rgba(1, 26, 56, 0.8) 100%);
    z-index: -1;
}

.page-banner-content {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.page-banner-content h1 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-banner-content p {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(254, 254, 254, 0.7);
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

.breadcrumb span {
    color: var(--color-gold);
}

/* About Page */
.about-story {
    background-color: var(--color-white);
    padding: 80px 0;
}

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

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.story-content h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--color-navy);
}

.story-content p {
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-vision {
    background-color: var(--color-navy);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mv-card {
    background-color: rgba(254, 254, 254, 0.03);
    border: 1px solid rgba(194, 141, 63, 0.2);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background-color: rgba(194, 141, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-gold);
    border: 2px solid rgba(194, 141, 63, 0.3);
}

.mv-card h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mv-card p {
    color: rgba(254, 254, 254, 0.75);
    line-height: 1.7;
}

.values-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

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

.value-card {
    text-align: center;
    padding: 40px 25px;
    border: 1px solid rgba(1, 26, 56, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: rgba(194, 141, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gold);
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--color-navy);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-navy);
    opacity: 0.7;
    line-height: 1.6;
}







.section-title {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 1rem;
}

.section-title h2 {
  color: #0e2642; 
  font-size: 32px;
  margin-bottom: 10px;
}

.section-title .line {
  width: 60px; 
  height: 3px; 
  background-color: #c59d5f;
  margin: 0 auto; 
}


.slider {
  overflow: hidden;
  width: 100%;
  background: white;
  padding-bottom: 5rem;
  position: relative;
}

.slide-track {
  display: flex;
  gap: 0;
  animation: scroll 40s linear infinite;
  width: calc(30 * (200px + 5rem)); 
}

.slide-track:hover {
  animation-play-state: paused;
}

.slide {
  flex-shrink: 0;
  width: 200px;
  margin-right: 5rem; 
}

.slide img {
  height: 8rem;
  width: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
   
    transform: translateX(calc(-15 * (200px + 5rem)));
  }
}


[dir="rtl"] .slide-track:hover {
    animation-play-state: paused !important;
    cursor: pointer;
}


[dir="rtl"] .slide-track {
    display: flex;
    width: fit-content;
}


[dir="rtl"] .slide-track {
  animation: scrollRTL 40s linear infinite;
}

@keyframes scrollRTL {
  0% {
    transform: translateX(0);
  }
  100% {
   
    transform: translateX(calc(15 * (200px + 5rem)));
  }
}

/* Services Page */
.services-detail {
    background-color: var(--color-white);
    padding: 80px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    border: 1px solid rgba(1, 26, 56, 0.1);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-navy);
}

.service-detail-content p {
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.service-features-list li i {
    color: var(--color-gold);
}

/* Contact Page */
.contact-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--color-navy);
}

.contact-info > p {
    color: var(--color-navy);
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(194, 141, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-gold);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-navy);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--color-navy);
    opacity: 0.75;
}

.contact-form {
    background-color: var(--color-navy);
    padding: 50px 40px;
}

.contact-form h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

html[lang="ar"] .contact-form input,
html[lang="ar"] .contact-form textarea,
html[lang="ar"] .contact-form select {
    direction: rtl !important;
    text-align: right !important;
}








.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: #0e2642 !important; 
    border: 1px solid #454641;
    color: #ffffff !important; 
    font-size: 16px;
    appearance: none;
    cursor: pointer;
   
}


.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    background-color: #0e2642 !important; 
    border-color: var(--color-gold);
    outline: none;
    
}

.form-group select option {
    background-color: #0e2642;
    color: #ffffff;
}


input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #0e2642 inset !important;
    -webkit-text-fill-color: #ffffff !important;
}



/* Footer */
.footer {
    background-color: var(--color-navy-dark);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(254, 254, 254, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(194, 141, 63, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    border-color: var(--color-gold);
}

.footer-links h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links ul li a {
    color: rgba(254, 254, 254, 0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(254, 254, 254, 0.65);
    font-size: 0.9rem;
   
   
}

.footer-contact-item i {
    color: var(--color-gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(254, 254, 254, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(254, 254, 254, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(254, 254, 254, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

/* 
 .footer-contact a {
    display: block; 
    text-decoration: none;
    position: relative;
    z-index: 10; 
    cursor: pointer;
    align-items: center;
}


.footer-contact-item {
    pointer-events: none; 
}


.footer-contact a:hover span {
    color: var(--color-gold);
    transition: 0.3s;
} */


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--color-gold);
    color: var(--color-navy);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.scroll-top:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .knowledge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .welcome-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .welcome-why {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-navy);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 15px;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 .gold-line {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-why {
        grid-column: span 1;
    }
    
    .training-grid {
        grid-template-columns: 1fr;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card:nth-child(even) {
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    .footer-contact-item{
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .page-banner-content h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .hero-content h1 .gold-line {
        font-size: 1.4rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .training-list {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
}
