/* Global Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #222;
  line-height: 1.5;
}



/* Top Bar */
.top-bar {
  background: #FFCE4A;
  color: #0c3c78;
  display: flex;
  justify-content: space-between;
  padding: 8px 20px;
  font-size: 14px;
}

.top-bar a {
  color:#0c3c78 ;
  margin-left: 15px;
  text-decoration: none;
}



/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  margin-right: 15px;
}

.logo h1 {
  font-size: 18px;
  margin: 0;
  color: #0c3c78;
}

.logo p {
  font-size: 14px;
  margin: 0;
  color: #444;
}

.header-buttons .btn {
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  margin-left: 10px;
}

.btn.blue {
  background: #0c3c78;
  color: #fff;
}

.btn.outline {
  border: 1px solid #0c3c78;
  color: #0c3c78;
  background: #fff;
}



/* Navbar */
.navbar {
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  overflow-x: auto;
}

.navbar ul li {
  margin: 0;
}

.navbar ul li a {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: #0c3c78;
  font-weight: 500;
}

.navbar ul li a.active {
  background: #fff;
  border-bottom: 3px solid #FFCE4A;
  color: #0c3c78;
}

/* Desktop - hide hamburger */
.hamburger {
  display: none;
}



/* Header */
.services-banner {
  position: relative;
  height: 300px;
  background: url("../image/pic2.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.services-banner .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.services-banner .banner-text {
  position: relative;
  text-align: left;
  z-index: 2;
}

.services-banner h2 {
  font-size: 28px;
  font-weight: 600;
}

.services-banner span {
  font-weight: 700;
  font-size: 30px;
}


/* Container for two List */
.available-sections {
  background: #f9f9f9;
  padding: 40px 20px;
}

.available-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.available-box {
  flex: 1;
}

.available-title {
  display: inline-block;
  background: #FFCE4A;
  color: #0c3c78;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 20px;
  margin-bottom: 25px;
}

.available-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.available-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.available-list li::before {
  content: "»";
  position: absolute;
  left: 0;
  color: #d93025;
  font-weight: bold;
}




/* Department 1 Section */
.department1 {
  padding: 40px 20px;
  background: #fff;
}

.department1-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.department1-text {
  flex: 1;
  min-width: 300px;
}

.department1-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0c3c78;
  margin-bottom: 20px;
}

.department1-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.department1-image {
  flex: 1;
  min-width: 300px;
}

.department1-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}



/* Department 2 Section */
.department2 {
  padding: 40px 20px;
  background: #fff;
}

.department2-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.department2-image {
  flex: 1;
  min-width: 300px;
}

.department2-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.department2-text {
  flex: 1;
  min-width: 300px;
}

.department2-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0c3c78;
  margin-bottom: 20px;
}

.department2-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}



 /* Footer */
.footer {
  background-color: #1e4a8c;
  color: #FFCE4A;
  padding: 50px 0 20px;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr; /* balanced columns */
  gap: 30px;
  margin-bottom: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-contact .contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
 color:white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-text h4 {
  font-size: 18px;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-links h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover {
  color: #4a90e2;
}



 /* Responsive Css */

 /* Navbar */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 30px;
  }
  /* Stack header items */
  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  /* Show hamburger only on mobile */
  .hamburger {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #0c3c78;
  }

  /* Hide nav by default */
  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0c3c78;
  }

  .navbar ul li a {
    color: white;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  /* Show menu when active */
  .navbar.active ul {
    display: flex;
  }
}

@media (max-width: 540px) {
  .logo h1 {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .logo h1 {
    font-size: 15px;
  }
}

/* Desktop (≥ 769px) keep original layout */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  .navbar ul {
    display: flex; 
    flex-direction: row;
    background: #f9f9f9;
  }

  .navbar ul li a {
    color: #0c3c78;
    border: none;
  }
}



/* Header Banner */
@media (max-width: 768px) {
  .services-banner {
    height: 200px; /* reduce banner height */
  }

  .services-banner .banner-text {
    text-align: left; 
    padding: 0 15px; 
  }

  .services-banner h2 {
    font-size: 14px;
    line-height: 1.4;
  }

  .services-banner span {
    display: block;  
    font-size: 12px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .services-banner {
    height: 160px;
}

  .services-banner h2 {
    font-size: 14px;
  }

  .services-banner span {
    font-size: 12px;
  }
}




/*  Available Sections */
@media (max-width: 768px) {
  .available-container {
    flex-direction: column;
    gap: 20px; 
  }

  .available-box {
    flex: 1 1 100%;
  }

  .available-title {
    font-size: 16px;
    padding: 6px 15px;
  }

  .available-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}


/* Department 1 Section */
@media (max-width: 768px) {
  .department1 {
  padding: 30px 15px;
  
}

  .department1-container {
    flex-direction: column; 
    gap: 20px;
  }

  .department1-text {
    text-align: left;  
  }

  .department1-text h2 {
    font-size: 24px;  
  }

  .department1-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .department1-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .department1 {
  padding: 30px 15px;
  
}
  .department1-text h2 {
    font-size: 20px;  
  }

  .department1-text p {
    font-size: 13px;
  }
}


/*  Department 2 Section */
@media (max-width: 768px) {

.department2 {
  padding: 30px 15px;
  
}
  .department2-container {
    flex-direction: column;   
    gap: 10px;
  }

  .department2-text {
    order: 1;   
    text-align: left;
  }

  .department2-text h2 {
    font-size: 24px;  
  }

  .department2-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .department2-image {
    order: 2;  
  }

  .department2-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
.department2 {
  padding: 30px 15px;
  
}
  .department2-text h2 {
    font-size: 20px;   
  }

  .department2-text p {
    font-size: 13px;
  }
}



 /* Footer Section */
@media (max-width: 540px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: left;   
}

  .footer-col {
    align-items: flex-start; 
  }

  .social-links {
    justify-content: flex-start;
  }
}
