*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    padding: justify;
}
:root {
    --canva-green: #00C6B3;  /* Mint Green */
    --canva-black: #000000;  /* Black */
    --canva-white: #FFFFFF;  /* White */
    --canva-light-gray: #F2F2F2;  /* Light Gray */
    --canva-dark-gray: #333333;  /* Dark Gray */
    --canva-pink: #FF4081;  /* Accent Pink */
    --canva-blue: #00AEEF;  /* Accent Blue */
    --canva-yellow: #FFEB3B;  /* Accent Yellow */
    --canva-orange: #FFA500;  /* Orange */
    --canva-black: #000000;   /* Black */
    --canva-white: #FFFFFF;   /* White */
    --canva-light-gray: #F2F2F2;  /* Light Gray */
    --canva-dark-gray: #333333;  /* Dark Gray */
    --canva-pink: #FF4081;  /* Accent Pink */
    --canva-blue: #00AEEF;  /* Accent Blue */
    --canva-yellow: #FFEB3B;  /* Accent Yellow */
}
.header1 {
    position: relative;
  width: 100%;
  min-height: 300px; /* ensures background shows */
  background-image: url("../images/stella arial.jpg");
  background-position: center;
  background-size: cover;
  padding-top: 100px; /* Space from the top, adjust as needed */
  background-repeat: no-repeat;
}
.header2{
  position: relative;
  width: 100%;
  min-height: 300px; /* ensures background shows */
  background-image: url("../images/team2.JPG");
  background-position: center;
  background-size: cover;
  padding-top: 20%; /* Space from the top, adjust as needed */
  background-repeat: no-repeat;
}
.header2 h4{
    margin: 2px 1px;
    font-size: 60px;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    text-align: center;
    padding-top: -20%;
}
.header2 p{
    margin: 10px 0 40px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    text-align: center;
}


nav {
    display: flex;
    position: fixed;
    padding: auto;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5); /* Transparent black */
    backdrop-filter: blur(10px); /* Adds a blur effect */
    z-index: 1000; /* Ensures the navbar stays on top */
    transition: 0.3s ease-in-out;
}
.dropdown-content {
    display: none; /* Hide the dropdown by default */
    position: absolute;
    top: 100%; /* Position it below the parent menu item */
    left: 0;
    background-color: #4f5e67; /* Background color for dropdown */
    min-width: 160px; /* Width of the dropdown */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Optional: Shadow for effect */
    z-index: 1;
}

/* Show the dropdown when hovering over the parent list item */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style for the individual dropdown items */
.dropdown-content li {
    padding: 10px;
    text-align: left;
}

/* Hover effect for the links in the dropdown */
.dropdown-content a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

.dropdown-content a:hover {
    background-color: #575757; /* Darker shade when hovering */
}

/* Optional: Highlight the "ABOUT" link when hovering over the parent */
.dropdown:hover > a {
    background-color: #575757;
}

/* fa-times (close) */
.fa-times {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* fa-bars (hamburger) */
.fa-bars {
  font-size: 26px;
  color: #A8C3E8;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}
@media (min-width: 769px) {
  .fa-bars,
  .fa-times {
    display: none; /* Hide icons on big screens */
  }
}
nav img {
    width:100px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul {
    padding: 0;
    margin: 0;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #A8C3E8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.nav-links ul li a:hover {
    color: #f44336; /* Change color on hover */
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    position: relative;
    z-index: 1; /* Ensures it stays below the overlap */
  }
/* Default (desktop) */
.text-box h1 {
    font-size: 62px;
    text-align: center;
    padding: 40px 0 0 0;
    color: var(--canva-light-gray);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 18px;
    color: #ffffff; /* clean white */
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* readability */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* floating shadow */
}

/* Tablet screens */
@media (max-width: 768px) {
    .text-box h1 {
        font-size: 50px;
        padding: 30px 0 0 0;
    }
    .text-box p {
        font-size: 16px;
        margin: 8px 0 30px;
    }
}

/* Mobile screens */
@media (max-width: 480px) {
    .text-box h1 {
        font-size: 28px;
        padding: 20px 0 0 0;
    }
    .text-box p {
        font-size: 14px;
        margin: 6px 0 25px;
    }
}



  
.overlap {

   
        display: flex;
        gap: 20px;
        position: relative;  /* Change from relative to absolute to make it float */
        top: auto;
        bottom: -100px;  /* Increase this value to push it down more */
        left: 50%;
        transform: translateX(-50%);  /* Centers the section */
        width: 90%;  /* Ensures responsiveness */
        z-index: 3;  /* Makes sure it's above the Education section */
        background-color: white;  /* Fully white background */
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);  /* Optional: Adds slight shadow for better visibility */

  }
  .overlap h1{
    text-align: center;
    color: #0A2647;
  }

@media (max-width: 1024px) {
    .overlap {
        flex-direction: column;
        width: 95%;
        bottom: -50px;
        padding: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .overlap {
        width: 100%;
        bottom: -30px;
        padding: 10px;
    }

    .overlap h1 {
        font-size: 18px;
        text-align: center;
    }

    .overlap p {
        font-size: 14px;
    }
}
.card {
    background: white; /* Default background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.4s ease-in-out, transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Slight lift effect */
}


.centered-slogan {
  position: relative;          /* Float above background */
  left: 50%;                   /* Push to center */
  top: 20px;                   /* Adjust vertical position as needed */
  transform: translateX(-50%); /* Exact centering */
  width: 90%;                  /* Responsive width */
  max-width: 500px;            /* Limit width on large screens */
  background-color: #A8C3E8;   /* Background */
  padding: 10px 15px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #ffffff; /* clean white */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* shadow for readability */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* soft floating shadow */
  word-wrap: break-word;       /* Prevents text overflow */
}


/* Tablet */
@media (min-width: 600px) {
  .motto {
    font-size: 16px;
    max-width: 70%;
    margin: 0 auto 20px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .motto {
    font-size: 18px;
    max-width: 50%;
    margin: 0 auto 20px;
  }
}



/* board members area styles */

.board-members {
  position: relative;
  width: 100%;
  z-index: 2; /* Overlaps other sections */
  text-align: center;
  padding-top: 120px;
  background: #f7f8fa; /* light clean bg */
}

.board-members h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
  font-weight: 700;
  letter-spacing: 1px;
}

.member-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.member-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  width: 270px;
  padding: 22px 20px 28px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(212,175,55,0.15); /* default gold border */
  overflow: hidden;
}

/* Leadership cards */
.member-card.leadership {
  border-color: rgba(212,175,55,0.3); /* gold */
}

/* Administration cards */
.member-card.admin {
  border-color: rgba(70,130,180,0.3); /* steel blue */
  border-radius: 20px; /* slightly different radius */
}

/* Hover effect */
.member-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0,0,0,0.15);
  border-color: rgba(212,175,55,0.45);
}

