/* General Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  /* scroll-behavior: smooth; */
  /* overflow-x: hidden; */
  font-family: Arial, sans-serif;
  width: 100%;
  overflow-y: auto;
  overscroll-behavior-y:auto;
  overflow-x: hidden;
}


/* Header Styles */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.top-image {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 1001;
}

.top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo */
.logo {
  font-size: clamp(20px, 4vw, 34px);
  font-weight: bold;
  color: #555;
}

.logo img {
  object-fit: contain;
  padding-left: clamp(20px, 5vw, 150px);
  height: 70px;
}

/* Navbar Styles */
.navbar {
  background-color: white;
  color: #555;
  position: fixed;
  width: 100%;
  height: auto;
  min-height: 80px;
  top: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: clamp(10px, 2vw, 20px);
  transition: all 0.3s ease;
  max-width: 1550px;
  justify-self: center;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  margin-top: clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  /* gap: clamp(10px, 2vw, 15px); */
}

.nav-links li {
  margin: 0;
  position: relative;
  top: clamp(5px, 2vw, 15px);
  left: clamp(50px, 10vw, 200px);
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: clamp(14px, 2vw, 16px);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #f4a261;
}
.nav-links a.active {
  color: #f4a261; /* Orange color */
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-left: clamp(50px, 10vw, 200px);
}

.visit-btn {
  background-color: #f4a261;
  border: none;
  color: #fff;
  padding: clamp(6px, 2vw, 8px) clamp(20px, 4vw, 45px);
  font-size: clamp(12px, 2vw, 14px);
  margin-left: clamp(10px, 2vw, 30px);
  border-radius: 15px;
  cursor: pointer;
  height: clamp(35px, 5vw, 40px);
  transition: background-color 0.3s ease;
}

.visit-btn:hover {
  background-color: #f4a261;
}


/* Dropdown Menus */
.services-dropdown,
.web-designing-dropdown,
.school-management-dropdown {
  position: absolute;
  width: clamp(200px, 30vw, 250px);
  top: 100%; /* Open downward for "Services" dropdown */
  background-color: white;
  border-radius: 4px;
  box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.1);
  display: none; /* Hide all dropdowns initially */
  z-index: 1002;
}

/* Links inside dropdown */
.services-dropdown span a,
.web-designing-dropdown span a,
.school-management-dropdown span a {
  display: block;
  padding: clamp(8px, 2vw, 10px);
  color: #555;
  text-decoration: none;
}

/* Hover Effects for Individual Dropdowns */
.services:hover .services-dropdown {
  display: block; /* Make "Services" dropdown visible on hover */
}

.web-designing-services:hover .web-designing-dropdown {
  display: block; /* Make "Web Designing" dropdown visible on hover */
}

.school-management:hover .school-management-dropdown {
  display: block; /* Make "School Management" dropdown visible on hover */
}

/* Web Designing Services Dropdown (on the right) */
.web-designing-services {
  position: relative;
}

.web-designing-services:hover .web-designing-dropdown {
  display: block;
  left: 100%; /* Position to the right of the parent */
  top: 0; /* Align directly on the same horizontal level */
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* School Management Dropdown (on the right) */
.school-management {
  position: relative;
}

.school-management:hover .school-management-dropdown {
  display: block;
  left: 100%; /* Position to the right of the parent */
  top: 0; /* Align directly on the same horizontal level */
  z-index: 1002;
}

/* Styling for Nested Dropdown Items */
.school-management-dropdown span,
.web-designing-dropdown span {
  display: block;
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
}

/* Nested Links */
.school-management-dropdown a,
.web-designing-dropdown a {
  padding: 10px;
  display: block;
  color: #333;
  text-decoration: none;
}

/* Hover Effects for Links */
.services-dropdown span a:hover,
.web-designing-dropdown span a:hover,
.school-management-dropdown span a:hover {
  background-color: #f5f5f5;
  color: #f4a261;
}

/* Optional: Styling for the main menu links */
a {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
}

/* a:hover {
  background-color: #f0f0f0;
} */

/* Additional Styles for Dropdowns */
.services-dropdown,
.web-designing-dropdown,
.school-management-dropdown {
  display: none;
  position: absolute;
  top: 100%; /* Open downward for "Services" dropdown */
  width: clamp(200px, 30vw, 250px);
  background-color: white;
  border-radius: 4px;
  box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1002;
}

/* Adjustments for Nested Dropdowns */
.school-management-dropdown {
  left: 100%; /* Align to the right of the parent item */
  top: 0; /* Position it directly below the parent item */
  display: none;
}

/* Hover Color */
.services-dropdown span a:hover,
.web-designing-dropdown span a:hover,
.school-management-dropdown span a:hover {
  color: #f4a261;
}


/* Animated Section */
.animated-section {
  position: relative;
  top: 70px;
  width: 100%;
  height: clamp(150px, 30vw, 200px);
  padding-top: clamp(10px, 2vw, 20px);
  text-align: center;
  border-radius: 15px;
  background: url("./images/breadcrumb.png") center/cover no-repeat;
  background-size: 100% 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: clamp(150px, 15vw, 130px);

}

.animated-section h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: bold;
  animation: fadeInUp 1s ease;
}

