@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap');


/* Color Variables */
:root {
  --primary-color: #C8102E;    /* Crimson Red */
  --complementary-blue: #2E5D9F; /*Complementary Blue*/
  --secondary-color: #FFFFFF;  /* White */
  --dark-accent: #1A1A1A;      /* Charcoal Black */
  --neutral-accent: #F5F5F5;   /* Light Gray */
  --gold-color: #FFD700;       /* Golden Yellow */
  --teal-color: #008080;       /* Teal */
  --pantone-blue: #003893;    /* Pantone Blue */
  
}

/* Common Style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: sans-serif;
}

body {
  background-color: var(--neutral-accent);
  margin: 0;
  min-height: 100vh;
  z-index: 1;
  font-family: "poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  touch-action: manipulation; 
}



.navbar {
    display:flex;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    z-index: 3;
    position: fixed;
    transition: top 0.5s;
    top: 0;
    width: 100%;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 250px; /* Adjusted for left white space */
    width: calc(100% - 250px); /* Adjusted for total white space */
    height: 100%;
    display: flex; /* Center the background */
    justify-content: center; /* Center the background */
    background-image: linear-gradient( var(--complementary-blue) 1px, transparent 1px),
                      linear-gradient(to right, var(--complementary-blue) 1px, transparent 1px);
    background-size: 4px 4px; /* Adjust grid size */
    z-index: 0; /* Place behind navbar content */
    overflow:hidden;
    opacity:0.4;
}

.navbar.hidden {
    top: -80px; /* Adjust this value according to your navbar height */
}


#sidenavMenuBtn{
  position:relative;
  color: var(--dark-accent);  
  font-size:30px;
  cursor:pointer;
  z-index:4;
}

.nav-content {
    display:flex;
    align-items:flex-start;
    margin-left:4px;
}
.navbar img.logo {
  position:absolute;
  top:10px;
  margin-left:70px;
  max-height: 40px; 
  height: auto;
  width: auto;
}



.nav-option-right{
    position:absolute;
    right:10px;
    z-index:4;
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: inline-block;
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px; /* Center text vertically */
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 2px solid var(--primary-color); /* Match button color for seamless connection */
    color:white;
}

.dropbtn:hover {
    background-color: #e0e0e0;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #e0e0e0; /* Match hover color for seamless connection */
    color: var(--gold-color);
}

.dropbtn:after {
    content: '';
    position: absolute;
    bottom: -6px; /* Adjust this value to position the arrow */
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid var(--primary-color); /* Match button color for seamless connection */
    transition: border-top-color 0.3s;
}

.dropbtn:hover:after {
    background-color: #e0e0e0;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #e0e0e0; /* Match hover color for seamless connection */
}



.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    right: 0; /* Align dropdown to the right */
    overflow: hidden; /* Prevent content overflow */
    
}



.dropdown-content a {
    color: #333;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #f1f1f1;
}

/* Responsive design */
@media (max-width: 600px) {
    .dropdown-content {
        min-width: 100px; /* Adjust minimum width for small screens */
    }

    .dropbtn {
        font-size: 14px; /* Adjust font size for small screens */
    }
}


.time-container {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap; 
    overflow-x: auto; 
    gap: 8px; 
    z-index: 2;
    -webkit-overflow-scrolling: touch;
    background-color: var(--neutral-accent);
}
.time-container::-webkit-scrollbar {
   display: none;
}

