/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}


.disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.disclaimer-box {
  background: #000000;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.disclaimer-box h2 {
  color: #ffffff;
  margin-bottom: 10px;
}
.disclaimer-box p {
  color: #ffffff;
  margin-bottom: 20px;
}
.agree-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.agree-button:hover {
  background-color: #0056b3;
}

#mainNav {
  margin-top: 1rem;
  background-color: #EABE6C;
}

.nav-log{
  width: 8rem;
}

.dropdown-menu :hover{
  background-color:#0A3981;
  color: white;

}

#mainNav .navbar-toggler {
  
  font-size: 0.75rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-transform: uppercase;
  font-weight: 700;
}

#mainNav .navbar-toggler .img {
  width: 3rem;
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  color: #000000;
  letter-spacing: 0.0625em;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: #0A3981;
}
.about {
  color: #0A3981;
}


@media (min-width: 992px) {
  #mainNav {
    margin-top: 1rem;
    padding-top: 0.5rem;
    border: none;
    transition: padding-top 0.3s ease-in-out;
  }

  #mainNav .navbar-brand {
    font-size: 1.5em;
    transition: font-size 0.3s ease-in-out;
  }

  #mainNav .navbar-brand img {
    height: 2rem;
    transition: height 0.3s ease-in-out;
  }

  #mainNav.navbar-shrink {
    padding-top: 1rem;
    background-color: #212529;
  }

  #mainNav.navbar-shrink .navbar-brand {
    font-size: 1.25em;
  }

  #mainNav.navbar-shrink .navbar-brand svg,
  #mainNav.navbar-shrink .navbar-brand img {
    height: 1.5rem;
  }

  #mainNav .navbar-nav .nav-item {
    margin-right: 1rem;
  }

  #mainNav .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
}

.carousel {
  margin-top: 6rem;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 1.8s ease-in-out;
  animation: slide 9s infinite;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slide {
  0% { transform: translateX(0); }
  33.33% { transform: translateX(-100%); }
  66.66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}
/* Responsive Styles */
@media (max-width: 768px) {
  .carousel-btn {
    padding: 8px;
  }

  .carousel-slide img {
    max-height: 400px; /* Adjust image height for mobile */
  }
}

@media (max-width: 480px) {
  .carousel-slide img {
    max-height: 300px; /* Adjust image height for very small screens */
  }
}


/* About Section Styling */
.about-section {

  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 900px;
  text-align: center;
  
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-title {
  font-size: 2rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-title {
      font-size: 1.8rem;
  }

  .about-description {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-title {
      font-size: 1.6rem;
  }

  .about-description {
      font-size: 0.9rem;
  }
}



/* Container for Clickable Cards */
.clickable-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

/* Individual Clickable Card */
.clickable-card {
  display: block;
  background-color: #0A3981;
  border: 1px solid #3187ff;
  border-radius: 10px;
  padding: 20px;
  width: calc(33.333% - 20px); /* Responsive width */
  min-width: 250px;
  max-width: 450px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none; /* Remove default link styling */
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-card h3 {
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 10px;
  color: #D4EBF8;

    -webkit-text-stroke: 1px rgb(50, 81, 255); /* Border color and thickness */
    text-shadow: 1px 1px 2px rgba(208, 208, 208, 0.7); /* Shadow properties */
}

.clickable-card p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

/* Hover and Focus Effect */
.clickable-card:hover,
.clickable-card:focus {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(107, 93, 255, 0.2);
  color: #000; /* Darken text color */
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .clickable-card {
    width: calc(50% - 20px); /* Two cards per row */
  }
}

@media (max-width: 480px) {
  .clickable-card {
    width: 100%; /* One card per row */
  }
}

/* About Section */
.about-div {
  
  padding: 20px;
  text-align: center;
}

.about-div h2 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
  color: #333;
}

/* Practice Area */
.animated-background {
  background: #0A3981;
  padding: 20px;
  text-align: center;
}

.animated-background h2 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}

.skill-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.skill-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.skill-images img:hover {
  transform: scale(1.05);
}

.see-all-services {
  margin-top: 20px;
}

.see-all-services button {
  background-color: #3a54fa;
  color: white;
  border: none;
  font-weight: bold;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.see-all-services button:hover {
  background-color: #396aff;
  transform: scale(1.05);
  font-weight: lighter;
  color: #ffffff;
  animation: backwards;
}

.see-all-services a {
  text-decoration: none;
}

/* Footer Styles */
footer {
  background-color: #EABE6C;
  color: #000000;
  margin-top: 2rem;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 1.5rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #000000;
  font-size: larger;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #575757; /* Change this to your brand color */
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
}




.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 11px;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.call-button {
  width: 10rem;
  background-color: #D4EBF8; /* WhatsApp blue */
}

.call-button:hover {
  background-color: #2d68ff; /* blue */
}

.whatsapp-button {
  width: 10rem;
  background-color: #D4EBF8; /* WhatsApp green color */
  
}

.whatsapp-button:hover {
  background-color: #128c7e; /* Darker green */

}

.button i {
  margin-right: 10px;
}

.footer-map a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #f39c12;
  color: #222;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.footer-map a:hover {
  background-color: #d87d0e; /* Darker shade on hover */
  color: #fff;
}


/* Responsive Design */
@media (max-width: 768px) {
  .navbar .menu {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    padding: 10px;
    border-radius: 8px;
  }

  .navbar .menu.show {
    display: flex;
  }

  .navbar .burger {
    display: flex;
  }

  .carousel-btn {
    padding: 5px;
  }


}

@media (max-width: 480px) {
  .navbar .menu a {
    font-size: 14px;
  }

  .about-div h2,
  .animated-background h2 {
    font-size: 20px;
  }

}

