
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.logo {
    margin-left: 30px; /* jitna move karna ho utna px adjust karo */
}
.services-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* 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;
}

/* 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;
}

body {
  background: #ffffff;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(14,128,134,0.85), rgba(14,128,134,0.85)),
    url("https://images.unsplash.com/photo-1580281657527-47b9c0aa0b8b") center/cover;
  display: flex;
  align-items: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
}

/* LEFT SIDE */
.hero-left {
  width: 40%;
  color: #ffffff;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left span {
  font-weight: 700;
}

.hero-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.primary {
  background: #0e8086;
  color: #fff;
}

.secondary {
  background: #0b2b5c;
  color: #fff;
}

.call {
  background: #ffffff;
  color: #0b2b5c;
}

.btn:hover {
  transform: translateY(-2px);
}

/* ===== RIGHT SIDE 5 CARDS GRID ===== */
/* HERO RIGHT SLIDER */
.hero-right {
  width: 60%;
  overflow: hidden;
  position: relative;
}

.cards-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollCards 25s linear infinite;
}

.service-card {
  min-width: 260px;
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  text-align: center;
}

/* TEXT */
.service-card h3 {
  color: #0b2b5c;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.service-card a {
  color: #0e8086;
  text-decoration: none;
  font-weight: 500;
}
/* ICON STYLE */
.service-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #e6f4f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .icon i {
  font-size: 28px;
  color: #0e8086;
}

/* ANIMATION */
@keyframes scrollCards {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HOVER PAUSE (optional) */
.hero-right:hover .cards-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-right {
    width: 100%;
    margin-top: 40px;
  }
}


  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right {
    flex-direction: column;
  }


  .hero-left h1 {
    font-size: 36px;
  }


 
@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 28px;
  }
  
}

.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;              /* MAIN FIX */
  align-items: center;
  gap: 50px;
  padding: 0 20px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 30px;
  background: #1f4e79;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #163b5d;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
}

.mb-section {
  padding: 100px 0;
  background: #ffffff;
}

.mb-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

/* LEFT */
.mb-content {
  flex: 1;
}

.mb-tag {
  color: #00b4d8;
  font-size: 14px;
  font-weight: 600;
}

.mb-heading {
  font-size: 44px;
  font-weight: 700;
  color: #1d2b7c;
  margin: 15px 0 20px;
}

.mb-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

.mb-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 34px;
  background: #00b4d8;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT */
.mb-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.mb-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.mb-card h3 {
  font-size: 20px;
  color: #1d2b7c;
  margin-bottom: 12px;
}

.mb-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.mb-card-highlight {
  background: #00b4d8;
}

.mb-card-highlight h3,
.mb-card-highlight p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mb-container {
    flex-direction: column;
    text-align: center;
  }

  .mb-cards {
    grid-template-columns: 1fr;
  }
}

/* Section */
.expertise-section {
    background: linear-gradient(rgba(18,137,145,0.9), rgba(18,137,145,0.9)),
                url("bg.jpg") center/cover no-repeat;
    padding: 80px 0;
    color: #ffffff;
}

/* Wrapper */
.expertise-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Content */
.expertise-content {
    flex: 1;
}

.expertise-label {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.expertise-heading {
    font-size: 42px;
    margin: 15px 0 25px;
    line-height: 1.2;
}

.expertise-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}

/* Button */
.expertise-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #0b3c5d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
}

.expertise-btn:hover {
    background: #06293f;
}

/* Cards */
.expertise-cards {
    display: flex;
    gap: 25px;
}

.expertise-card {
    background: #ffffff;
    color: #0b3c5d;
    width: 200px;
    padding: 30px 20px;
    text-align: center;
    border-radius: 18px;
}

/* Icon */
.expertise-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border: 2px solid #1fa0a8;
    border-radius: 50%;
    font-size: 26px;
    line-height: 56px;
    color: #1fa0a8;
    margin-bottom: 15px;
}

.expertise-number {
    font-size: 36px;
    margin-bottom: 8px;
}

