/* Base Styles */
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #FFC00C;
  --secondary-color: #18354E;
  --light-color: #D0D5DA;
  --text-color: #333;
  --white-color: #fff;
  --black: #000;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--white-color);
  overflow-x: hidden;
}

/* Preloader */
.page-loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  text-align: center;
}

.loader img {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Header Styles */
.main_header {
  background: var(--white-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

#top-nav {
  background: var(--light-color);
  padding: 8px 0;
}

#top-nav .left a,
#top-nav .text-right a {
  color: var(--secondary-color);
  text-decoration: none;
  margin-right: 15px;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#top-nav .left a:hover,
#top-nav .text-right a:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

#header {
  padding: 15px 0;
  background: var(--white-color);
}

#header .navbar-brand img {
  max-height: 90px;
  width: auto;
  transition: var(--transition);
}

#header .navbar-brand img:hover {
  transform: scale(1.02);
}

#header .text-right h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 900;
}

#header .text-right p {
  color: var(--text-color);
  font-size: 15px;
  margin-bottom: 4px;
  opacity: 0.9;
  font-weight: 600;
}

#navbar {
  background: var(--white-color);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#navbar .navbar-nav .nav-link {
  color: var(--black);
  font-weight: 500;
  padding: 12px 20px;
  transition: var(--transition);
  position: relative;
  font-size: 15px;
}

#navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #000000 !important;
  transition: var(--transition);
  transform: translateX(-50%);
}

#navbar .navbar-nav .nav-link:hover::after,
#navbar .navbar-nav .nav-item.active .nav-link::after {
  width: calc(100% - 40px);
}

#navbar .navbar-nav .nav-link:hover {
  color: var(--black);
}

#navbar .dropdown-menu {
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.collapse:not(.show) {
  display: none;
}

/* Responsive Fixes */
@media (max-width: 1199px) {
  #navbar .navbar-nav .nav-link {
    padding: 12px 15px;
  }
}

@media (max-width: 991px) {
  #header {
    padding: 10px 0;
  }

  #navbar .navbar-nav {
    padding: 15px 0;
  }

  #navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  #navbar .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-toggler {
    padding: 8px;
    border: none;
    background: transparent;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  #header .text-right {
    text-align: center !important;
    padding-top: 15px;
  }

  #header .text-right h3 {
    font-size: 20px;
  }

  #header .text-right p {
    font-size: 14px;
  }

  #top-nav {
    text-align: center;
  }

  #top-nav .left,
  #top-nav .text-right {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  #header .navbar-brand img {
    max-height: 50px;
  }

  #top-nav {
    padding: 5px 0;
  }

  #top-nav .left a,
  #top-nav .text-right a {
    font-size: 13px;
    margin-right: 10px;
  }
}

/* Hero Section */
.main-sections {
  position: relative;
}

#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

#hero .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#hero .slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#hero .slider_text {
  position: relative;
  z-index: 1;
  color: var(--white-color);
  text-align: center;
}

#hero .slider_text .title {
  margin-top: 80px;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

#hero .slider_text .title span {
  display: block;
  font-size: 2rem;
  font-weight: 400;
}

#hero .slider_text .sub-title {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

#hero .btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 12px 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

#hero .btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* About Section */
.about-us-section {
  padding: 100px 0;
  background: var(--white-color);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.section-title h2 span {
  color: var(--primary-color);
}

.about-us-section .box-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
  margin-top: 30px;
}

.about-us-section .box-img img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-us-section .box-img:hover img {
  transform: scale(1.05);
}

.about-us-section .section-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

.about-us-section .common-cnt {
  padding: 20px;
}

.about-us-section .common-cnt p {
  margin-bottom: 20px;
  color: var(--text-color);
}

/* Services Section */
.our-best-service {
  padding: 100px 0;
  background: var(--light-color);
}