.time-container div {
    padding: 4px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.time-container div:hover {
    transform: scale(1.05);
}
.time-container img {
    margin-right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%; /* Add circular shape to images */
}
.time-container p {
    font-size: 14px;
    margin: 0; 
    white-space: nowrap;
}


@media only screen and (max-width: 768px) {
    .time-container p {
        font-size: 10px;
        margin: 0; 
        white-space: nowrap;
    }
}



.footer {
  background-color: var(--dark-accent);
  color: var(--secondary-color);
  position: relative;
  padding: 10px;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.footer .container {
  display: flex;
  justify-content: center; 
  align-items: center; 
   z-index: 3;
}










.sns-div {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
}

.sns-div-items {
    margin: 5px 0;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.sns-div-items img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    transition: width 0.3s ease, height 0.3s ease, border-width 0.3s ease;
}

.sns-div-items:hover img {
    width: 50px;
    height: 50px;
    border-width: 3px;
}

.sns-div-items.small img {
    width: 30px;
    height: 30px;
    border-width: 1px;
}

@media (max-width: 600px) {
    .sns-div-items img {
        width: 30px;
        height: 30px;
    }

    .sns-div-items:hover img {
        width: 35px;
        height: 35px;
    }

    .sns-div-items.small img {
        width: 20px;
        height: 20px;
    }
}











/* Footer Styles */
.main-footer {
  display: flex;
  justify-content: space-between;
  background-color: var(--secondary-color);
  background: linear-gradient(135deg, var(--gold-color), var(--primary-color));
  color: var(--secondary-color);
  padding: 40px 20px;
  position: relative; /* Add position relative */
  z-index: 1; /* Ensure main-footer content is above the pseudo-element */
}

.main-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent black mask */
  z-index: -1; /* Ensure the mask is below the footer content */
}



/* Responsive layout for main-footer content */
.main-footer > div {
    flex: 1;
    padding: 0 20px;
}

.main-footer h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.main-footer p {
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
}

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

.footer-link-items {
    margin-bottom: 8px;
}

.footer-link-items a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link-items a:hover {
    color: var(--primary-color);
}

/* Media query for small screens */
@media screen and (max-width: 768px) {
    .main-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main-footer > div {
        width: 100%;
        padding: 20px 0;
    }

}








.sidenav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 0; /* Increased width for better visibility */
  z-index: 4;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  transform: translateX(0);
  transition: transform 0.4s ease;
  height: 100vh;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
}



.sidenav a {
  padding: 16px 16px; /* Increased padding for better touch targets */
  text-decoration: none;
  font-size: 18px; /* Reduced font size for better readability */
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  transition: color 0.3s, background-color 0.3s; 
}

.sidenav a:hover {
  color: var(--gold-color); 
  background-color: rgba(255, 255, 255, 0.1); 
}


.sidenav .sidenav-closebtn {
  position: absolute;
  top: -16px;
  right: 0px;
  font-size: 36px;
}

.sidenav .sidenav-closebtn:hover {
  color: var(--gold-color); 
  background-color: rgba(255, 255, 255, 0.1); 
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 50vh;
  background-color: var(--primary-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-text {
  position: relative;
  z-index: 1;
  color: var(--secondary-color);
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--gold-color);
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-text button {
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  color: var(--secondary-color);
  background-color: var(--teal-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-text button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
.hero {
  width: 100%;
  height: 130px;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0.7;
}

  .hero-text h1 {
    font-size: 1rem;
  }

  .hero-text p {
    font-size: 0.8rem;
  }

  .hero-text button {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
}



.about-us-container {
    height: 400px; /* Adjust the height as needed */
    display: flex;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 10px;
    background-color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--primary-color);
    border-bottom-right-radius: 25px;
    text-align: justify;
}


.about-us-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: var(--gold-color);
}

.about-us-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 100px solid var(--primary-color);
  border-right: 100px solid transparent;
  border-radius: 0 0 50% 0;
  transform: rotate(180deg);
  animation: wave-animation 3s infinite;
}

@keyframes wave-animation {
  0% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg) translateY(-10px);
  }
  70% {
    transform: rotate(180deg) translateY(-10px);
  }
  100% {
    transform: rotate(180deg);
  }
}

.about-img {
    flex: 1;
    max-width: 40%;
    position: relative;
    overflow: hidden;
    margin-left:-20px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
    max-width: 60%;
    position: relative;
    padding-left: 20px; /* Add padding for space */
    text-align: justify;
}

.about-text h4 {
    margin-top:10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-accent);
}




.see-more {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.see-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px; /* Adjust distance from right */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s;
}

.see-more:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.see-more:hover::after {
  opacity: 1;
}

.see-more:hover {
    background-color: var(--gold-color);
}