.expertise-card-text {
    font-size: 15px;
    color: #1fa0a8;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
    .expertise-wrapper {
        flex-direction: column;
    }

    .expertise-cards {
        justify-content: center;
    }
}



/*.review-section {*/
/*  padding: 80px 0;*/
/*  background: #f4f7fb;*/
/*  text-align: center;*/
/*}*/

/*.review-section h2 {*/
/*  font-size: 34px;*/
/*  margin-bottom: 35px;*/
/*}*/

/* SCROLL AREA */
/*.review-scroll {*/
/*  width: 100%;*/
/*  max-width: 520px;*/
/*  height: 360px;*/
/*  margin: auto;*/
/*  overflow: hidden;*/
/*}*/

/* TRACK */
/*.review-track {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 20px;*/
/*}*/

/* BOX */
/*.review-box {*/
/*  background: #ffffff;*/
/*  border-radius: 14px;*/
/*  padding: 22px 24px;*/
/*  box-shadow: 0 12px 30px rgba(0,0,0,0.12);*/
/*  border-left: 5px solid #0aa1a7;*/
/*  text-align: left;*/
/*}*/

/* HEADER */
/*.review-head {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 12px;*/
/*  margin-bottom: 10px;*/
/*}*/

/* AVATAR */
/*.avatar {*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  background: #0aa1a7;*/
/*  color: #fff;*/
/*  border-radius: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  font-weight: bold;*/
/*}*/

/*.review-box h4 {*/
/*  font-size: 17px;*/
/*}*/

/*.review-box p {*/
/*  font-size: 14px;*/
/*  line-height: 1.6;*/
/*  color: #555;*/
/*}*/

/* WHY CHOOSE SECTION */
/* ========== WHY CHOOSE SECTION ========== */
.why-choose {
  background: #ffffff;   /* ✅ pure white background */
  padding: 70px 0;
}

.why-choose .container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT SIDE */
.why-left h2 {
  font-size:  44px;
  color: #243a76;
  margin-bottom: 15px;
}

.why-left p {
  color: #5f6b7a;
  line-height: 1.7;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

/* NORMAL CARD */
.service-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #243a76;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 15.5px;
  color: #5f6b7a;
  line-height: 1.7;
}

/* HIGHLIGHT CARD */
.service-card.highlight {
  background: #00b3d6;
}

.service-card.highlight h4,
.service-card.highlight p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== 3D EFFECT SETUP ===== */
.services-cards {
  perspective: 1200px;   /* 👈 3D depth */
}

/* CARD BASE UPDATE */
.service-card {
  transform-style: preserve-3d;
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}

/* 3D HOVER EFFECT */
.service-card:hover {
  transform: 
    translateY(-10px)
    rotateX(6deg)
    rotateY(-6deg)
    scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* SMOOTH TEXT POP (SUBTLE) */
.service-card h4,
.service-card p {
  transition: transform 0.4s ease;
}

.service-card:hover h4 {
  transform: translateZ(30px);
}

.service-card:hover p {
  transform: translateZ(20px);
}

/* HIGHLIGHT CARD – SLIGHTLY STRONGER */
.service-card.highlight:hover {
  transform: 
    translateY(-12px)
    rotateX(7deg)
    rotateY(-7deg)
    scale(1.04);
}

/* ============================
   FOOTER – FINAL FIXED VERSION
============================ */


.main-footer {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  background: linear-gradient(135deg, #1f8f99, #167a83);
  color: #fff;
  padding: 80px 0 30px;
}

/* Container */
.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 90px;
  align-items: flex-start;
}

/* LEFT: About */
.footer-about {
  max-width: 420px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

/* CENTER: Contact */
.footer-contact h3,
.footer-links h3 {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
}

.contact-item span {
  font-size: 18px;
  min-width: 24px;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* RIGHT: Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.95;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Bottom Section */
.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding-top: 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #167a83;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.9;
}



.menu-toggle {
  display: none; /* Desktop par hide */
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Mobile par show */
  }
  .nav-links {
    display: none; /* Mobile menu initially hide */
    flex-direction: column;
    width: 100%;
    background-color: #333;
  }
}




