* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Libre Baskerville', serif;
  line-height: 1.5;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100vw;
  height: auto;
  display: block;
}

/* Hero Overlay Flex Section (Services Style) */
.overlay-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.overlay-left {
  flex: 0 0 auto;
  padding-left: 6vw;
  padding-right: 2vw;
  display: flex;
  align-items: center;
  height: 100%;
}

.overlay-title {
  font-size: 4.5rem;
  font-weight: 400;
  color: #fff;
  font-family: 'Libre Baskerville', serif;
  letter-spacing: 0px;
  text-align: left;
  margin-bottom: 0;
  line-height: 0.9;
  font-style: normal;
}

.overlay-divider {
    width: 2px;
    height: 180px;
    background: white;
    margin: 0 3vw;
    opacity: 0.5;
}

.overlay-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  padding-right: 6vw;
  text-align: left;
  gap: 0.8em;
  font-weight: 300;
}

.overlay-quote {
  font-size: 1.1rem;
  font-style: normal;
  color: #fff;
  margin-bottom: 0.3em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  opacity: 1;
  gap: 0.8em;
}

@media (max-width: 991px) {
  header {
    height: auto;
    min-height: 60vh;
  }
  .overlay-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .overlay-left h1 {
    font-size: 2.5rem;
  }
  .overlay-right p {
    font-size: 1rem;
  }
  .card-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
  }
  .cards {
    padding: 15px;
    font-size: 1rem;
  }
  .info-boxes {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .info-box {
    max-width: 90%;
    margin: 0 auto 10px auto;
  }
  .images {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .images img {
    max-width: 140px;
  }
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .overlay-title {
    font-size: 2rem;
  }
  .overlay-quote {
    font-size: 1rem;
  }
  .card-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }
  .cards {
    padding: 10px;
    font-size: 0.95rem;
  }
  .info-boxes {
    gap: 10px;
  }
  .info-box {
    max-width: 100%;
    margin: 0 auto 5px auto;
  }
  .images {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .images img {
    max-width: 120px;
  }
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }
  .footer-section {
    margin: 15px 0;
    padding: 5px;
    text-align: center;
  }
  .footer-logo img {
    height: 70px;
    margin: 10px auto;
  }
  .social-icons {
    gap: 8px;
    margin-top: 8px;
  }
  .social-icons a {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  header {
    min-height: 40vh;
    padding-top: 60px;
  }
  .overlay-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0 10px;
  }
  .overlay-left h1 {
    font-size: 1.5rem;
  }
  .overlay-title {
    font-size: 1.2rem;
  }
  .overlay-quote {
    font-size: 0.9rem;
  }
  .card-container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 5px;
  }
  .cards {
    padding: 8px;
    font-size: 0.85rem;
  }
  .info-boxes {
    gap: 8px;
  }
  .info-box {
    max-width: 100%;
    margin: 0 auto 5px auto;
    font-size: 0.9rem;
  }
  .images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .images img {
    width: 100%;
    max-width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
  }
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.95rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px;
  }
  .footer-section {
    margin: 10px 0;
    padding: 5px;
    text-align: center;
  }
  .footer-logo img {
    height: 50px;
    margin: 8px auto;
  }
  .social-icons {
    gap: 6px;
    margin-top: 6px;
  }
  .social-icons a {
    width: 30px;
    height: 30px;
  }
}

/* Header Section */
header {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

header .background {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
  height: 70%;
  z-index: -1;

}

header .background img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  /* filter: blur(2px); */

}

header .overlay {
  position: absolute;
  text-align: center;
  color: black;
  z-index: 1;
}

header h1 {
  font-size: 3.5rem;
  font-weight: 600;
}

header p {
 padding-top: 15px;
  margin-bottom: 20%;
  font-size: 2rem;
  font-family:bold;  
}

header p span {
  color: azure;
}

/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px 0;
  transition: background 0.3s ease;
  
}
nav .logo img {
  width: auto;
  height: 80px;
  position: relative;
  margin-left: 90%;  
}


nav .menu-checkbox {
  padding: 10px;
  display: none;
}

nav .menu-icon {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

nav .menu-icon .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: #333;
  transition: 0.3s;
}