.service-box {
  background: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-box .service-icon {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.service-box .service-icon img {
  max-width: 60px;
  height: auto;
}

.service-box .service-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.service-box .service-dep p {
  color: var(--text-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.service-box .service-dep a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-box .service-dep a:hover {
  color: var(--secondary-color);
}

/* Team Section */
.our-team {
  padding: 100px 0;
  background: var(--white-color);
}

.team-box {
  background: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: center;
  transition: var(--transition);
}

.team-box:hover {
  transform: translateY(-10px);
}

.team-box .doctor-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--light-color);
}

.team-box .doctor-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-box .doctor-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.team-box .doctor-info h4 span {
  display: block;
  font-size: 1rem;
  color: var(--primary-color);
}

.team-box .doctor-info ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.team-box .doctor-info ul li {
  display: inline-block;
  margin: 0 5px;
}

.team-box .doctor-info ul li a {
  color: var(--secondary-color);
  font-size: 18px;
  transition: all 0.3s ease;
}
nfo ul li a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Footer */
#footer {
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 80px 10px !important;
  margin-top: 40px;
  
}

#footer .form {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

#footer .form:hover {
  background: rgba(255, 255, 255, 0.15);
}

#footer .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white-color);
  padding: 12px 20px;
  transition: all 0.3s ease;
}

#footer .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

#footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.fcard {
  margin-bottom: 30px;
}

.fcard .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white-color);
}

.fcard p {
  margin-bottom: 15px;
}

.fcard.links ul li {
  margin-bottom: 10px;
}

.fcard.links ul li a {
  color: var(--white-color);
  text-decoration: none;
  transition: var(--transition);
}

.fcard.links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.fcard.contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.fcard.contact ul li i {
  margin-right: 10px;
  color: var(--primary-color);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Animations */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: var(--transition);
}

/* Responsive Design */
@media (max-width: 1199px) {
  #hero .slider_text .title {
    font-size: 5rem;
  }

  .section-title h2 {
    font-size: 5rem;
  }
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    min-height: 500px;
  }

  #hero .slider_text .title {
    font-size: 3.0rem;
  }

  .about-us-section,
  .our-best-service,
  .our-team {
    padding: 40px 0;
  }

  .about-us-section .box-img {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  #hero .slider_text .title {
    font-size: 2rem;
  }

  #hero .slider_text .title span {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .about-us-section,
  .our-best-service,
  .our-team {
    padding: 60px 0;
  }

  .service-box,
  .team-box {
    padding: 20px;
  }

  .team-box .doctor-pic {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 575px) {
  #hero .slider_text .title {
    font-size: 1.8rem;
  }

  #hero .slider_text .title span {
    font-size: 1.2rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .about-us-section,
  .our-best-service,
  .our-team {
    padding: 40px 0;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}

/* Utility Classes */
.m-t-30 {
  margin-top: 30px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.col-white {
  color: var(--white-color);
}

.col-primary {
  color: var(--primary-color);
}

.col-secondary {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.btn-primary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-round {
  border-radius: 30px;
}

/* Animation Classes */
.pulse {
  animation: pulse 2s infinite;
}

.float {
  animation: float 3s ease-in-out infinite;
}

.shine {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200% 100%;
  animation: shine 2s infinite;
}

/* Navbar Dropdown Styles */
.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: var(--text-color);
  text-align: left;
  list-style: none;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown:hover>.dropdown-menu {
  display: block;
}

.navbar .dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: var(--text-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.navbar .dropdown-menu .dropdown-item:hover {
  color: var(--primary-color);
  background-color: rgba(255, 192, 12, 0.1);
}

button.navbar-toggler {
  display: none;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
  #header {
    padding: 10px 15px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .navbar {
    padding: 0;
  }

  .navbar-brand {
    padding: 5px 0;
  }

  .navbar-brand img {
    height: 40px;
    width: auto;
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
    border: none;
    padding: 0;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 1100;
    background: var(--secondary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .navbar-toggler .navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--white-color);
  }

  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white-color);
    left: 0;
  }

  .navbar-toggler .navbar-toggler-icon:before {
    top: -8px;
  }

  .navbar-toggler .navbar-toggler-icon:after {
    bottom: -8px;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    bottom: 0;
    transform: rotate(-45deg);
  }

  #navbar {
    padding: 0;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: var(--secondary-color);
    padding: 80px 0 30px;
    display: block !important;
    z-index: 1050;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    left: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  }

  .navbar-nav {
    padding: 0 20px;
  }

  .nav-item {
    margin: 5px 0;
  }

  .nav-link {
    padding: 12px 15px !important;
    color: var(--white-color) !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 2px;
  }

  .nav-link:hover,
  .nav-link:focus,
  .nav-link.active {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
  }

  .dropdown-menu {
    background: rgba(0, 0, 0, 0.2) !important;
    border: none;
    padding: 5px;
    margin-top: 5px !important;
    border-radius: 4px;
  }

  .dropdown-item {
    padding: 10px 15px;
    color: var(--white-color);
    border-radius: 4px;
  }

  .dropdown-item:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
  }

  body.menu-open {
    overflow: hidden;
  }

  #header .text-right {
    padding-right: 60px;
  }

  #header .text-right h3 {
    font-size: 16px;
    margin-bottom: 2px;
  }

  #header .text-right p {
    font-size: 12px;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .navbar-collapse {
    width: 100%;
    left: -100%;
  }

  #header .text-right {
    display: none;
  }

  .navbar-toggler {
    top: 10px;
    right: 10px;
  }

  button.navbar-toggler {
    display: block;
  }
}

