:root {
  --primary: #046d88;
  --secondary: #35aebc;
  --accent: #732a87;
  --main-background: #eaeaea;
  --text-color: #1f1f1f;
}
/* Alumni Sans */
@font-face {
  font-family: 'Alumni Sans';
  src: url('../fonts/AlumniSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Alumni Sans';
  src: url('../fonts/AlumniSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Nunito Sans */
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Outfit */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Darker Grotesque — Regular (400) */
@font-face {
  font-family: 'Darker Grotesque';
  src: url('../fonts/DarkerGrotesque-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Medium (500) */
@font-face {
  font-family: 'Darker Grotesque';
  src: url('../fonts/DarkerGrotesque-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* SemiBold (600) */
@font-face {
  font-family: 'Darker Grotesque';
  src: url('../fonts/DarkerGrotesque-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/* Bold (700) */
@font-face {
  font-family: 'Darker Grotesque';
  src: url('../fonts/DarkerGrotesque-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
/* Nobile Regular */
@font-face {
  font-family: 'Nobile';
  src: url('../fonts/Nobile-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Nobile Medium */
@font-face {
  font-family: 'Nobile';
  src: url('../fonts/Nobile-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* Nobile Bold */
@font-face {
  font-family: 'Nobile';
  src: url('../fonts/Nobile-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
body{
  background-color: var(--main-background);
}
header {
  background-color: var(--main-background);
  padding: 10px 50px;
  border-bottom: 2px solid #ddd;
  position: fixed;     
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;  
  display: inline-block;     
}

.navbar-brand img {
  max-width: 380px;
  height: 70px;
}

.nav-link {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 600;
  color: var(--text-color) !important;
  margin: 0 20px;
  font-size: 22px;
  position: relative;
  text-decoration: none;
}

/* Active nav link ki dot */
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

/* Hover underline effect */
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--text-color);
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 80%;
  margin-left: 8px;
}


.contact-btn {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 600;
  background-color: var(--primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
  background: linear-gradient(to right, #046D88, #35AEBC, #046D88);
  color: #fff;
  transform: scale(1.05);
}

.services-section {
  position: relative;
  padding: 60px 0;
  background: var(--main-background);
  overflow: hidden;
  margin-top: 110px;
  font-family: "Outfit", sans-serif;
}
.aboutus-section {
  background-color: var(--main-background); /* fallback color */
  background-image: url("../assets/Hero\ Background.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain; /* or cover depending on your need */
  width: 100%;
  padding: 90px 0;
  font-family: "Outfit", sans-serif;
  position: relative;
  margin-top: 110px;
  height: auto;
}
@media (max-width: 480px) {
  .aboutus-section {
    padding: 50px 15px;
    padding-top: 80px;
    margin-top: 60px;
    background-size: cover;
    background-position: center;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .aboutus-section {
    padding: 70px 20px;
    margin-top: 80px;
    background-size: cover;
    background-position: top center;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .aboutus-section {
    padding: 80px 25px;
    margin-top: 95px;
    background-size: contain; 
    background-position: center top;
  }
}


.service-card {
  position: relative;
  z-index: 2; /* keep above bg shape */
  margin-bottom: 50px;
}

.service-content h3 {
  font-family: "Outfit", sans-serif;
  color: #006d77;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}
.accordion-header h2 button,
.service-content h4 {
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 12px;

  color: var(--text-color);
}

.accordion-body ul,
.service-content ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-color);
}

.accordion-body ul li,
.service-content ul li {
  font-family: "Outfit", sans-serif;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}
/* Decorative SVG */
.bg-shape1.left {
  position: absolute;
  left: -20px; 
  top: 2.6%;
  z-index: 0;
  opacity: 1;
}
.bg-shape1.left img {
  width: 250px;
  height: 293px;
  border-color: #046d88;
}
.bg-shape2.right {
  position: absolute;
  right: -60px; /* adjust how much you want visible */
  top: 8%;
  z-index: 0;
  opacity: 1;
}
.bg-shape2.right img {
  width: auto; /* scale as needed */
  height: 320px;
  border-color: #046d88;

  transform: scaleY(-1);
}

.bg-shape3.left {
  position: absolute;
  left: -64px; /* adjust how much you want visible */
  top: 14%;
  z-index: 0;
  opacity: 1;
}
.bg-shape3.left img {
  width: 417px;
  height: 443px;
  border-color: #046d88;
}

.bg-shape4.right {
  position: absolute;
  right: -15px; /* adjust how much you want visible */
  top: 21.8%;
  z-index: 0;
  opacity: 1;
}
.bg-shape4.right img {
  width: 200px; /* scale as needed */
  height: 320px;
  border-color: #046d88;

  transform: scaleY(1);
}

.bg-shape5.left {
  position: absolute;
  left: -50px; /* adjust how much you want visible */
  top: 30%;
  z-index: 0;
  opacity: 1;
}
.bg-shape5.left img {
  width: 452px;
  height: 416px;
  border-color: #046d88;
}
.bg-shape6.right {
  position: absolute;
  right: -1px; /* adjust how much you want visible */
  top: 34.3%;
  z-index: 0;
  opacity: 1;
}
.bg-shape6.right img {
  width: 200px; /* scale as needed */
  height: 320px;
  border-color: #046d88;

  transform: scaleY(-1) scaleX(-1);
}
.bg-shape7.left {
  position: absolute;
  left: -43px;
  top: 41%;
  z-index: 0;
  opacity: 1;
}
.bg-shape7.left img {
  width: 377px;
  height: 578px;
  border-color: #046d88;
  transform: scaleY(-1) scaleX(-1);
}
.bg-shape8.left {
  position: absolute;
  left: -16px; 
  top: 49.4%;
  z-index: 0;
  opacity: 1;
}
.bg-shape8.left img {
  width: 250px; /* scale as needed */
  height: 293px;
  border-color: #046d88;
}
.bg-shape9.right {
  position: absolute;
  right: -103px; /* adjust how much you want visible */
  top: 51%;
  z-index: 0;
  opacity: 1;
}
.bg-shape9.right img {
  width: auto; /* scale as needed */
  height: 458px;
  border-color: #046d88;

  transform: scaleY(1);
}
.bg-shape10.left {
  position: absolute;
  left: -16px; /* adjust how much you want visible */
  top: 57.5%;
  z-index: 0;
  opacity: 1;
}
.bg-shape10.left img {
  width: auto; /* scale as needed */
  height: 320px;
  border-color: #046d88;

  transform: scaleX(-1) scaleY(-1);
}
.bg-shape11.right {
  top: 62.5%;
}
.bg-shape12.left {
  top: 71.5%;
}
.bg-shape12.left img {
  transform: scaleY(-1);
}
.bg-shape13.right {
  top: 75.5%;
}
.bg-shape13.right img {
  transform: scaleY(1);
  height: 450px;
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .bg-shape1.left,
  .bg-shape2.right,
  .bg-shape3.left,
  .bg-shape4.right,
  .bg-shape5.left,
  .bg-shape6.right,
  .bg-shape7.left,
  .bg-shape8.left,
  .bg-shape9.right,
  .bg-shape10.left,
  .bg-shape11.right,
  .bg-shape12.left,
  .bg-shape13.right {
    display: none; /* hide background svg on mobile for cleaner layout */
  }
}
.accordion-body {
  background: var(--main-background);
}
.accordion-button {
  background: #f5f5f5;
}
.accordion-header {
  background: var(--main-background);
}
.accordion-button:not(.collapsed),
.accordion-button {
  font-size: 22px;
  font-weight: 600;

  color: var(--text-color);
  background-color: #f5f5f5;
}
.accordion-button:focus {
  box-shadow: none;
}
/* footer-styling */
/* .footer {
  background-color: #046d88; 
  font-family: "Outfit", sans-serif;
}
.footer h6 {
  font-size: 24px;
  color: #fdfdfd;
  font-weight: 600;
}

.footer-logo {
  max-width: 200px;
}

.footer-link {
  color: #fdfdfd;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #35aebc;
} */
.social-icons{
  padding-top: 25px;
  gap:15px;
}
.social-icons a img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.social-icons a:hover img {
  transform: scale(1.2);
  animation: bounce 0.4s;
}

/* Bounce on click */
.social-icons a:active img {
  transform: scale(0.9);
  animation: bounce-click 0.3s;
}

/* Keyframes for hover bounce */
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Keyframes for click bounce */
@keyframes bounce-click {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/*about-us page styling*/
.profile-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.image-stack .layer1 {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
}
.image-stack .layer1 {
  position: absolute;
  top: 7%;
  left: 0;
  width: 100%;
}
.image-stack .layer1 {
  position: absolute;
  top: 9%;
  left: 0;
  width: 100%;
}

.aboutus-section p {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: var(--text-color); /* adjust color */
  font-weight: 500;
}

/* Column: two stacked rows */
.about-profiles {
  display: flex;
  flex-direction: column;
  gap: 48px; /* space between the two rows */
}

/* Each row: image left, text right */
.profile-row {
  display: flex;
  align-items: center;
  gap: 50px; /* space between image and text */
}

/* Image overlay stack */
.photo-stack {
  position: relative;
  width: 200px; /* final circle size */
  height: 200px;
  flex: 0 0 200px;
}

.photo-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps the main photo filling the circle */
  border-radius: 50%; /* ensures circular crop if needed */
}

/* Two border PNGs below (slight offsets so you can see both) */
.ring-1 {
  z-index: 1;
  transform: translate(10px, -6px);
  opacity: 1;
}
.ring-2 {
  z-index: 2;
  transform: translate(6px, 6px);
  opacity: 0.95;
}

.ring-1-1 {
  z-index: 1;
  transform: translate(10px, 3px);
  opacity: 1;
}
.ring-2-2 {
  z-index: 2;
  transform: translate(-2px, 7px);
  opacity: 0.95;
}

/* Top image */
.photo {
  z-index: 3;
}

/* Text styles */
.profile-text .name {
  font-family: "Outfit", sans-serif;
  margin: 0 0 4px 0;
  font-weight: 600;
  color: var(--primary); /* tweak to your brand color */
  font-size: 21px;
}

/* Responsive */
@media (max-width: 576px) {
  .photo-stack {
    width: 110px;
    height: 110px;
    flex-basis: 110px;
  }
  .profile-row {
    align-items: flex-start;
    gap: 18px;
  }
  .profile-text .name {
    font-size: 16px;
  }
  .profile-text .role {
    font-size: 14px;
  }
}

.aboutus-section .bg-shape3.left {
  left: -92px;
  top: 48%;
}

.aboutus-section .bg-shape4.right {
  right: 0px; /* adjust how much you want visible */
  top: 75.8%;
}
.aboutus-section .bg-shape4.right img {
  width: 285px; /* scale as needed */
  height: 320px;
}

@media (max-width: 768px) {
  .bg-shape.left {
    display: none; /* hide background svg on mobile for cleaner layout */
  }
  .aboutus-section .bg-shape3.left {
    display: none;
  }
  .aboutus-section .bg-shape4.right {
    display: none;
  }
}



.footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  max-width: 200px;
}

.footer h4 {
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  margin-bottom: 15px;
  padding-top: 32px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.footer-location .addr {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-location .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  display: inline-block;
  filter: brightness(0) invert(1);
}


.newsletter h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 23px;
  margin-bottom: 10px;
  font-weight: 600;
}

.newsletter form {
  display: flex;
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
}

.newsletter input {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 18px;
}

.newsletter button {
  color: var(--text-color);
  border: none;
  padding: 0 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