.animated-section p {
  margin-top: clamp(10px, 2vw, 15px);
  font-size: clamp(10px, 2vw, 1.1rem);
  max-width: min(800px, 90vw);
  color: #385469;
  animation: fadeInUp 1.5s ease;
  padding: 0 clamp(10px, 3vw, 20px);
}

.animated-section .buttons {
  margin-top: clamp(15px, 3vw, 25px);
  display: flex;
  gap: clamp(10px, 2vw, 15px);
  animation: fadeInUp 2s ease;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 clamp(10px, 3vw, 20px);
}

.animated-section .buttons a {
  padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 20px);
  border-radius: 5px;
  text-decoration: none;
  background-color: #f4a261;
  color: white;
  white-space: nowrap;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  font-size: clamp(20px, 4vw, 24px);
  cursor: pointer;
  z-index: 1003;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .navbar-container {
      padding: 0 20px;
  }

  .nav-links li {
      left: clamp(20px, 5vw, 100px);
  }

  .nav-actions {
      padding-left: clamp(20px, 5vw, 100px);
  }
}

@media (max-width: 768px) {
  .navbar {
      height: auto;
  }

  .hamburger-menu {
      display: block;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: white;
      padding: 10px 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      margin: 10px 0;
      text-align: center;
      left: 0;
  }

  .nav-actions {
      width: 100%;
      justify-content: center;
      padding-left: 0;
      margin-top: 10px;
  }

  .visit-btn {
      margin-left: 0;
  }

  .services-dropdown,
  .blog-dropdown,
  .web-designing-dropdown {
      position: static;
      width: 100%;
      margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .navbar {
      top: 30px;
  }

  .top-image {
      height: 60px;
  }

  .animated-section {
      margin-top: 100px;
  }

  .logo img {
      padding-left: 10px;
  }

  .visit-btn {
      padding: 6px 15px;
      font-size: 14px;
  }
}








/* Section Styling with Light Background */




/* About Us Section */
.about-us-section {

  padding: 60px 20px;
  /* background-color: #f8f9fa; */
  max-width: 1500px;
  justify-self: center  ;

}

/* About Us Content Layout - Base Styles */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  align-items: center;
}

.about-details {
  padding-right: 1rem;
}

/* Image Styling */
.girl-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.girl-image {
  width: 100%;
  max-height: 600px;
  border-radius: 0.5rem;
  object-fit: contain;
}

/* Text Styles */
.subheading {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 0.75rem;
}

.main-heading {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: #333;
}

.about-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

/* Founder & Contact Section */
.founder-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Founder Details */
.founder-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.founder-image {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  object-fit: cover;
}

.founder-name {
  font-size: 1rem;
  font-weight: 600;
}

.founder-role {
  font-size: 0.875rem;
  color: #666;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
}

.call-us-text {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.phone-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: #F4A261;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-details {
    padding-right: 0;
    order: 2;
  }

  .girl-img-wrapper {
    order: 1;
  }

  .girl-image {
    max-height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .about-content {
    padding: 0 1.5rem;
  }

  .founder-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .about-description {
    text-align: justify;
    
  }
}

