/* General Styles */

body {
    font-family: 'serif', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Adjusting container styles */
.header-container,
.hero-container,
.impact-numbers-container,
.services-list,
.team,
.contact-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section Styles */
.header {
    background-color: #FFFFFF; /* White */
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's above other content */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px; /* Optional: add padding to align content with the rest of the page */
}

/* Logo Layout */
.logo {
  display: flex;
  align-items: center;
}

.mrak-logo {
  max-width: 130px;
  margin-right: 10px;
}

.logo-text {
  display: flex;
  align-items: center;
}

.ca-logo {
  max-width: 40px;
  margin-right: 20px;
}


.logo h1 {
    font-size: 1.7em;
    font-weight: 700;
    color: #003049; /* Dark slate gray */
    margin: 0;
}

.logo p {
    margin: 0;
    font-size: 14px;
    color: #34495e; /* Light slate gray */
}

.nav {
    display: flex;
    align-items: center;
}

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    text-decoration: none;
    color: #003049; /* Dark slate gray */
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #2980b9; /* Medium blue */
}

.contact-btn {
    background-color: #2980b9; /* Medium blue */
    color: #ecf0f1; /* Light gray */
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #2c3e50; /* Dark slate gray */
}

.menu-icon {
    display: none; /* Hidden by default */
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px; /* Adjust as needed */
    top: 20px;   /* Adjust as needed */
}


/* Collapsible Menu Styles */
.collapsible-menu {
    display: none; /* Hidden by default */
    background-color: #ecf0f1; /* Light gray */
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;/* Align items to the left */
}

.nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Align text to the left */
}

.nav-mobile ul li {
    margin: 10px 0;
}

