* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

/* Basic Reset */


/* Header Section */
header {
background: white;
color: rgb(73, 163, 236);
padding: 0.5rem 1rem; /* Reduced padding */
font-size: 5px;
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-links {
list-style: none;
display: flex;
gap: 1.5rem;


}

.green-text {
color: green;

}

.nav-links a {
color: rgb(73, 163, 236);
text-decoration: none;
transition: color 0.3s;
font-weight: bold;
font-size: 16px;
}

.nav-links a:hover {
color: rgb(35, 225, 35);
}


/* Fullscreen Slideshow */
.slideshow-container {
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
    top: 0;
    left: 0;
    transform: translateX(100%);
    z-index: 1;
}

.slide.active {
    transform: translateX(0%);
    z-index: 2;
}

.slide.previous,
.slide.next {
    z-index: 1;
}

/* Arrow Button */
.next-btn {
position: absolute;
top: 50%;
right: 30px;
font-size: 2.5rem;
background-color: rgba(0, 0, 0, 0.4);
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
transform: translateY(-50%);
z-index: 3;
border-radius: 50%;
}

.next-btn:hover {
background-color: rgba(0, 0, 0, 0.7);
}

/* Left Side Previous Button */
.prev-btn {
    position: absolute;
    top: 50%;
    left: 30px;
    font-size: 2.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 3;
    border-radius: 50%;
}

.prev-btn:hover {
    background-color: rgba(0, 0, 0, 0.679);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.519); /* dark transparent layer */
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* allow clicks to pass through to buttons */
}

/* Text Overlay */
.slide-text {
position: absolute;
text-align: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 4;
}

.slide-text h1 {
font-size: 55px;
color: green;
margin: 0;
text-transform: uppercase;
font-weight: 700;
}

.slide-text p {
    font-size: 30px;
color: rgb(69, 163, 222);
margin-top: 10px;
font-weight: 800;

}

.image-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    flex-wrap: wrap;
    background-color: #f4f4f4;
}

.image-card {
    width: 220px;
    text-align: center;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-card img {
    width: 100%;
    border-radius: 10px;
}

.image-card h3 {
    margin: 1rem 0 0.5rem;
    color: #333;
}

.read-more-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #45a3de;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 0.5rem;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #1e85c1;
}

.info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0f3ff;
    padding: 4rem 2rem;
    flex-wrap: wrap;
}

.info-image {
    flex: 1;
    min-width: 500px;
    text-align: center;
}

.info-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
}

.info-text {
    flex: 1;
    min-width: 300px;
    padding: 1rem 2rem;
}

.info-text h2 {
    font-size: 2rem;
    color: #0b4c8a;
    margin-bottom: 1rem;
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.info-subsection {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.info-subsection img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
}

.sub-text {
    flex: 1;
}

.sub-text h3 {
    color: #0b4c8a;
    margin-bottom: 0.5rem;
}

.sub-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.three-boxes {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    background-color: #f0f8ff;
    padding: 3rem 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.box {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    flex: 1 1 250px;
    text-align: center;
}

.box h3 {
    margin-bottom: 1rem;
    color: #0b4c8a;
}

.box p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}


.company-structure {
position: relative;
width: 100%;
height: 350px;
background: url('images/structure-bg.jpg') no-repeat center center/cover;
display: flex;
align-items: center;
justify-content: center;
}
.light-blue-box {
    background-color: #e0f4ff; /* Light blue */
    padding: 4rem 2rem;
    width: 100%;
}

.structure-overlay {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.structure-overlay h2 {
    font-size: 2.5rem;
    color: #004080;
    margin-bottom: 2rem;
}

.icon-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8rem;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 140px;
}

.icon-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.icon-box p {
    font-size: 1rem;
    font-weight: 600;
    color: #004080;
    text-align: center;
}

.horizontal-gallery {
    padding: 3rem 2rem;
    background-color: #f0f8ff;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.gallery-container img {
    width: 220px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

.footer-section {
    background-color: #e0f4ff; /* Blue background */
    color:  #004080;
    padding: 3rem 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.green-text {
    color: green;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}


.logo{
    font-weight: bold;
    font-size: 16px;
}

.hero {
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero button {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: none;
    margin-top: 1rem;
    cursor: pointer;
    color: #007bff;
    font-weight: bold;
    border-radius: 5px;
}

.about {
    display: flex;
    gap: 2rem;
    padding: 4rem 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-content img {
    max-width: 400px;
    border-radius: 10px;
}

.services {
    background: #f7f7f7;
    padding: 4rem 2rem;
    text-align: center;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 1rem;
    background: #111;
    color: white;
}

/* media query */

/* Base styles for navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
  }
  
  /* Logo style */
  .logo h2 {
    margin: 0;
  }
  
  .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* Default: Mobile First */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust if header height is different */
    right: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links li {
    border-bottom: 1px solid #ddd;
  }
  
  .nav-links li a {
    display: block;
    padding: 12px 20px;
    color: rgb(73, 163, 236);
    text-decoration: none;
  }
  
  /* Active state for mobile toggle */
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: block;
  }
  
  /* ---------- Desktop View (min-width: 768px) ---------- */
  @media (min-width: 768px) {
    .nav-links {
      display: flex !important;
      flex-direction: row;
      position: static;
      width: auto;
      background: none;
      box-shadow: none;
    }
  
    .nav-links li {
      border: none;
    }
  
    .nav-links li a {
      padding: 10px 15px;
    }
  
    .menu-toggle {
      display: none;
    }
  }
  