* {
    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;
}

/* 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;
}

.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;
}
/* 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;
}
/* Puray Form ka Main Container */
.contact-container {
    max-width: 550px;
    margin: 50px auto;
    padding: 35px;
    background: #f4fbfb; /* Light teal background jo aapke brand se match kare */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.contact-container h2 {
    color: #26a69a;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

/* Input Fields ki Styling */
.form-group {
    margin-bottom: 18px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1.5px solid #d1e5e3;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Is se inputs screen se bahar nahi jayenge */
}

/* Jab user click kare (Focus) */
.form-group input:focus, .form-group textarea:focus {
    border-color: #26a69a;
    box-shadow: 0 0 8px rgba(38, 166, 154, 0.15);
}

.flex-row {
    display: flex;
    gap: 12px;
}

.country-code { flex: 1; }
.phone-input { flex: 2; }

/* Send Message Button (Solid Teal) */
.btn-submit {
    width: 100%;
    background: #26a69a;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
}

.btn-submit:hover {
    background: #1f8a7f;
}

/* Divider (OR) Section */
.payment-divider {
    margin: 25px 0;
    position: relative;
    text-align: center;
}

.payment-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #cce0df;
}

.payment-divider span {
    background: #f4fbfb;
    padding: 0 15px;
    color: #26a69a;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

/* Payment Link Section & Button (Outline Style) */
.payment-link-section {
    text-align: center;
}

.payment-link-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.btn-payment {
    display: inline-block;
    width: 100%;
    background: transparent;
    color: #26a69a;
    padding: 14px;
    border: 2px solid #26a69a;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-payment:hover {
    background: #26a69a;
    color: white;
}


.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;
  }
}


.footer-logo img {
  max-width: 140px;
  margin-bottom: 15px;
}