.nav-mobile ul li a {
    text-decoration: none;
    color: #2c3e50; /* Dark slate gray */
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-mobile .contact-btn {
    align-self: flex-end; /* Align the button to the right */
    margin-top: 10px;
}

.a-div {
    all: unset;
    cursor: pointer;
    display: block;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav {
        display: none; /* Hide desktop navigation */
    }
    .menu-icon {
        display: block; /* Show menu icon */
    }
    .contact-btn {
        width: auto;
        text-align: right; /* Align button to the right */
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .header-container {
        align-items: center;
    }
    .contact-btn {
        align-self: flex-end; /* Align the button to the right */
        width: auto;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }

  .logo h1 {
    font-size: 1.1em; /* Reduce font size for mobile devices */
  }

  .logo p {
    font-size: 12px; /* Reduce tagline size */
  }

  .mrak-logo {
    max-width: 60px; /* or try 70px for tighter fit */
  }

  .ca-logo {
    max-width: 15px; /* slightly smaller for balance */
  }

  .nav-mobile .contact-btn {
    align-self: flex-end;
    margin-top: 10px;
  }
} 


/* Hero Section Styles */
.hero {
    background-color: #ecf0f1; /* Light gray */
    padding: 60px 0;
}

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

.hero-content {
    max-width: 600px;
    text-align: left;
    order: 1; /* Ensures content is first on smaller screens */
}

.hero-title {
    font-size: 45px;
    line-height: 1.5;
    font-weight: bold;
    color: #003049; /* Dark slate gray */
}

.hero-subtitle {
    font-size: 16px;
    color: #34495e; /* Light slate gray */
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.primary-btn {
    background-color: #2980b9; /* Medium blue */
    color: #ecf0f1; /* Light gray */
    transition: background-color 0.3s;
}

.primary-btn:hover {
    background-color: #2c3e50; /* Dark slate gray */
}

.secondary-btn {
    background-color: #2c3e50; /* Dark slate gray */
    color: #ecf0f1; /* Light gray */
    transition: background-color 0.3s;
}

.secondary-btn:hover {
    background-color: #34495e; /* Light slate gray */
}

.hero-image {
    max-width: 40%; /* Ensures the image takes up less space */
    order: 2; /* Ensures image is second on smaller screens */
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        order: 2; /* Ensures content is first on smaller screens */
        margin-bottom: 20px;
    }
    .hero-image {
        order: 1; /* Ensures image is second on smaller screens */
        text-align: center;
        max-width: 80%; /* Adjust image size for tablets */
    }
    .hero-title {
        font-size: 35px; /* Adjust font size for tablets */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px; /* Further adjust font size for mobile devices */
    }
    .hero-image {
        max-width: 80%; /* Adjust image size for tablets */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px; /* Adjust font size for smaller mobile devices */
    }
    .hero-content {
        max-width: 100%; /* Ensures the content takes full width */
    }
    .hero-image {
        max-width: 100%; /* Ensures the image takes full width */
    }
    .hero-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }
}

/* Reset any default spacing inside welcome section */
.welcome-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Welcome Section */
.welcome-section {
  position: relative;
  height: 80vh; 
  overflow: hidden;
  text-align: center;
  color: white;
}

.welcome-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.welcome-overlay {
  position: absolute; /* changed from relative */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* perfectly center overlay */
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

/* Typography */
.welcome-overlay h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.welcome-overlay p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .welcome-section {
    height: 60vh;
  }

  .welcome-overlay h2 {
    font-size: 1.5rem;
  }

  .welcome-overlay p {
    font-size: 0.9rem;
  }
}

/* Mission and Vision Section */

.mission-vision-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.mission-vision-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.mission-vision-row {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #ecf0f1;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.image-container {
  flex: 0 0 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.falling-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  animation: fallLeft 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(-60px);
}

@keyframes fallLeft {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-container {
  flex: 1;
}

.text-container h2 {
  font-size: 1.8rem;
  color: #003049;
  margin-bottom: 15px;
}

.text-container p {
  font-size: 1rem;
  line-height: 1.6;
  color: #34495e;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-vision-row {
    flex-direction: column;
    text-align: center;
  }

  .image-container {
    flex: none;
    width: 100%;
  }

  .falling-image {
    max-width: 180px;
  }
}

/* Impact Numbers Section Styles */
.impact-numbers {
    background-color: #023047; /* Dark blue */
    color: #ecf0f1; /* Light gray */
    padding: 60px 0;
    font-family: Arial, sans-serif;
    text-align: center;
}

.impact-numbers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.impact-numbers-content {
    margin-bottom: 40px;
}

.impact-numbers-heading {
    font-size: 34px;
    font-weight: 700;
    color: #ecf0f1; /* Light gray */
}

.impact-numbers-description {
    font-size: 18px;
    color: #bde0fe; /* Light slate gray */
    margin-bottom: 40px;
}

.impact-numbers-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.impact-number {
    text-align: center;
    flex: 1;
    margin: 0 20px; /* Add some margin between items */
    padding: 20px;
    border-radius: 10px;
    background-color: #034661; /* Slightly lighter blue */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.impact-number img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.impact-number h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ecf0f1; /* Light gray */
    transition: all 0.5s ease-in-out;
}

.impact-number p {
    font-size: 16px;
    color: #bde0fe; /* Light slate gray */
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .impact-numbers-stats {
        flex-direction: column;
        align-items: center;
    }
    .impact-number {
        margin-bottom: 20px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .impact-number {
        margin: 10px 0; /* Adjust margin for smaller screens */
        padding: 15px; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 480px) {
    .impact-number {
        width: 90%; /* Ensure the containers fit within the screen width */
        margin: 10px auto; /* Center the containers and add margin */
        padding: 10px; /* Adjust padding for smaller screens */
    }
}


/* Services Section Styles */
.services {
    background-color: #FFFFFF; /* White */
    padding: 60px 0;
    text-align: left;
}

.services-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.services-description {
    max-width: 40%;
    padding-right: 20px; /* Add padding to the right */
    padding-left: 20px;
}

.services-heading {
    font-size: 34px;
    font-weight: 700;
    color: #003049; /* Dark slate gray */
    margin-bottom: 10px;
}

.services-subheading {
    font-size: 18px;
    margin-bottom: 10px;
    color: #34495e; /* Light slate gray */
}

.services-details {
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e; /* Light slate gray */
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 40%;
}

.service-item {
    display: flex;
    align-items: center;
    background-color: #ecf0f1; /* Light gray */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
    flex: 0 0 50px;
    font-size: 50px;
    color: #2980b9; /* Medium blue */
    margin-right: 15px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #003049; /* Dark slate gray */
}

.service-content p {
    font-size: 16px;
    color: #34495e; /* Light slate gray */
}

.services-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-primary {
    background-color: #2980b9; /* Medium blue */
    color: #ecf0f1; /* Light gray */
    border: none;
}

.btn-secondary {
    background-color: transparent;
    color: #2980b9; /* Medium blue */
    border: 1px solid #2980b9; /* Medium blue */
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #2980b9; /* Medium blue */
    color: #ecf0f1; /* Light gray */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-description {
        padding-right: 10px; /* Adjust padding for tablet */
    }
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    .service-icon {
        margin: 0 auto 10px; /* Center align icon */
    }
    .service-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-content {
        flex-direction: column;
    }
    .services-description {
        max-width: 100%;
        padding-right: 0;
    }
    .services-list {
        max-width: 100%;
    }
    .service-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .services-buttons {
        flex-direction: column;
        gap: 15px;
    }
}
/* Adjusting the GIF size for responsiveness */

.services-image {
    max-width: 100%; /* Ensure the GIF does not exceed the container width */
    height: auto;    /* Maintain aspect ratio */
    margin: 0 auto;  /* Center the GIF */
    display: block;  /* Ensures proper centering */
}

/* Add spacing above second GIF */
.services-image.services-image-secondary {
    margin-top: 100px;
}



/* Specific adjustments for smaller screens */
@media (max-width: 768px) {
    .services-image {
        max-width: 90%; /* Slightly reduce size for tablet view */
    }
}

@media (max-width: 480px) {
    .services-image {
        max-width: 80%; /* Further reduce size for small mobile screens */
        margin-top: 10px; /* Add spacing for better layout */
    }
}

@media (max-width: 480px) {
    .service-item {
        width: 100%; /* Ensure the containers fit within the screen width */
        margin: 10px auto; /* Center the containers and add margin */
        padding: 10px; /* Adjust padding for smaller screens */
        box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    }
    .services-description,
    .services-list {
        max-width: 100%;
        padding: 0 10px; /* Adjust padding for mobile screens */
        box-sizing: border-box; /* Ensure padding is included in the width calculation */
    }
}


/* Team Section Styles */
.team {
    padding: 80px 0;
    text-align: center;
    background-color: #003049; /* Light gray */
}

.team-heading {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff; /* white */
    margin-bottom: 15px;
}

.team-subheading {
    font-size: 18px;
    margin-bottom: 50px;
    color: #ecf0f1; /* Light slate gray */
}

.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background-color: #ffffff; /* White */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: scale(1.02);
}

.member-image img {
    border-radius: 15px;
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.member-info {
    margin-left: 40px;
    text-align: left;
}

.member-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50; /* Dark slate gray */
}

.member-role {
    display: inline-block;
    font-size: 16px;
    background-color: #2980b9; /* Medium blue */
    color: #ffffff; /* White */
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 16px;
    color: #34495e; /* Light slate gray */
    line-height: 1.6;
}

/* Mobile and Tablet Adjustments */
@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .member-info {
        margin-left: 0;
        text-align: center;
    }

    .member-image img {
        width: 200px;
        height: 200px;
    }

    .team-heading {
        font-size: 28px;
    }

    .team-subheading {
        font-size: 16px;
    }
}
/* Our Clientele Section */
.clientele {
  padding: 50px 0;
  background-color: #ffffff;
  text-align: center;
}

