/* Reset and Base Styles */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #0b1a30; /* Dark Navy Blue */
  --secondary-color: #c0904d; /* Golden Bronze */
  --secondary-hover: #a87b3e;
  --text-dark: #2d3748;
  --text-light: #ffffff;
  --text-muted: #4a5568;
  --bg-main: #ffffff;
  --bg-alt: #f7fafc;
  --bg-dark: #1a202c;
  --border-color: #e2e8f0;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-main);
  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: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; position: relative; padding-bottom: 0.8rem; margin-bottom: 2rem;}
h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}
.center-heading h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 { font-size: 1.5rem; }
p { margin-bottom: 1.2rem; color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-light) !important;
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 144, 77, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light) !important;
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-light) !important;
    border-color: var(--text-light);
}
.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--primary-color) !important;
}

/* Header & Navigation */
.header {
  background-color: var(--bg-main);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 0;
  font-size: 0.9rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-left {
    display: flex;
    gap: 20px;
}
.header-top-left i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.header-top-right a {
  background-color: var(--secondary-color);
  color: white;
  padding: 4px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 20px;
}
.header-top-right a:hover {
    background-color: var(--secondary-hover);
}

.header-main {
  padding: 15px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 90px; /* Increased logo size */
  transition: var(--transition);
}

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

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding: 10px 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.btn {
    padding: 10px 24px;
}
.nav-link.btn::after {
    display: none;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-main);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  border-top: 4px solid var(--secondary-color);
  z-index: 10;
  border-radius: 0 0 8px 8px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 25px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}
.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
  background-color: var(--bg-alt);
  color: var(--secondary-color);
  padding-left: 30px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 120px 0;
  overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 26, 48, 0.92) 0%, rgba(11, 26, 48, 0.75) 100%);
    z-index: 1;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero .tagline {
  color: var(--secondary-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 25px;
}

.hero p {
  color: #edf2f7;
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero Carousel specific */
.hero-slider {
    position: relative;
}
.slide {
    display: none;
}
.slide.active {
    display: block;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.badge {
    display: inline-block;
    background-color: rgba(192, 144, 77, 0.15);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(192, 144, 77, 0.5);
    font-family: 'Montserrat', sans-serif;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-bg-alt {
  background-color: var(--bg-alt);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}
.grid-2.align-start {
    align-items: flex-start;
}

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

/* Cards */
.card {
  background: var(--bg-main);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--secondary-color);
}

.card-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(192, 144, 77, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--secondary-color);
  font-size: 1.8rem;
}

.card-title {
  margin-bottom: 20px;
}

.card-text {
  flex-grow: 1;
}

.card-link {
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
}

.card-link:hover {
  color: var(--primary-color);
  gap: 12px;
}

/* Images */
.img-rounded {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    object-fit: cover;
}
.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--text-muted);
}

/* Table */
.data-table-wrapper {
    overflow-x: auto;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: var(--bg-main);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
}
.data-table th, .data-table td {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}
.data-table th {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
.data-table tr:last-child td {
    border-bottom: none;
}
.data-table tr:nth-child(even) {
    background-color: var(--bg-alt);
}
.data-table tr:hover {
    background-color: rgba(192, 144, 77, 0.05);
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}
.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-alt);
}
.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(192, 144, 77, 0.15);
    background-color: var(--bg-main);
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Lists */
.icon-list {
    list-style: none;
    padding: 0;
}
.icon-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}
.icon-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--secondary-color);
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    opacity: 0.7;
    margin-top: 50px;
}
.partner-logos img {
    height: 50px;
    filter: grayscale(100%);
    transition: var(--transition);
}
.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Process Diagram */
.process-diagram {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 50px 0;
    padding: 50px 30px;
    background: var(--bg-main);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 15px;
}
.process-icon {
    width: 90px;
    height: 90px;
    background-color: var(--bg-alt);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}
.process-step:hover .process-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}
.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.process-arrow {
    position: absolute;
    top: 45px;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: var(--border-color);
    z-index: 1;
}
.process-step:last-child .process-arrow {
    display: none;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: #a0aec0;
  padding: 80px 0 30px;
}

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

.footer-col h4 {
  color: var(--text-light);
  margin-bottom: 25px;
}

.footer-col h4::after {
    display: none;
}

.footer-logo {
  height: 60px;
  margin-bottom: 25px;
  background-color: white;
  padding: 10px;
  border-radius: 6px;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--secondary-color);
}
.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero h1 { font-size: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-diagram { flex-wrap: wrap; gap: 40px; }
  .process-step { flex: 1 1 40%; }
  .process-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-main);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: none;
    align-items: flex-start;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-link.btn {
      width: auto;
      margin: 15px 25px;
  }
  
  .dropdown-menu {
      position: static;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      display: none;
      border-top: none;
      background-color: var(--bg-alt);
      width: 100%;
      border-radius: 0;
  }
  .dropdown.active .dropdown-menu {
      display: block;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .header-top { display: none; }
  .logo img { height: 70px; }
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 80px 0; }
  .section { padding: 60px 0; }
  
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-step { flex: 1 1 100%; }
}
