* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #0f8a8a;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar span {
    margin-right: 15px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

/* HEADER */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* LOGO */
.logo h2 {
    color: #0f8a8a;
    font-weight: bold;
}

.logo {
    margin-left: 30px; /* jitna move karna ho utna px adjust karo */
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* NAVBAR */
.menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    padding: 10px 18px;
    color: #333;
    font-weight: 500;
}

.menu li a:hover {
    color: #0f8a8a;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: #333;
}

.dropdown-menu li a:hover {
    background: #f2f7f7;
    color: #0f8a8a;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* BUTTON */
.header-btn .btn {
    background: #0f3c5c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.header-btn .btn:hover {
    background: #0f8a8a;
}


/* Hero */
.hero {
    background: linear-gradient(
        rgba(14,138,146,0.85),
        rgba(14,138,146,0.85)
    ), url('contact.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.about-hero {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.about-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 42px;
  font-weight: 700;
  color:#1e8a8f;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 35px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.about-feature .icon {
  width: 35px;
  height: 35px;
  background: #e6f0ff;
  color: #1e8a8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.about-feature h4 {
  font-size: 18px;
  color: #1e8a8f;
  margin-bottom: 5px;
}

.about-feature p {
  font-size: 14px;
  color: #6b7280;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.cards-section {
  padding: 90px 0;
  background: linear-gradient(135deg,#1e8a8f, #1ea1c9);
  font-family: 'Inter', sans-serif;
}

.cards-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #eef7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card .icon img {
  width: 38px;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0e8a92;
  margin-bottom: 15px;
}

.info-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.experts-section {
  padding: 80px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.experts-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.experts-header .icon-circle {
  width: 55px;
  height: 55px;
  margin: auto;
  border-radius: 50%;
  border: 2px solid #2bb4e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2bb4e6;
  font-size: 24px;
}

.experts-header .sub-title {
  color: #2bb4e6;
  font-size: 14px;
  margin: 10px 0 5px;
}

.experts-header h2 {
  font-size: 36px;
  color: #0d2b52;
  margin-bottom: 60px;
}

/* Grid */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

/* Expert Card */
.expert-box h4 {
  margin-top: 20px;
  font-size: 18px;
  color: #0d2b52;
}

.expert-box span {
  font-size: 14px;
  color: #2bb4e6;
}

/* Hexagon Image */
.hexagon {
  width: 200px;
  height: 220px;
  margin: auto;
  clip-path: polygon(
    50% 0%, 
    100% 25%, 
    100% 75%, 
    50% 100%, 
    0% 75%, 
    0% 25%
  );
  border: 2px solid #2bb4e6;
  padding: 6px;
}

.hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inherit;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }

  .experts-header h2 {
    font-size: 28px;
  }
}


.site-footer {
  background: linear-gradient(135deg, #1e8a8f, #1aa6a1);
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-logo img {
  max-width: 140px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-item a {
  color: #fff;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  padding: 25px 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #1e8a8f;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-item {
    justify-content: center;
  }
}