/* Ribbon */
.member-card::before {
  content: "STELLA SCHOOL";
  position: absolute;
  top: 20px;
  left: -60px;
  transform: rotate(-45deg);
  background: linear-gradient(90deg, #d4af37, #b99309);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 70px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  white-space: nowrap;
}

/* Member image */
.member-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  padding: 4px;
  background: linear-gradient(135deg, #d4af37, #f9f295);
}

/* Name */
.member-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #111;
  font-weight: 700;
}

/* Role */
.member-card p.role {
  font-size: 14px;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bio button */
.view-bio {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #d4af37, #b99309);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.view-bio:hover {
  background: linear-gradient(90deg, #b99309, #d4af37);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}

.modal-content h2 {
  margin-top: 0;
  font-size: 22px;
  color: #222;
}

.modal-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}
.close:hover {
  color: #000;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}








form {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

fieldset {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
}

legend {
  font-weight: bold;
}

label {
  display: block;
  margin-bottom: 10px;
}

input, select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
}





/* group button holds the button */
.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.hero-btn {
  padding: 12px 24px;
  text-decoration: none;
  background-color: #004aad; /* Default button color */
  color: white;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-btn:hover {
  background-color:  #A8C3E8; /* Darker blue on hover */
}

.register-btn {
  padding: 12px 24px;
  text-decoration: none;
  background-color: #23cb53; /* Green for register */
  color: white;
  border-radius: 5px;
  transition: 0.3s;
}


.register-btn:hover {
  background-color: #1a9c3f;
}


/* Hero button styles */
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}





@media (max-width: 700px) {
    /* Add this rule to show icons on small screens */
    nav-links .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    /* Adjust other styles for small screens here */
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    .nav-links ul {
        padding: 30px;
    }
}

/*------- Education ------*/
.about1{
    position: relative;
    width:80%;
    margin:auto;
    z-index: 2; /* Makes sure the overlap section is above the text-box */
    text-align: center;
    padding-top:140px;
    text-color: #000;
    background-color: #A8C3E8;
}
.who-we-are{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 1px 2px;
    cursor: pointer;
    display: flex;
}
.who-we-are:hover{
    box-shadow:0 0 20px 0px rgba(0,0,0,0.2);
}
.who-we-are img{
   height: 80px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
    
}
.who-we-are p{
    padding: 0;
    text-align: justify;
    
}
.who-we-are h3{
    margin-top: 15px;
    text-align: left;
}
.highlight-name {
    color: #0073e6; /* Blue color */
    font-weight: bold;
    background-color: #e0f2ff; /* Light blue background */
    padding: 2px 6px;
    border-radius: 5px;
}
.social-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: #333;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    color: #0A66C2; /* LinkedIn Blue or choose your theme color */
  }
  
.who-we-are .fa{
    color: #f44336;
}
@media(max-width: 700px){
    .who-we-are img{
    margin-left: 0px;
    margin-right: 15px;
}

    
}
h1{
    font-size: 36px;
    font-weight: 600px;
}
p{
    
    padding: 5px;
    text-align: left
    
    
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    
}.Education-col{
    flex-basis: 31%;
background: #A8C3E8;
border-radius: 10px;
margin: 20px 12px; /* Fixed incorrect syntax */
box-sizing: border-box;
transition: 0.5s;
text-align: left;
text-justify: inter-word;
hyphens: auto;
letter-spacing: -0.5px; /* Adjust as needed */
word-spacing: -1px;  
}
.Education h1 {
    text-align: center;
}
.Education p{
    padding: 5px;
    text-align: left
    
    
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    
}
.Education-col:hover{
    box-shadow:0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
/* Default: Large screens (Desktop) */
/* Tablets: 2 columns */
@media (max-width: 1024px) {
    .row {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    .column {
        flex: 1 1 calc(50% - 20px); /* 2 columns */
    }
}

/* Mobile: 1 column */
@media (max-width: 700px) {
    .row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .column {
        flex: 1 1 100%; /* Full width */
    }
}

/*----------Compound---------*/

.Compound {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px; /* Added "px" unit */
    background-color: #A8C3E8;
}

.Compound-col {
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.Compound-col img {
    width: 100%;
    display: block;
}
.Compound p{
    padding: 5px;
    text-align: left
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}.layer:hover{
    background:rgba(255, 218, 0, 0.7)
}.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26;
    bottom:0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}
/*-------facilities-------*/
.Facilities {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
}
.Facilities-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin: 15px;   /* space around the card */
    padding: 15px;
    text-align: left;
    background: #fff;
    transition: 0.3s ease;
}




.Facilities-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.Facilities-col img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.Facilities-col h3 {
    margin: 10px 0;
    text-align: left;
    color: #333;
}

.Facilities-col p {
    padding: 5px 0;
    text-align: left;
    color: #555;
}

/* Sponsorship button */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}
.btn:hover {
    background: #0056b3;
}

/* Progress bar */
.progress-container {
    background: #f3f3f3;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 10px;
}
.progress-bar {
    background: #28a745;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/*------- testimonials -------*/

.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonial-col:hover{
    box-shadow:0 0 20px 0px rgba(0,0,0,0.2);
}
.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonial-col p{
    padding: 0;
    
}
.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonial-col .fa{
    color: #f44336;
}
@media(max-width: 700px){
    .testimonial-col img{
    margin-left: 0px;
    margin-right: 15px;
}
    
}

/*----- call to action -----*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/comp4.jpeg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 10px 0;
    
}

  
  .cta .hero-btn:hover {
    background-color: #00ff62; /* Darker on hover */
  }
  
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
.cta p {
    color: #f1f1f1; /* Softer white/gray color */
    margin-bottom: 40px; /* Space below the paragraph */
    padding: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); /* Dark shadow for contrast */
    font-size: 18px; /* Adjust text size */
    line-height: 1.6; /* Improve line spacing for readability */
}


@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*----- call to action -----*/


.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.fa-heart-o{
    color: #f44336;
    
}

/*----- about us page -----*/
.Sub-header {
    height: 60vh;
    width: 100%;
    background-image: url("../images/team2.JPG");
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.Sub-header h1 {
    margin-top: 100px;
    text-align: center; /* Centers text */
    padding-top: 100px;
}

.about-us {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-us p{
    padding: auto;
}

.about-col {
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img {
    width: 100%;
}

.about-col h1 {
    padding-top: 0;
}

.about-col p {
    padding: 15px 0 25px;
}
.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.red-btn:hover{
    color: #fff;
}

/*----- blog page content -----*/

.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
    
}
.blog-left{
    flex-basis: 65%;
}
.blog-left img{
    width: 100%;
    
}
.blog-left h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}
.blog-left p{
    color: #fff;
    text-shadow: #000000;
    font-size: 18px;
    text-align: auto;
}
.blog-right{
    flex-basis: 32%;
}
.blog-right h3{
    background: #f44336;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}
.comment-box{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}
.comment-box h3{
    text-align: left;
}
.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form button{
    margin: 10px 0;
    
}

@media(max-width:700px){
    .sub-header h1{
        font-size: 24px;
    }
}

/*----- blog page content -----*/

.location{
    width: 50%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}
.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
/*----- footer section -----*/

.footer {
    background-color: #fff;
    color: #333;
    padding: 40px 20px;
    text-align: center;
}
.footer-bottom {
    width: 100%; /* Make sure it takes up the full width */
    text-align: center; /* Center the text */
}

.Nehemiah {
    display: inline-block; /* Makes the <p> behave like a block element but allows for centering */
}


.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-about, .footer-social, .footer-partners {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.footer h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left; /* Align text to the left */
}


.footer-social .icons i {
    font-size: 1.5rem;
    margin-right: 15px;
    cursor: pointer;
}

.footer-social .icons i:hover {
    color: #0073e6;
}
.footer-quick-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-partners {
    text-align: center;
    padding: 20px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: moveLogos 10s linear infinite; /* 10s for animation duration, adjust as needed */
}

.partner-logos img {
    width: 80px; /* Adjust logo size */
    height: auto;
}

@keyframes moveLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Move logos to the left */
    }
}


.footer-bottom {
    margin-top: 20px;
    font-size: 1rem;
}

.footer-bottom i {
    color: #f44336; /* Heart color */
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-about, .footer-social, .footer-partners .footer-quick-links {
        text-align: center;
        max-width: 90%;
    }
}