.see-more a {
    color: white;
    text-decoration: none;
}

.see-more a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column;
        height: auto; /* Remove fixed height */
    }
    

.see-more  {
    align-self: stretch;
    width:100%;
}
    .about-img,
    .about-text {
        max-width: 100%;
        position: static; /* Remove absolute positioning */
        padding: 0; /* Remove padding for smaller screens */
        margin-left:0;
    }

    .about-text p {
        text-align: justify;
    }
    .free-counselling {
        margin-bottom:70px;
    }
}






.why-us {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--neutral-accent);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 25px;
    overflow: hidden;
    position: relative;
}

.why-us::before {
    content: "";
    position: absolute;
    top: -10px; /* Adjust to move it up or down */
    left: -10px; /* Adjust to move it left or right */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    z-index: 1; /* Ensure it's behind the content */
}

.why-us::after {
    content: "";
    position: absolute;
    bottom: -25px; /* Adjust to move it up or down */
    right: -25px; /* Adjust to move it left or right */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--gold-color);
    z-index: 1; /* Ensure it's behind the content */
}



.why-us-img-container {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background-image: radial-gradient(circle, var(--primary-color) 10%, transparent 10%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-color: var(--neutral-accent);
    position:relative;
}




.why-us-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border:1.5px solid var(--gold-color);
}

.why-us-text {
    flex: 2;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.why-us-text h4 {
    margin-top:2px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-us-list {
    list-style-type: none;
    padding: 0;
}

.why-us-item {
    font-weight: bold;
    margin-bottom: 10px;
}

.why-us-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-accent);
}




.why-us-data {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top:10px;
  margin-bottom:10px;
  justify-content: center;
}

.why-us-data-items {
  position: relative;
  flex: 1 1 calc(25% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  padding: 20px 10px;
  min-width: 100px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .why-us-data  {
    flex-direction:column;
  }
}
.why-us-data-items:hover {
  transform: translateY(-5px);
}

.why-us-data-items .text {
  font-size: 1.5rem;
  color: var(--gold-color);
  position: relative;
  z-index: 1;
  pointer-events: none;
  margin-bottom: 0.5rem;
}

.why-us-data-items .numbers {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
  margin-top: auto;
}




.offer-container {
    display: flex;
    justify-content: center;
    align-items: center; /* Center items vertically */
}

.free-counselling {
    width: 400px;
    background-color: var(--gold-color);
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-bottom:10px;
    z-index:2;
}

.free-counselling h5 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}


@media (max-width: 768px) {
    .why-us-item {
        font-weight: bold;
        margin-bottom: 4px;
        font-size:12px;
    }
}



/* Our Services Section */
.our-services {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--neutral-accent);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-top:10px;
    margin-bottom:10px;
}




.our-services::before {
    content: "";
    position: absolute;
    top: -10px; /* Adjust to move it up or down */
    left: -10px; /* Adjust to move it left or right */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold-color); 
    z-index: 1; /* Ensure it's behind the content */
}

.our-services::after {
    content: "";
    position: absolute;
    bottom: -25px; /* Adjust to move it up or down */
    right: -25px; /* Adjust to move it left or right */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color), var(--primary-color));
    z-index: 1; /* Ensure it's behind the content */
}




/* Our Services Text */
.our-services-text {
    flex: 1 1 30%;
    padding: 20px 15px;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom:4px;
    margin-top:4px;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
    
}

.our-services-text h4 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.our-services-text h5 {
    font-size: 22px;
    margin-bottom: 20px;
    color: white;
    font-weight: 500;
    color: var(--dark-accent);
}

.our-services-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
    color: var(--complementary-blue);
}