nav .nav-links {
  margin-right: 5%;
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav .nav-links li a {
  color: #333;
  font-size: 1rem;
  font-weight: 540;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

nav .nav-links li a:hover {
  color: #f9b233;
}

@media (max-width: 768px) {
  nav .menu-checkbox {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    opacity: 0;
    z-index: 1002;
  }

  nav .menu-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
  }

  nav .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
  }

  nav .nav-links.active {
    display: flex;
  }

  nav .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }

  nav .nav-links li a {
    color: #333;
    font-size: 1rem;
  }

  nav .menu-checkbox:checked ~ .nav-links {
    display: flex;
  }
}

@media (max-width: 991px) {
  /* Header responsiveness */
  header {
    height: auto;
    min-height: 60vh;
  }
  
  header .background {
    top: 0;
    height: 100%;
  }
  
  .overlay-flex {
    padding: 0 3rem;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .overlay-title {
    font-size: 3.5rem;
    line-height: 0.9;
  }
  
  .overlay-divider {
    height: 140px;
    margin: 0 2.5vw;
  }
  
  .overlay-right {
    font-size: 1rem;
    padding-right: 3vw;
    line-height: 1.7;
  }
  
  .overlay-quote {
    font-size: 1rem;
  }
  
  /* Navbar responsiveness */
  nav .logo img {
    height: 70px;
    margin-left: 5%;
  }
  
  nav .nav-links {
    margin-right: 5%;
  }
  
  .hero {
    margin-left: -22%;
    height: 44vh;
  }
}

@media (max-width: 768px) {
  /* Header responsiveness */
  header {
    height: 100vh;
  }
  
  header .background {
    top: 0;
    height: 100%;
  }
  
  header .background img {
    height: 100%;
    object-fit: cover;
  }
  
  .overlay-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    text-align: center;
  }
  
  .overlay-left {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .overlay-title {
    font-size: 2.5rem;
    text-align: center;
    line-height: 0.9;
  }
  
  .overlay-divider {
    width: 80px;
    height: 2px;
    margin: 1rem 0;
    align-self: center;
  }
  
  .overlay-right {
    align-items: center;
    padding-right: 0;
    text-align: center;
  }
  
  .overlay-quote {
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    max-width: 90vw;
  }
  
  /* Navbar responsiveness */
  nav .menu-checkbox {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    opacity: 0;
    z-index: 1002;
  }

  nav .menu-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
  }

  nav .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
  }

  nav .nav-links.active {
    display: flex;
  }

  nav .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }

  nav .menu-checkbox:checked ~ .nav-links {
    display: flex;
  }

  nav .nav-links li a {
    color: #333;
    font-size: 1rem;
  }

  nav .menu-checkbox:checked ~ .nav-links {
    display: flex;
  }

  nav .logo img {
    height: 60px;
    margin-left: 5%;
  }
}


@media (max-width: 480px) {
  /* Header responsiveness */
  header {
    height: 100vh;
  }
  
  header .background {
    top: 0;
    height: 100%;
  }
  
  header .background img {
    height: 100%;
    object-fit: cover;
  }
  
  .overlay-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
  }
  
  .overlay-left {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1rem;
  }
  
  .overlay-title {
    font-size: 2rem;
    text-align: center;
    line-height: 0.9;
  }
  
  .overlay-divider {
    width: 60px;
    height: 2px;
    margin: 1rem 0;
  }
  
  .overlay-right {
    align-items: center;
    text-align: center;
    padding-right: 0;
  }
  
  .overlay-quote {
    font-size: 0.9rem;
    text-align: center;
    max-width: 95vw;
    line-height: 1.4;
  }

  header .overlay h1 {
    font-size: 2.5rem;
    margin-top: -10%;
  }

  header .overlay p {
    font-size: 1.2rem;
  }

  /* Navbar responsiveness */
  nav .nav-links li a {
    font-size: 0.9rem;
  }

  nav .logo img {
    height: 70px;
    margin-left: 80%;
  }
}

@media (max-width: 375px) {
  /* Header responsiveness for very small devices */
  header {
    height: 100vh;
  }
  
  .overlay-flex {
    padding: 0 0.5rem;
  }
  
  .overlay-title {
    font-size: 1.8rem;
  }
  
  .overlay-quote {
    font-size: 0.85rem;
    max-width: 98vw;
  }
  
  .overlay-divider {
    width: 50px;
    margin: 0.8rem 0;
  }
  
  /* Navbar responsiveness */
  nav .logo img {
    height: 45px;
    margin-left: 80%;
  }
  
  nav .nav-links li a {
    font-size: 0.85rem;
  }
}


