/* ===== NAVBAR CONTAINER ===== */
.navbar {
  background-color: #00468B; /* consistent blue */
  padding: 10px 0;
   margin-bottom: 0 !important;
}

/* ===== Premium Table Design ===== */
.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e3e8;
}

.entries-dropdown {
    display: flex;
    align-items: center;
    position: relative;
}

.entries-dropdown label {
    margin-right: 12px;
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.entries-dropdown select {
    padding: 8px 32px 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: white;
    cursor: pointer;
    font-size: 14px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.entries-dropdown select:focus {
    outline: none;
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.search-box {
    display: flex;
    align-items: center;
    position: relative;
}

.search-box label {
    margin-right: 12px;
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.search-box input {
    padding: 8px 15px 8px 35px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    width: 280px;
    font-size: 14px;
    transition: all 0.2s ease;
    /* background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='11' cy='11' r='8'%3e%3c/circle%3e%3cpath d='M21 21l-4.35-4.35'%3e%3c/path%3e%3c/svg%3e"); */
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
    outline: none;
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

/* ===== Premium Table Styling ===== */
table.dataTable {
    width: 100% !important;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e0e3e8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

table.dataTable thead th {
    background: linear-gradient(to right, #003366, #004080);
    color: white;
    font-weight: 600;
    padding: 14px 20px;
    border: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table.dataTable tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f2f5;
    vertical-align: middle;
    font-size: 14px;
    color: #4a5568;
    transition: background-color 0.2s ease;
}

table.dataTable tbody tr:not(:last-child) td {
    border-bottom: 1px solid #edf2f7;
}

table.dataTable tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

table.dataTable tbody tr:hover td {
    background-color: #f5f7fa;
    color: #2d3748;
}
/* ===== Neutral Pagination ===== */
.dataTables_wrapper .dataTables_paginate {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 6px 12px;
    margin: 0 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-weight: normal;
    transition: all 0.2s ease;
    min-width: 32px;
    text-align: center;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #e0e0e0;
    color: #000;
    border-color: #aaa;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f5f5f5;
    color: #000;
    border-color: #bbb;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    color: #999 !important;
    background: #f9f9f9 !important;
    border-color: #ddd !important;
    cursor: default;
}

/* ===== Premium Pagination Styling ===== */
.dataTables_wrapper .dataTables_paginate {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e3e8;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 6px 12px;
    margin: 0 2px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: white;
    color: #003366;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 32px;
    text-align: center;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #ffffff;
    color: black;
    border-color: #003366;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f1f5f9;
    color: #003366;
    border-color: #cbd5e1;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    color: #9ca3af !important;
    background: #f3f4f6 !important;
    border-color: #e5e7eb !important;
    cursor: default;
}

/* Info text styling */
.dataTables_info {
    color: #4b5563;
    font-weight: 500;
    padding: 0;
}

/* Pagination buttons container */
.dataTables_paginate {
    display: flex;
    gap: 6px;
}

/* Previous/Next buttons */
.dataTables_paginate .previous,
.dataTables_paginate .next {
    font-weight: 600;
}

/* Numbered buttons */
.dataTables_paginate .paginate_button:not(.previous):not(.next) {
    min-width: 32px;
}

/* Active page indicator */
.dataTables_paginate .paginate_button.current {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
    .dataTables_wrapper .dataTables_paginate {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .dataTables_info {
        margin-bottom: 8px;
    }
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

/* .section-title {
  margin-top: 0px;
            font-weight: bold;
            color: #003366;
            font-size: 28px;
            text-align: center;
        } */
        table.dataTable thead th {
            background-color: #003366;
            color: white;
            text-align: left;
        }
        table.dataTable tbody td {
            font-size: 16px;
        }
        .dataTables_filter {
            float: right !important;
            text-align: right;
        }
        .dataTables_length {
            float: left !important;
        }
        .container {
            margin-top: 40px;
        }
        .table-controls {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            align-items: center;
        }
        .search-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }

/* ===== NAV MENU STYLING ===== */
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  font-size: 17px;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu li a {
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  background-color: white;
  color: #00468B;
  animation: fadeIn 0.3s ease-in-out;
}

/* ===== HOVER ANIMATION ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}



.dropdown-menu li a {
  color: #000 !important;          /* Black by default */
  padding: 10px;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #00468B;       /* Blue background on hover */
  color: #fff !important;          /* White text on hover */
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}


.header-logos {
  display: flex;
  justify-content: center; /* centers the group */
  align-items: center;
  gap: 20px; /* controls spacing between the two logos */
 
}

.header-logos img {
  height: 80px; /* you can adjust this */
  margin: 0; /* remove left margin */
}

.top-header {
    padding-top: 20px;
    margin-left: 200px;
}

footer {
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 30px 50px;
  flex-wrap: wrap;
  margin-left: 200px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.footer-left img {
  width: 80px;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 6px 0;
  font-size: 14px;
  color: #000;
}
.footer-left a,
.footer-contacts a {
  color: #000;
  text-decoration: none;
}

.footer-left a:hover,
.footer-contacts a:hover {
  color: #00458e;
  text-decoration: underline;
}

.footer-right {
  flex: 3;
  padding-left: 50px;
}

.footer-right h3 {
  color: #00458e;
  margin-bottom: 10px;
  border-bottom: 1px dotted #00458e;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-contacts {
  display: flex;
  gap: 60px;
  margin-top: 20px;
  flex-wrap: wrap;
  overflow: visible;
}

.contact-card {
  min-width: 200px;
}

.contact-card p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-icon {
  margin-right: 8px;
  color: #000;
}

.footer-bottom {
  background-color: #00458e;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: relative;
}

.footer-bottom .back-to-top {
  position: absolute;
  right: 20px;
  top: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

#about-section {
    background-color: #fff;
    /* padding: 20px 0; */
}
.section-title {
    margin-top: 0px;
    text-align: center;
    justify-content: auto;
    font-size: 32px;
    font-weight: bold;
    color: #00468C;
    /* margin-bottom: 10px; */
}

.section-icon i {
    color: #00468C;
    font-size: 24px;
    margin-bottom: 20px;
}

.text-primary {
    color: #00468C !important;
}

.btn-outline-primary {
    font-size: 18px;
    color: #00468C;
    border-color: #00468C;
}

.btn-outline-primary:hover {
    background-color: #00468C;
    color: #fff;
    border-color: #00468C;
}

.img-fluid {
    max-width: 400px;
    height: auto;
}
.slider-section {
     padding: 0 !important;
  margin: 0 !important;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
    padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  height: 600px; /* You can adjust height */
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}


.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Fixes the zoom issue */
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 900px;
  transform: translateY(-50%);
  color: #00458e;
  max-width: 40%;
  padding: 20px;
  border-radius: 10px;
}

.slide-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 16px;
  margin-bottom: 15px;
}


.slide-content .btn {
  border: 2px solid #003366;       /* Dark blue border */
  color: #003366;                  /* Text color */
  background-color: transparent;   /* Transparent background */
  padding: 10px 25px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.slide-content .btn:hover {
  background-color: #003366;       /* Fill on hover */
  color: white;                    /* White text on hover */
  text-decoration: none;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  transition: background 0.3s;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.services-section {
  text-align: center;
  padding: 50px 0;
  background: #f9f9f9;
}

.section-titles {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 30px;
}

.justify-text {
    font-size: 18px;
    text-align: justify;
}


.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  width: 300px;
  height: 280px;
  perspective: 1000px;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
}

.card-front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-front .icon {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #003366;
}

.card-front h3 {
  font-size: 2.0rem;
  color: #003366;
}

.card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-back h3 {
  font-size: 2.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.card-back p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid #003366;
  color: #003366;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.read-more-btn:hover {
  background: #003366;
  color: #fff;
}

.stats-section {
  position: relative;
  background-image: url('/static/img/bg.jpg'); /* Your background */
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.stats-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.stats-section .content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-box {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 60px 20px 30px;
  width: 320px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.icon-wrapper i {
  color: #0056b3; /* Dark blue icon color */
  font-size: 28px;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 20px; /* space below the icon */
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
}
.disclaimer-box {
      width: 90%;
      margin: 20px auto;
      padding: 10px;
      background-color: #f5f5f5;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-family: monospace;
      font-size: 13px;
      line-height: 1.3;
      white-space: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      height: 6.8em; /* roughly 2 lines */
}
 /* Gallery Container: 2 per row */
    .gallery-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      width: 80%;
      margin: 40px auto;
    }

    /* Card */
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .gallery-item img {
      width: 100%;
      height: 300px;
      display: block;
      transition: transform 0.3s ease-in-out;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    /* Hover Overlay */
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0.9));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay h2 {
      color: white;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    }

    .eye-icon {
      border: 2px solid #003366;
      padding: 10px 30px;
      border-radius: 4px;
      background: white;
      color: #003366;
      font-size: 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .eye-icon:hover {
      background: #003366;
      color: white;
    }
        /* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

    .close:hover {
      color: red;
    }

 

    /* Responsive for smaller screens */
    @media (max-width: 768px) {
      .gallery-container {
        grid-template-columns: 1fr;
      }
    }
/* Contact Section */
.contact--section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section--title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    display: inline-block;
}

.service--item {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service--item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.service--item .title h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service--item .content {
    font-size: 15px;
    color: #555;
}

.service--item .content p {
    margin: 0;
    line-height: 1.6;
}

.links--widget ul.nav {
    list-style: none;
    padding-left: 0;
}

.links--widget ul.nav li {
    margin-bottom: 10px;
}

.links--widget ul.nav li a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.links--widget ul.nav li a i {
    color: #555;
}

.contact--map-wrapper {
    margin-top: 40px;
    padding: 0;
}

.contact--map {
    width: 100%;
    height: 400px;
    border: 2px solid #ccc;
    border-radius: 8px;
}

/* Responsive Fixes */
@media (max-width: 767px) {
    .section--title h2 {
        font-size: 24px;
    }

    .service--item {
        padding: 15px;
    }

    .service--item .title h3 {
        font-size: 18px;
    }
}