.our-services-text button {
    align-self: start;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.our-services-text button:hover {
    background-color: var(--gold-color);
    transform: translateY(-2px);
}

.our-services-text button a {
    color: white;
    text-decoration: none;
}

/* Our Services Cards */
.our-services-cards {
    flex: 1 1 70%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: white;
    gap: 20px;
    margin-bottom:4px;
    margin-top:4px;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
    overflow:hidden;
    position:relative;
}



.our-services-cards::before,
.our-services-cards::after {
    content: '';
    position: absolute;
    top: 4px;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    animation: right-animation 3s infinite;
}

.our-services-cards::before {
    border-width: 20px 20px 0 0;
    border-color: var(--primary-color) transparent transparent transparent; /* Change 'red' to your desired color */
    transform: rotate(135deg);
}

.our-services-cards::after {
    border-width: 0 20px 20px 0;
    border-color: var(--primary-color) transparent transparent transparent; /* Change 'red' to your desired color */
    transform: rotate(135deg);
}


@keyframes right-animation {
  0% {
    transform: rotate(135deg);
  }
  50% {
    transform: rotate(135deg) translateY(10px);
  }
  50% {
    transform: rotate(135deg) translateY(10px);
  }
  100% {
    transform: rotate(135deg);
  }
}



.our-services-flex-items {
    display: flex;
    align-items: center;
    flex: 1 1 calc(50% - 20px);
    background-color: var(--light-accent);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.our-services-flex-items:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.our-services-img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-color);
}

.our-services-flex-items h5 {
    font-size: 18px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.our-services-flex-items p {
    margin-top: 5px;
    line-height: 1.4;
    color: var(--dark-accent);
    font-size: 14px;
}



@media (max-width: 768px) {
  
/* Our Services Text */
.our-services-text {
    flex: 1 1 50%;
    
}

    .our-services-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    .our-services-cards::-webkit-scrollbar {
        display: none;
    }
    .our-services-flex-items {
        flex: 0 0 80%; /* Adjust width to make cards shorter */
        margin-right: 10px; /* Add some margin between items */
        white-space: normal; /* Allow text to wrap */
        position:relative;
    }

.our-services-flex-items p {
    margin-top: 30px;
    font-size: 12px;
}

.our-services-text button {
    align-self: stretch;
    padding: 12px 24px;
}
}




.message-from-md {
  display: flex;
  justify-content: space-between;
  background-color: var(--neutral-accent);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-top:10px;
  margin-bottom:10px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
  border: 1px solid var(--teal-color);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 L1080 0 L955 75 L540 300 L0 100 Z' fill='%23ddd'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;

}



.message-from-md::before {
    content: "";
    position: absolute;
    top: -10px; /* Adjust to move it up or down */
    left: -10px; /* Adjust to move it left or right */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--gold-color), var(--teal-color));
    z-index: 1; /* Ensure it's behind the content */
}




.md-text-section {
  flex: 1;
  padding: 10px;
  margin-top:20px;
  margin-left:0;
}


.md-text-section h4{
  color: var(--complementary-blue);
  font-size: 24px;
  margin-bottom: 10px;
  margin-left:10px;
}

.md-text-section p {
  color: var(--dark-accent);
  font-size: 14px;
  text-align: justify;
}




.greeting{
   display: flex;
   justify-content: flex-start;
    align-items:flex-start;
    gap:10px;
    margin-bottom:-10px;
}
.artistic {
  font-family: cursive;
  color: var(--complementary-blue);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  font-size: 24px!important;
}
   
.managing-director {
    font-size: 1em;
    font-style: italic;
    color: var(--dark-accent);
    text-align: center;
}

blockquote {
    font-family: 'Times New Roman', serif;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--complementary-blue);
    text-align: left;
}

.md-image-section {
    margin-right:-12px;
}

.md-image-img {
  max-width: Calc(100%-20px);
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 853px) {
  .message-from-md {
    flex-direction: column-reverse;
  }
    .md-image-img {
      width:100%;
}

@media (max-width: 768px) {
  .md-image-img {
      margin-bottom:-10px;
}  

  .message-from-md {
    flex-direction: column-reverse;
    align-items: center;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 L400 0 L390 75 L200 200 L0 95 Z' fill='%23ddd'/%3E%3C/svg%3E");
    border-top-right-radius: 15px;
  }

  .md-text-section {
    margin-bottom: -10px;
  }
  
 .md-image-section {
    margin-right:-2px;
}
 .md-image-section {
     margin-bottom: 10px;
}

}