/* Practice area Section */
.practice-area-container {
  /* background-color: rgba(43, 110, 152, 1); */
  text-align: center;
  padding: 20px;
}

.section-title {
  font-size: 2rem;
  padding-top: 30px;
  margin-bottom: 15px;
  color: black;
}

.section-description {
  font-size: 16px;
  margin: 0 auto;
  max-width: 500px;
  line-height: 1.5;
  color: black;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
}

.cards {
  background-color: #5d85a9;
  padding: 25px;
  border-radius: 15px;
  max-width: 267px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  transition: all 0.3s ease;
}

.card-icon {
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.cards-title {
  font-size: 1.5rem;
  margin: auto;
  padding-bottom: 10px;
  color: #FFFFFF;
}

.cards-description {
  padding-top: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 15px 0;
  color: #D9E4EC;
  border-top: 1px solid white;
  padding-bottom: 15px;
}

.cards-button {
  background-color: #FFFFFF;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cards-button:hover {
  background-color: #D9E4EC;
  color: #2C4E68;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  padding-top: 60px;
}

.modal-content {
  background-color:#5d85a9;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
}

.modal-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.modal-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
}

.close-btn {
  color: #aaa;
  font-size: 2rem;
  font-weight: bold;
  position: relative;

  /* top: 192px;
  right: 174px; */
  /* top: 10px;
  right: 10px; */
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-icon {
  width: 70px;
    height: 70px;
    margin-left: 40%;
}
/* Responsive Design */
@media (max-width: 768px) {
  .card-container {
    grid-template-columns: 1fr; 
    padding: 30px 20px;
  }

  .cards {
      max-width: 50%;
        height: 104%;
        padding: 10px;
  }

  .cards-title {
    font-size: 1.3rem;
  }

  .cards-description {
    font-size: 0.85rem;
  }

  .cards-button {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .practice-area-container {
    padding: 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .card-container {
    padding: 20px 10px;
  }

  .cards {
    max-width: 100%; 
    height: 250px; 
    padding: 10px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .cards-title {
    font-size: 1.2rem;
  }

  .cards-description {
    font-size: 0.8rem;
  }

  .cards-button {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}


/*Why choose us*/
.container {
  width: 90%;
  max-width: 1200px;
  text-align: center;
  background-color: #fff;
  margin: 70px auto 0;
  border-radius: 10px;
  padding: 20px;
}

.info-boxes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 15px;
}

.info-box {
  width: 100%;
  height: auto;
  min-height: 120px;
  max-width: 450px;
  margin: 0px 0 10px calc(var(--stair-offset, 0) * 255px);
  padding: 15px;
  border: 1px solid black;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.info-box img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.info-box p {
    padding-left: 10px;
    margin: 0;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.5; 
}

.info-box:nth-child(1) {
  --stair-offset: 1.1;
}

.info-box:nth-child(2) {
  --stair-offset: 2.1;
}

.info-box:nth-child(3) {
  --stair-offset: 3.1;
}

.why-choose-us {
  font-family: 'Montserrat', sans-serif;
  color: black;
  text-align: center;
  margin: 40px 0 35px 0;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0;
}

.content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto 30px;
  width: 100%;
  gap: 50px;
}

.images {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 350px;
  flex-shrink: 0;
}

.images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.text {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 0 20px;
  text-align: left;
} 

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    width: 95%;
    padding: 15px;
  }

  .info-boxes {
    align-items: center;
  }
  
  .info-box {
    max-width: 84%;
    margin: 0px 0 10px calc(var(--stair-offset, 0) * 120px);
  }
  
  .info-box:nth-child(1) {
    --stair-offset: 0;
  }

  .info-box:nth-child(2) {
    --stair-offset: 2;
  }

  .info-box:nth-child(3) {
    --stair-offset: 4;
  }
  
  .content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .images {
    width: 400px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .images img {
    width: 180px;
    height: 150px;
  }
  
  .text {
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.7;
    padding: 20px;
    text-align: center;
  }
  
  .why-choose-us {
    font-size: 2.2rem;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .info-boxes {
    align-items: center;
  }

  .info-box {
    max-width: 80%;
    margin: 0px 0 10px calc(var(--stair-offset, 0) * 120px);
  }
  
  .info-box:nth-child(1) {
    --stair-offset: 1.1;
  }

  .info-box:nth-child(2) {
    --stair-offset: 2.3;
  }

  .info-box:nth-child(3) {
    --stair-offset: 4;
  }
  
  .info-box p {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.4;
  }

  .content {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .images {
    width: 350px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .images img {
    width: 160px;
    height: 130px;
  }

  .text {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    width: 98%;
    padding: 10px;
  }
  
  .info-boxes {
    align-items: center;
  }

  .info-box {
    max-width: 100%;
    margin: 6px auto 10px;
    padding: 12px;
  }
  
  .info-box p {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.4;
  }
  
  .info-box img {
    width: 60px;
    height: 60px;
  }

  .why-choose-us {
    font-size: 2rem;
    margin: 30px 0 25px 0;
  }

  .content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .images {
    width: 300px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .images img {
    width: 140px;
    height: 120px;
  }
  
  .text {
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    margin: 50px auto 0;
    padding: 8px;
  }
  
  .info-box {
    max-width: 100%;
    margin: 0px auto 8px;
    padding: 10px;
    flex-direction: column;
    text-align: center;
    height: auto;
    min-height: 100px;
  }

  .info-box p {
    font-size: 1rem;
    line-height: 1.3;
    padding: 5px;
    text-align: center;
  }

  .info-boxes {
    align-items: center;
    gap: 10px;
  }

  .why-choose-us {
    font-size: 1.8rem;
    margin: 20px 0 15px 0;
  }

  .info-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }

  .text {
    width: 100%;
    font-size: 1rem;
    line-height: 1.4;
    padding: 10px;
    text-align: center;
  }

  .content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  /* Show all images on small mobile devices */
  .images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
  }
  
  .images img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
  }
}/*FOOTER SECTION*/
.footer {
  position: relative;
  background-color: rgba(23, 36, 53, 1);
  color: white;
  padding: 20px 20px;
  overflow: hidden;

}

/* .footer::before {
  content: '';
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
  height: 220px;
  border-radius: 40%;
} */

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  align-items: flex-start;
}

.footer-section {
  margin: 90px 10px;
  text-align: left;
}

.footer-section h3 {
  font-size: 18px;
  margin-top: 50px;
  margin-bottom: 10px;
}

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

.footer-section ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-section ul li img {
  width: 30px;
  height: auto;
  margin-right: 15px;
}

.footer-section ul li h4 {
  font-size: 1.2rem;
  font-weight: 540;
}

.footer-section ul li a {
  padding-top: 10px;
  line-height: 1.5;
  text-decoration: none;
}

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

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-top: 2px solid white;
  padding-top: 10px;
  text-align: center;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 80px;
  height: 110px;
  padding-left: 20px 10px;
}

.footer-bottom p {
  font-size: 14px;

}

.footer-bottom p a {
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

.social-icons {
  display: flex;
  margin-top: 10px;
  gap: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #f1f1f1;
  border-color: #007bff;
  color: #007bff;
}

.social-icons a i {
  font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center; 
    padding: 10px;
  }

  .footer-section {
    flex: 1 1 100%;
    margin: 15px 0;
    padding: 5px;
    text-align: center; 
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 5px;
    margin-top: 10px;
  }

  .footer-section ul {
    padding: 0;
  }

  .footer-section ul li {
    justify-content: center; 
  }

  .footer-section ul li h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
  }

  .footer-section ul li img {
    width: 25px;
    margin-right: 0; 
  }

  .footer-section ul li a {
    line-height: 1.4;
  }

  .footer-section p {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 5px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 5px;
  }

  .footer-logo img {
    width: auto;
    height: 90px;
    margin: 10px auto;
  }

  .social-icons {
    gap: 8px;
    margin-top: 8px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }

  .social-icons a i {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center; 
    padding: 8px;
  }

  .footer-section {
    margin: 18px 0;
    padding: 5px;
    text-align: center; 
  }

  .footer-section h3 {
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 5px;
  }

  .footer-section ul {
    padding: 0;
  }

  .footer-section ul li {
    justify-content: center;
  }

  .footer-section ul li h4 {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  .footer-section ul li img {
    width: 20px;
    margin-right: 0; 
  }

  .footer-section ul li a {
    line-height: 1.3;
  }

  .footer-section p {
    font-size: 11px;
    line-height: 1.3;
    margin-top: 5px;
  }
}
