@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
/* Color Variables */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root { 
    --main-color: #D39B37;
    --text-color: #3267AB;
    --bg-color: #000000;
  }

/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}


/* Base Styles */
#what-we-do {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  color: #333;
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.horizontal-line {
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: var(--text-color);
}

.project-our {
  font-weight: normal;
  color: #555;
  font-size: 2.6rem;
}

.project-title {
  font-weight: bold;
  font-size: 2.6rem; /* Increased size for emphasis */
  color: var(--text-color);
  background: linear-gradient(to right, var(--text-color), var(--text-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Base Styles for #what-we-do */
#what-we-do .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#what-we-do img {
  max-width: 100%;
  width: 45%;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#what-we-do img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

#what-we-do .text {
  flex: 1;
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

#what-we-do ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 1.2rem;
}

#what-we-do li {
  display: flex;
  align-items: center;
  margin: 15px 0;
  padding: 15px 20px;
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

#what-we-do li::before {
  content: "\2713";
  margin-right: 15px;
  color: #2b5876;
  font-size: 1.5rem;
}

#what-we-do li:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #2b5876, #4e4376);
  color: #fff;
  box-shadow: 0 8px 16px rgba(43, 88, 118, 0.3);
}

#what-we-do li:hover::before {
  color: #e9b949;
}

#what-we-do p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .project-header .project-our,
  .project-header .project-title {
    font-size: 2rem;
  }

  #book-appointment {
    padding: 10px;
  }
}
/* Responsive Styles */
@media screen and (max-width: 430px) {
  #what-we-do img {
    width: 100%;
  }

  #what-we-do .text {
    padding: 10px;
    text-align: center;
  }

  #what-we-do ul {
    font-size: 1rem;
  }

  #what-we-do li {
    padding: 10px 15px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 431px) and (max-width: 768px) {
  #what-we-do img {
    width: 70%;
  }

  #what-we-do .text {
    max-width: 500px;
  }

  #what-we-do li {
    font-size: 1.1rem;
    padding: 12px 18px;
  }
}

@media screen and (min-width: 769px) {
  #what-we-do img {
    width: 45%;
  }

  #what-we-do .text {
    max-width: 600px;
  }
}


/* Sticky Call Button Styling */
.call-button {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure it appears above other elements */
    border-radius: 50%;
    width: 60px; /* Adjust button size */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional shadow */
    transition: transform 0.1s ease, box-shadow 0.3s ease;
  }
  
  .call-button img {
    width: 70%; /* Size of the image inside the button */
    height: auto;
    border-radius: 50%;
  }
  
  .call-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
  }
  
  .call-button.shake {
    animation: shake 0.5s ease-in-out; /* Apply the shake animation */
  }
  
  /* Updated Keyframes for multi-directional shake */
  @keyframes shake {
    0%, 100% {
        transform: translate(0, 0); /* No movement */
    }
    20% {
        transform: translate(-5px, -5px); /* Move left and up */
    }
    40% {
        transform: translate(5px, 5px); /* Move right and down */
    }
    60% {
        transform: translate(-5px, 5px); /* Move left and down */
    }
    80% {
        transform: translate(5px, -5px); /* Move right and up */
    }
  }

/* Universal Section Heading */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
}

/* Horizontal Lines */
.horizontal-line {
    display: inline-block;
    width: 50px; /* Adjusted for perfect spacing */
    height: 2px;
    background-color: #0056b3; /* Blue line */
}

/* First Word (Lighter Style) */
.section-main {
    font-weight: normal;
    color: #444;
    font-size: 3rem;
}

/* Second Word (Bold & Blue) */
.section-highlight {
    font-weight: bold;
    font-size: 3rem;
    color: #0056b3; /* Blue text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header {
        flex-wrap: nowrap; /* Keep in a single line */
    }

    .section-main, .section-highlight {
        font-size: 2.5rem; /* Adjust for smaller screens */
    }

    .horizontal-line {
        width: 40px; /* Adjusted for spacing */
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-wrap: nowrap;
    }

    .section-main, .section-highlight {
        font-size: 2rem; /* Reduce size for mobile */
    }

    .horizontal-line {
        width: 30px;
    }
}



/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    padding: 15px 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: #000; /* Solid black when scrolled */
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important; /* Yellow on hover */
}

/* Custom Animated Toggler */
.navbar-toggler {
    border: none;
    background: transparent !important;
    outline: none !important;
    padding: 10px;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}







body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #fff;
}
.news-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  gap: 40px;
}
.news-left-section {
  margin-top: 150px;
  flex: 1;
}

.news-right-section {
  margin-top: 110px;
  flex: 2;
}
.news-article {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.news-meta p {
  margin: 5px 0;
}
.news-read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}






















      /* footer  */
/* Full-Width Footer */
.footer {
    background-color: #002855; /* Navy Blue */
    color: #fff;
    padding: 50px 0;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Ensures content does not touch edges */
}

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

/* Footer Headings */
.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffc107; /* Yellow Accent */
}

/* Footer Links */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact i {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #ffc107;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    font-size: 0.9rem;
    width: 100%;
}

/* Make Footer Full Width */
.footer-wrapper {
    width: 100%;
    background-color: #002855;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }
    .footer-links, .footer-contact {
        display: inline-block;
    }
    .social-icons {
        justify-content: center;
    }
}



 



/* Bootstrap Responsive Grid */
@media (max-width: 768px) {
  .news-container {
      flex-direction: column;
      align-items: center;
  }
  
  .news-left-section, .news-right-section {
      width: 100%;
      max-width: 100%;
  }
}

@media (max-width: 430px) {
  .news-left-section h2 {
      font-size: 1.5rem;
  }
  .news-article, .news-item {
      padding: 10px;
  }
}