/* Prevent Body Scroll */
body.menu-open {
  overflow: hidden;
}

/* B.Pharm Page Styles */
.program-details {
  padding: 40px 0;
}

.program-details .info-block {
  margin-bottom: 40px;
  background: var(--white-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.program-details .info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.program-details h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.program-details ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.program-details ul li {
  position: relative;
  padding: 8px 0;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.program-details ul li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: -20px;
  top: 8px;
}

.program-details p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0;
}

.section-title h2 span {
  color: var(--primary-color);
}

/* Animation for info blocks */
.program-details .info-block {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add animation delay for each block */
.program-details .info-block:nth-child(1) {
  animation-delay: 0.1s;
}

.program-details .info-block:nth-child(2) {
  animation-delay: 0.2s;
}

.program-details .info-block:nth-child(3) {
  animation-delay: 0.3s;
}

.program-details .info-block:nth-child(4) {
  animation-delay: 0.4s;
}

.program-details .info-block:nth-child(5) {
  animation-delay: 0.5s;
}

.program-details .info-block:nth-child(6) {
  animation-delay: 0.6s;
}

/* Contact Page Styles */
.contact-details-wrapper {
  margin-bottom: 40px;
}

.contact-details-wrapper .info-block {
  background: var(--white-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.contact-details-wrapper .info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3,
.contact-form h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  transition: var(--transition);
}

.contact-list li:hover {
  background: rgba(0, 0, 0, 0.04);
}

.contact-list li i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 15px;
  min-width: 24px;
}

.contact-list li span {
  font-weight: 600;
  color: var(--secondary-color);
  margin-right: 10px;
  min-width: 70px;
}

.contact-list li a,
.contact-list li p {
  color: var(--text-color);
  text-decoration: none;
  margin: 0;
  transition: var(--transition);
}

.contact-list li a:hover {
  color: var(--primary-color);
}

.phone-numbers {
  display: flex;
  flex-direction: column;
}

.phone-numbers a {
  margin-bottom: 5px;
}

.phone-numbers a:last-child {
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  height: 50px;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: var(--transition);
}

.contact-form textarea.form-control {
  height: auto;
  min-height: 120px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.map-wrapper {
  margin-top: 30px;
}

.map-wrapper .info-block {
  background: var(--white-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.map-wrapper .info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .contact-form {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {

  .contact-details-wrapper .info-block,
  .map-wrapper .info-block {
    padding: 25px;
  }

  .contact-list li {
    flex-direction: column;
  }

  .contact-list li i {
    margin-bottom: 10px;
  }

  .contact-list li span {
    margin-bottom: 5px;
  }
}