@media screen and (max-width: 480px) {
  .about-content {
    padding: 0 1rem;
  }

  .girl-image {
    max-height: 300px;
  }

  .founder-info {
    width: 100%;
  }

  .contact-info {
    width: 100%;
  }
}

/* Mission Section Styles */



/* ================================================================== */

/* Mission Section - Base Styles */
.mission-section {
  background: linear-gradient(135deg, #fff9c4, #e0f7fa);
  width: 100%;
  padding: 2rem 0;
}

.mission-section-content-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.mission-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.mission-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.mission-content p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

.mission-image {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 0.5rem;
  object-fit: contain;
}

/* Responsive Adjustments */
@media screen and (max-width: 900px) {
  .mission-section-content-image {
    width: 95%;
    gap: 1.5rem;
  }
  
  .mission-content p {
    line-height: 1.6;
  }
}

@media screen and (max-width: 768px) {
  .mission-section-content-image {
    flex-direction: column;
    width: 90%;
  }
  
  .mission-content,
  .mission-image {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .mission-content p {
    font-size: clamp(1rem, 1.2rem, 1.1rem);
    text-align: justify;
    hyphens: none;
  }
}

@media screen and (max-width: 480px) {
  .mission-section {
    padding: 1.5rem 0;
  }
  
  .mission-section-content-image {
    width: 92%;
    gap: 1.2rem;
  }
  
  .mission-content h1 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  
  .mission-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  
  .mission-image img {
    max-width: 100%;
  }
}
/* =========================================================================== */
/* Vision Section - Base Styles */
.vision-section {
  width: 100%;
  padding: 3rem 1rem;
  box-sizing: border-box;
}

.vision-section-content-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Content Styling */
.vision-content {
  flex: 1 1 45%;
  min-width: 300px;
  padding: 1rem;
}

.vision-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #000;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.vision-content p {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
}

/* Image Styling */
.vision-image {
  flex: 1 1 45%;
  min-width: 300px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 0.5rem;
  object-fit: contain;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .vision-section {
    padding: 2.5rem 1rem;
  }
  
  .vision-section-content-image {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .vision-section-content-image {
    flex-direction: column;
  }
  
  .vision-content,
  .vision-image {
    flex: 1 1 100%;
    min-width: 100%;
    padding: 0.5rem;
  }
  
  .vision-content p {
    font-size: clamp(1rem, 1.1rem, 1.125rem);
    hyphens: none;
  }
}

@media screen and (max-width: 480px) {
  .vision-section {
    padding: 2rem 0.75rem;
  }
  
  .vision-content h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .vision-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .vision-image img {
    max-width: 100%;
  }
}
/* ============================================== */
/* Values Section - Base Styles */
.values-section {
  width: 100%;
  background: #f2ebe5;
  padding: 3rem 1rem;
  box-sizing: border-box;
}

.values-section-content-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Content Styling */
.values-content {
  flex: 1 1 45%;
  min-width: 300px;
  padding: 1rem;
  color: #333;
}

.values-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #000;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.values-content p {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  text-align: justify;
  hyphens: auto;
  word-break: break-word;
}

/* Image Styling */
.values-image {
  flex: 1 1 45%;
  min-width: 300px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.values-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 0.5rem;
  object-fit: contain;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .values-section {
    padding: 2.5rem 1rem;
  }
  
  .values-section-content-image {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .values-section-content-image {
    flex-direction: column;
  }
  
  .values-content,
  .values-image {
    flex: 1 1 100%;
    min-width: 100%;
    padding: 0.5rem;
  }
  
  .values-content p {
    font-size: clamp(1rem, 1.1rem, 1.125rem);
    hyphens: none;
  }
}

@media screen and (max-width: 480px) {
  .values-section {
    padding: 2rem 0.75rem;
  }
  
  .values-content h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .values-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .values-image img {
    max-width: 100%;
  }
}




/* ============================================================ */

/* General Styles */
.chiruu-section {
  /* opacity: 0; */
  /* transform: translateY(50px); */
  /* transition: opacity 1s ease-out, transform 1s ease-out; */
  border-radius: 15px;
  margin: 1rem auto; /* Spacing for separation */
  max-width: 1400px;
  justify-self: center;
}



/* Layout */
.chiruu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly; /* Ensures equal spacing */
  text-align: center;
  gap: 1rem; /* Reducing unnecessary spacing */

}

/* Image Section */
.chiruu-image-section {
  flex: 1;
  max-width: 400px;
  display: flex;
  justify-content: center; /* Align image properly */
}

.chiruu-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  /* transition: transform 0.4s ease-in-out; */
}