.clientele-heading {
  font-size: 2em;
  margin-bottom: 20px;
  color: #003049;
}

.clientele-subheading {
  font-size: 1em;
  color: #34495e;
  margin-bottom: 30px;
}

/* New Grid Layout */
.clientele-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  max-width: 90%;
  margin: 0 auto;
  padding-top: 30px;
}

.clientele-item {
  padding: 20px;
  background-color: #dee2e6;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clientele-item:hover {
  transform: scale(1.05);
}

.clientele-item i {
  font-size: 2em;
  color: #023047;
  margin-bottom: 10px;
}

.clientele-item h3 {
  font-size: 1em;
  color: #2c3e50;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .clientele-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }

  .clientele-item {
    height: auto;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .clientele-grid {
    grid-template-columns: 1fr;
  }

  .clientele-item {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

/* We Are Expanding Section Styles */
.expanding {
    padding: 60px 0;
    background-color: #023047; /* Light gray */
    text-align: center;
    color: #2c3e50; /* Dark slate gray */
}

.expanding-heading {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff; /* Medium blue */
    margin-bottom: 10px;
}

.expanding-subheading {
    font-size: 16px;
    margin-bottom: 40px;
    color: #bde0fe; /* Light slate gray */
}

.expanding-cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.expanding-card {
    background-color: #ffffff; /* White */
    color: #2c3e50; /* Dark slate gray */
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.card-icon {
    font-size: 40px;
    color: #2980b9; /* Medium blue */
    margin-bottom: 15px;
}

.expanding-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50; /* Dark slate gray */
}

.expanding-card p {
    font-size: 14px;
    margin-bottom: 20px; /* Ensure space between paragraph and iframe */
    color: #34495e; /* Light slate gray */
}

.expanding-card iframe, .expanding-card img {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 10px;
    margin-top: 10px; /* Add margin to space out iframes/images */
}

/* Mobile and Tablet Adjustments */
@media (max-width: 768px) {
    .expanding-cards {
        flex-direction: column;
        align-items: center;
    }
    .expanding-card {
        width: 100%;
        margin-bottom: 20px;
        padding: 10px; /* Adjust padding for smaller screens */
        box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    }
}

/* FAQ Section Styles */
.faq {
    padding: 60px 40px;
    background-color: #ecf0f1; /* Light gray */
    text-align: left;
}

.faq-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.faq-list {
    flex: 1;
    margin-right: 20px; /* Add some margin to the right */
}

.faq-heading {
    font-size: 34px;
    font-weight: 700;
    color: #003049; /* Dark slate gray */
    margin-bottom: 10px;
}

.faq-subheading {
    font-size: 20px;
    margin-bottom: 20px;
    color: #34495e; /* Light slate gray */
}

.faq-item {
    margin-bottom: 20px;
    padding: 10px;
    text-align: left;
    border: 1px solid #2980b9; /* Medium blue */
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: #ffffff; /* White */
    color: #2c3e50; /* Dark slate gray */
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background-color: #ffffff; /* White */
    color: #34495e; /* Light slate gray */
}

.arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-image {
    flex: 0 0 400px; /* Adjust to fit the image within the length */
    margin-left: 20px; /* Add some margin to the left */
}

.faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Mobile and Tablet Adjustments */
@media (max-width: 768px) {
    .faq-content {
        flex-direction: column;
    }
    .faq-list {
        margin-right: 0;
    }
    .faq-image {
        display: none; /* Hide image on smaller screens */
    }
}


/* Contact Form Section Styles */
.contact-form {
    padding: 40px 0;
    background-color: #023047; /* Light gray */
    text-align: center;
    color: #2c3e50; /* Dark slate gray */
}

.contact-form-heading {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff; /* Medium blue */
    margin-bottom: 10px;
}

.contact-form-subheading {
    font-size: 18px;
    margin-bottom: 40px;
    color: #8ecae6; /* Light slate gray */
}

.form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff; /* White */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50; /* Dark slate gray */
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bdc3c7; /* Light gray */
    border-radius: 5px;
    font-size: 16px;
    color: #2c3e50; /* Dark slate gray */
    box-sizing: border-box;
}

input::placeholder, textarea::placeholder {
    color: #7f8c8d; /* Light gray */
}

.submit-button {
    background-color: #2980b9; /* Medium blue */
    color: #ffffff; /* White */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #2c3e50; /* Dark slate gray */
}

/* Mobile and Tablet Adjustments */
@media (max-width: 768px) {
    .contact-form-heading {
        font-size: 28px;
    }

    .form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    input, textarea {
        font-size: 14px;
    }

    .submit-button {
        padding: 12px;
    }
}
/* Footer Section Styles */
.footer {
    background-color: #2c3e50; /* Dark slate gray */
    color: #ecf0f1; /* Light gray */
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.footer-section {
    margin-bottom: 20px;
    width: 30%;
}

.logo-section {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    max-width: 60px;
    margin-right: 15px;
}

.footer-section h3, .footer-section h4 {
    color: #2980b9; /* Medium blue */
    margin-bottom: 10px;
}

.footer-section p, .footer-section a, .footer-section ul {
    color: #caf0f8; /* Light slate gray */
    text-decoration: none;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section i {
    margin-right: 8px;
}

.image-section {
    text-align: center;
}

.footer-image {
    max-width: 100%;
    height: auto;
}

/* Footer Section Styles */
.footer {
    background-color: #2c3e50; /* Dark slate gray */
    color: #ecf0f1; /* Light gray */
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.footer-section {
    margin-bottom: 20px;
    width: 30%;
}

.logo-section {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    max-width: 60px;
    margin-right: 15px;
}

.footer-section h3, .footer-section h4 {
    color: #2980b9; /* Medium blue */
    margin-bottom: 10px;
}

.footer-section p, .footer-section a, .footer-section ul {
    color: #caf0f8; /* Light slate gray */
    text-decoration: none;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section i {
    margin-right: 8px;
}

.image-section {
    text-align: center;
}

.footer-image {
    max-width: 100%;
    height: auto;
}

/* Footer Bottom - Improved */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #caf0f8; /* Light gray */
    flex-wrap: wrap;
    text-align: center;
}

/* Ensuring proper text alignment */
.footer-left, .footer-right {
    flex: 1;
    text-align: center;
    margin: 5px 0;
    color: #caf0f8; /* Light slate gray */
    white-space: normal; /* Allows wrapping */
    max-width: 100%; /* Ensures it doesn't overflow */
}

.footer-social {
    flex: 1;
    display: flex;
    justify-content: center; /* Centering social icons */
    gap: 15px;
}

.footer-social a {
    color: #2980b9; /* Medium blue */
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #34495e; /* Light slate gray */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        width: 100%;
        text-align: center;
        padding: 0 10px; /* Adjust padding for mobile screens */
        box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 0 10px; /* Adjust padding for mobile screens */
        box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }

    .footer-left, .footer-right {
        text-align: center;
        margin-bottom: 10px;
        max-width: 100%; /* Ensure it fits within the screen */
        white-space: normal; /* Allows wrapping */
    }

    .footer-logo {
        max-width: 40px; /* Reduce logo size for mobile screens */
        margin: 0 auto 15px; /* Center align the logo */
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}
