
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #333;
  }
  
/* Header Styling */
.main-header {
  background-color: #fff;
  padding: 20px 50px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  object-fit: contain;
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
}

.info-item i {
  font-size: 24px;
  color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Stack the logo and contact-info */
  .main-header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-container {
    flex-direction: column; /* Stack logo and contact-info */
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    margin-top: 15px; /* Add spacing between logo and contact info */
  }

  .info-item {
    text-align: left;
  }
}

@media (max-width: 480px) {
  /* Adjust padding and font sizes for mobile */
  .main-header {
    padding: 15px;
  }

  .contact-info {
    gap: 15px;
  }

  .info-item i {
    font-size: 20px;
  }

  .info-item p {
    font-size: 14px;
  }
}


/* Navbar Styling */
.navbar {
  background-color: #1e73be;
  padding: 15px;
  position: relative;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #6c757d;
  padding: 10px 0;
  border-radius: 5px;
  list-style: none;
  min-width: 250px;
}

.navbar ul li:hover ul {
  display: block;
}

.navbar ul li ul li a {
  padding: 10px 15px;
  color: white;
  text-align: left;
  display: block;
  font-size: 16px;
}

.navbar ul li ul li a:hover {
  background-color: #5a6268;
}

/* Mobile Responsive Styles */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  /* Show hamburger menu */
  .menu-icon {
    display: block;
  }

  /* Collapse navbar */
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .navbar ul li {
    text-align: center;
  }

  /* Expand when toggle is checked */
  .menu-toggle:checked + .menu-icon + ul {
    display: flex;
  }

  /* Dropdown positioning for mobile */
  .navbar ul li ul {
    position: static;
    box-shadow: none;
    margin-top: 10px;
  }
}
/* Focus and Commitment Section */
.focus-commitment {
    background-image: url('../images/img1.jpg'); /* Use img1.jpg as background */
    background-size: cover;
    background-position: center;
    height: 650px; /* Adjusted for optimal height */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 200px; /* Position text away from the left edge */
    text-align: left;
    color: #333; /* Default text color */
  }
  
  .focus-text p {
    font-size: 1.8em;
    max-width: 600px; /* Limit width for readability */
    line-height: 1.4;
    color: #000;
  }
  
  .focus-text span {
    color: #1e73be; /* Blue color for emphasis */
    font-weight: bold;
  }
  
  .focus-text strong {
    color: #1e73be; /* Blue color for "focus and commitment" */
    font-weight: bold;
  }
  
  /* Who We Are Section */
  .who-we-are {
    background-color: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
  }
  
  .who-we-are h2 {
    font-size: 2.5em;
    color: #1e73be;
    margin-bottom: 20px;
  }
  
  .who-we-are p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
  }
  


  /* "What We Do" Section Styling */
.what-we-do {
    background-image: url('../images/img2.jpg'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    color: white;
  }
  
  .what-we-do h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
  }
  
  .services {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  
  .service-item img {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
  }
  
  .service-item p {
    font-size: 1.1em;
    font-style: italic;
  }



/* Partners Section */
.partners-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #fff; /* White background */
}

.partners-section h2 {
  font-size: 2.5em;
  color: #1e73be; /* Blue title */
  font-weight: bold;
  margin-bottom: 30px; /* Space below title */
}

/* Grid Styling */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 images per row on desktop */
  gap: 20px;
  justify-items: center; /* Centers items horizontally */
  align-items: center; /* Centers items vertically */
}

.partners-grid img {
  width: 100%;
  max-width: 150px; /* Limit image size */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Optional: Add rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}

.partners-grid img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .partners-section h2 {
    font-size: 2em; /* Reduce title size */
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 images per row on tablets */
    gap: 15px; /* Reduce gaps */
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 30px 10px; /* Smaller padding for mobiles */
  }

  .partners-section h2 {
    font-size: 1.8em; /* Smaller title size for mobiles */
  }

  .partners-grid {
    grid-template-columns: 1fr; /* 1 image per row on mobiles */
    gap: 10px; /* Smaller gap for compact screens */
  }

  .partners-grid img {
    max-width: 100%; /* Ensure image uses full row width */
  }
}


  /* Get in Touch Banner Styling */
  .get-in-touch-banner {
    background-color: #1e73be;
    color: white;
    padding: 30px 20px;
    text-align: center;
  }
  
  .get-in-touch-banner h3 {
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  .get-in-touch-banner p {
    font-size: 1.2em;
  }


  
  
/* Contact Form Styling */
.contact-form {
  background-color: white;
  padding: 40px;
  margin: 30px auto;
  width: 80%;
  max-width: 800px;
  border-radius: 8px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field input {
  border: none;
  border-bottom: 1px solid #333;
  padding: 10px;
  font-size: 16px;
  background: none;
  outline: none;
}

/* Input Focus Effect */
.form-field input:focus {
  border-bottom: 2px solid #1e73be;
  transition: border-color 0.3s;
}

/* Submit Button Styling */
button {
  background-color: #6c757d;
  color: white;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

button:hover {
  background-color: #5a6268;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .contact-form {
    padding: 30px;
    margin: 20px auto;
    width: 90%; /* More width for smaller screens */
  }

  .form-group {
    flex-direction: column; /* Stack fields vertically on tablets */
    gap: 15px;
  }

  button {
    padding: 12px;
    font-size: 16px; /* Slightly smaller for tablets */
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 20px;
    margin: 15px auto;
    width: 95%; /* Almost full width on mobile */
  }

  .form-field input {
    font-size: 14px; /* Adjust font size for smaller screens */
  }

  button {
    font-size: 14px;
    padding: 10px; /* Compact button styling */
  }
}


/* Footer Styling */
.footer {
    background-color: #1d1f25;
    color: #d1d1d1;
    padding: 40px;

  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  /* Logo Styling */
  .footer-logo img {
    height: 80px;
    margin-bottom: 10px;
    object-fit: contain;
  }
  
  .footer-logo .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-logo .social-links a {
    color: #d1d1d1;
    font-size: 24px;
    text-decoration: none;
  }
  
  .footer-logo .social-links a:hover {
    color: #1e73be;
  }
  
/* Navigation Links */
.footer-nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-nav a {
    text-decoration: none;
    color: #d1d1d1;
    font-size: 18px;
  }
  
  .footer-nav a:hover {
    color: white;
  }
  
  /* Contact Info Styling */
  .footer-contact p {
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: left;
  }
  
  .footer-contact strong {
    color: white;
  }