/* .chiruu-image:hover {
  transform: scale(1.05);
} */

/* Vision Section */
.chiruu-vision-section {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Ensures equal alignment */
}

.chiruu-vision-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  transition: color 0.3s ease-in-out;
  text-align: center;
}

.chiruu-vision-section h1:hover {
  color: #0096ff;
}

.chiruu-vision-section p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  text-align: justify; /* Justify the text to align both edges */
}

.chiruu-vision-section p::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}


/* List Styles */
.chiruu-vision-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chiruu-vision-section ul li {
  font-size: 1rem;
  color: #555;
  /* background: rgba(0, 150, 255, 0.1); */
  padding: 8px;
  margin: 4px 0;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 8px;
  
}

.chiruu-vision-section ul li:before {
  content: "✔";
  /* color: #0096ff; */
  font-weight: bold;
}

/* Hover effect on list */


/* List Item Animation */
.chiruu-section.visible .chiruu-vision-section ul li {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (min-width: 768px) {
  .chiruu {
    flex-direction: row;
    justify-content: space-evenly; /* Equal spacing */
    align-items: center;
    text-align: left;
    gap: 2rem;
  }

  .chiruu-image-section,
  .chiruu-vision-section {
    max-width: 45%;
  }
}

@media (min-width: 1024px) {
  .chiruu-image-section,
  .chiruu-vision-section {
    max-width: 40%;
  }

  .chiruu-vision-section h1 {
    font-size: 2.8rem;
  }

  .chiruu-vision-section p {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .chiruu {
    flex-direction: column;
    text-align: center;
  }

  .chiruu-vision-section h1 {
    font-size: 2rem;
  }

  .chiruu-vision-section p {
    font-size: 1.1rem;
  }
}



/* =============================================== */ 

.footer-area {
    position: relative;
    background: #F4EEE5;
    padding-top: 150px;
    background-image: url('../images/footer-top.png');
    background-repeat: no-repeat;
  }
  
  .contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .row {
    background: none !important;
  }
  
  .info-item {
    background: none !important;
  }
  
  .icon-circle {
    background: none !important;
    border-radius: 50%;
  }
  
  .info-content {
    background: none !important;
    padding: 10px 0;
  }
  
  body {
    background-color: transparent !important;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
    border: 2px dashed #F4A261;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-circle i {
    color: #F4A261;
    font-size: 24px;
  }
  
  .info-content .label {
    color: #666;
    margin-bottom: 5px;
  }
  
  .info-content h4 {
    color: #2b4570;
    margin: 0;
    font-size: 18px;
  }
  
  .main-footer {
    padding: 50px 0;
  }
  
  .footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
  }
  
  .social-links {
    margin-top: 20px;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f4f4f4;
    border-radius: 50%;
    margin-right: 10px;
    color: #2b4570;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background: #F4A261;
    color: white;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 15px;
  }
  
  .footer-links a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-links a:hover {
    color: #F4A261;
  }
  
  .footer-links i {
    color: #F4A261;
    font-size: 12px;
  }
  
  .post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .post-content .date {
    color: #F4A261;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
  }
  
  .post-content a {
    color: #2b4570;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .post-content a:hover {
    color: #F4A261;
  }
  
  .bottom-footer {
    padding: 30px 0;
    background-image: url('../footer-bottom.png');
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .bottom-footer p {
    margin: 0;
    color: #666;
  }
  
  .bottom-footer a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
  }
  
  .bottom-footer a:hover {
    color: #F4A261;
  }
  
  @media (max-width: 768px) {
    .contact-info .info-item {
        margin-bottom: 20px;
    }
    
    .bottom-footer .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
  }

