:root {
  --primary-color: #003366;
  --whatsapp-color: #25D366;
  --email-color: #0072C6;
  --white-color: #ffffff;
}

/* Reset and Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* Header */
/* ===== HEADER BASE STYLES ===== */
.header {
  background: var(--white-color);
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.header .container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 65px;
  width: 210px;
}

.quick-icons {
  display: flex;
  gap: 10px;
}

.icon-btn {
  font-size: 16px;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 6px;
  transition: all 0.3s ease;
}

/* ===== INDIVIDUAL BUTTON STYLES ===== */
.phone-btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 12px;
}

.phone-btn:hover {
  background: var(--primary-color);
  color: white;
}

.phone-btn:hover .phone-text {
   background: var(--primary-color);
  color: white;
}

.phone-text {
  font-size: 14px;
  white-space: nowrap;
  color: var(--primary-color);
}

.whatsapp-btn {
  background: transparent;
  border: 1px solid var(--whatsapp-color);
  color: var(--whatsapp-color);
}

.whatsapp-btn:hover {
  background: var(--whatsapp-color);
  color: white;
}

.email-btn {
  background: transparent;
  border: 1px solid var(--email-color);
  color: var(--email-color);
}

.email-btn:hover {
  background: var(--email-color);
  color: white;
}

/* ===== APPOINTMENT BUTTON ===== */
.appointment-btn {
  background: var(--primary-color);
  color: white;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s ease;
}

.appointment-btn:hover {
  background-color: white;
    color: var(--primary-color);
	border:2px, solid;
}

/* ===== MODAL STYLING ===== */
.modal-content {
  border-radius: 10px;
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
}

.modal-title {
  font-weight: 600;
}

.modal-body input,
.modal-body textarea {
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal-body input:focus,
.modal-body textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.1rem rgba(0, 51, 102, 0.25);
}

.w-100 {
    width: 100% !important;
    background: #003366;
    color: white;
}

.btn1-submit {
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  border-radius: 6px;
      height: 48px;
    border: solid;
    border-radius: 16px;
}

.btn1-submit:hover {
  background-color: #001f4d;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop view adjustments */
@media (min-width: 768px) {
  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .top-row {
    margin-bottom: 0;
    flex: 1;
  }

  .bottom-row {
    width: auto;
    margin-top: 0;
  }

  .phone-btn {
    width: auto;
  }

  .phone-text {
    display: inline-block;
  }
}

/* Mobile view adjustments */
@media (max-width: 767px) {
  .header .container {
    flex-direction: column;
    gap: 10px;
  }

  .top-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .bottom-row {
    width: 100%;
    margin-top: 10px;
  }

  .quick-icons {
    justify-content: center;
    gap: 10px;
  }

  .phone-btn .phone-text {
    display: none !important;
  }

  .phone-btn {
    width: 38px;
    height: 38px;
    padding: 8px;
    justify-content: center;
  }
}


/*<==========================
     SECTION 2: Banner Carousel
     Displays 3 promotional slides
============================== -->*/
/* Carousel Section Styling */
.banner-carousel {
  max-width: 100%;

}

.carousel-img {
    width:100%;
  height: 100%;            /* Desktop height */
  object-fit: cover;        /* No blur/stretching */
  object-position: center;
  border-radius: 10px;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
  .carousel-img {
    height: 100%;          /* Shorter and clearer on phones */
    border-radius: 6px;
  }
}
/*<==========================
     SECTION 3: Banner Carousel
    
============================== -->*/
.section-difference {
 background: linear-gradient(135deg, #e6f2ff, #f2f9ff);


}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #002b5c;
}

.section-title .highlight {
  color: #e63946;
  font-style: italic;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #002b5c;
  margin-bottom: 4px;
}

.section-subtext {
  color: #666;
  font-size: 0.9rem;
}

/* Diamond cards */
.diamond-box {
  width: 100%;
  padding-top: 100%;
  position: relative;
  transform: rotate(45deg);
  background: linear-gradient(145deg, #003366, #0076c9);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.diamond-content {
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-45deg);
  color: #fff;
  padding: 10px;
}

.diamond-content h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  font-weight: bold;
}

.diamond-content p {
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .diamond-content h4 {
    font-size: 1rem;
  }

  .diamond-content p {
    font-size: 0.75rem;
  }
}
.section-services-icon {
background: linear-gradient(135deg, #0076c9, #e6f3ff);
  padding: 60px 0;
  color: #003366;
}

/* Heading Styling */
.section-heading h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
}

.heading-prefix {
  color: #f2faff;
  font-weight: 500;
}

.highlighted-word {
  color: #e63946;
  font-weight: 700;
}

.heading-subtitle {
  font-size: 1rem;
  color: #f2faff;
}

/* Service Cards */
.service-card-light {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.service-card-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-box {
  font-size: 2.5rem;
  color: #0076c9;
  margin-bottom: 15px;
}

.service-card-light h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 10px;
}

.service-card-light p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Appointment CTA */
.cta-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #002b5c;
}

.btn-appointment {
  background-color: #0076c9;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 118, 201, 0.2);
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-appointment:hover {
  background-color: #005fa3;
}

/* Responsive */
@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 1.8rem;
  }

  .heading-subtitle {
    font-size: 0.9rem;
  }

  .icon-box {
    font-size: 2rem;
  }

  .cta-heading {
    font-size: 1.2rem;
  }

  .btn-appointment1 {
    padding: 10px 22px;
    font-size: 0.95rem;
	  background-color: #0076c9;
  color: white;
  }

  .service-card-light h4 {
    font-size: 1rem;
  }

  .service-card-light p {
    font-size: 0.85rem;
  }
}

}

.service-card-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-box {
  font-size: 2.5rem;
  color: #0076c9;
  margin-bottom: 15px;
}

.service-card-light h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 10px;
}

.service-card-light p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .modern-title {
    font-size: 1.5rem;
  }

  .icon-box {
    font-size: 2rem;
  }

  .service-card-light h4 {
    font-size: 1rem;
  }

  .service-card-light p {
    font-size: 0.85rem;
  }
}

.appointment-btn1 {
  background: var(--primary-color);
  color: white;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  width: 40%;
  text-align: center;
  transition: background-color 0.3s ease;
}

.appointment-btn1:hover {
  background-color: white;
    color: var(--primary-color);
	border:2px, solid;
}

/* Section 5: Scrolling Training Gallery *//* Section Background */
.section-glimpses {
  background: linear-gradient(135deg, #f5fcff, #e6f3ff);
  padding: 60px 0;
  overflow: hidden;
}

/* Section Title */
.glimpses-title {
  font-size: 2rem;
  font-weight: 700;
  color: #003366;
  letter-spacing: 0.5px;
}

.glimpses-title .highlight-text {
  color: #0076c9;
}

/* Carousel Base */
.glimpses-carousel {
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.glimpses-track {
  display: flex;
  width: calc(200%); /* Double for seamless repeat */
  animation: scroll-ltr 10s linear infinite;
}

.rtl .glimpses-track {
  animation: scroll-rtl 10s linear infinite;
}

/* Cards */
.glimpse-card {
  min-width: 300px;
  margin: 0 10px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.glimpse-card img {
width: 275px;
    height: 182px;
  border-radius: 8px;
}

/* Animation Keyframes */
@keyframes scroll-ltr {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes scroll-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .glimpse-card {
    width: 240px;
	height:210px
  }


  .glimpses-title {
    font-size: 1.5rem;
  }
}


/* Section 6: Hair Transplant Text Block */
/* === SECTION 7: Light Content Block === */
.section-leader {
  background: linear-gradient(135deg, #f5fcff, #eaf6ff);
  padding: 60px 20px;
  color: #003366;
}

.section-leader .container {
  margin: 0 auto;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
}

.section-leader p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 20px;
  text-align: justify; /* 👈 Add this */
}

/* Responsive Text */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
  }
  

  .section-leader p {
    font-size: 0.95rem;
  }
}

/* Section 6: Surgeon Spotlight */
/* === Section 8: Surgeon Highlight === */
/* Base Styles */
.hair-transplant-section2 {
  background: linear-gradient(to right, #00aace, #c8eafd);
  padding: 50px 20px;
  border-radius: 12px;
  font-family: 'Segoe UI', sans-serif;
  color: #003366;
}

.hair-transplant-container2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.clinic-info2,
.doctor-image2,
.doctor-info2 {
  flex: 1 1 30%;
  max-width: 400px;
  min-width: 280px;
  text-align: justify;
}

.clinic-info2 h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.clinic-info2 p,
.doctor-info2 p {
  font-size: 15px;
  line-height: 1.6;
}

.doctor-image2 {
  text-align: center;
}

.doctor-image2 img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 2px;
}

.doctor-image2 h3 {
  font-size: 20px;
  margin: 10px 0 5px;
}

.doctor-image2 em {
  color: #444;
  font-size: 14px;
}

/* Responsive - column layout for mobile */
@media screen and (max-width: 768px) {
  .hair-transplant-container2 {
    flex-direction: column;
    align-items: center;
  }

  .clinic-info2,
  .doctor-image2,
  .doctor-info2 {
    max-width: 100%;
    text-align: center;
  }

  .clinic-info2 p,
  .doctor-info2 p {
    text-align: justify;
    padding: 0 10px;
  }
}

.testimonial-section {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

.testimonial-carousel {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 25px 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  flex-shrink: 0;
}

.testimonial-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #003366;
}

.testimonial-card .stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .testimonial-carousel {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 90%;
    margin-bottom: 20px;
  }
}

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #0000005d;
      border-radius: 50%;
    }
	
	.contact-form-section {
  padding: 80px 0;
background: linear-gradient(to top, #d0eaff, #f9f9f9);


  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  opacity: 0.05;
  z-index: 0;
}

.contact-form-section .container {
  position: relative;
  z-index: 2;
}

.form-subtitle {
  color: #f9a825;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.form-wrapper {
  max-width: 800px;
}

.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea {
  border: 1px solid #d1d3e2;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 1rem;
  box-shadow: none;
  transition: 0.3s;
}

.contact-form-section input:focus,
.contact-form-section select:focus,
.contact-form-section textarea:focus {
  border-color: #6f42c1;
  box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.15);
  outline: none;
}

.btn1.btn1-submit {
  background: linear-gradient(135deg, #3c1dc9, #13005a);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 12px 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.btn1.btn1-submit:hover {
  background: linear-gradient(135deg, #2e14a1, #0d0047);
}
.contact-wrapper {

  background-image: url('images/Untitled design.jpg');
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-title {
	
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #003366;
}

.contact-container {
	  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.info-box:hover {
  transform: translateY(-4px);
}

.icon {
  font-size: 22px;
  color: white;
  background-color: #0077b6;
  padding: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.purple { background: #8e44ad; }
.violet { background: #6c5ce7; }
.blue   { background: #3498db; }

.info-content h4 {
  font-size: 18px;
  color: #1f2d5a;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 15px;
  color: #333;
  margin: 0;
}

.info-content a {
  color: #0077b6;
  text-decoration: none;
}

.map-box {
  flex: 1;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-title {
    font-size: 26px;
  }

  .map-box {
    height: 300px;
    margin-top: 20px;
  }
}

.footer-section {
  background-color: #f2f2f2;
  font-size: 0.9rem;
}

.footer-section .privacy-link {
  color: #3f51b5;
  margin-left: 10px;
  text-decoration: none;
}

.footer-section .privacy-link:hover {
  text-decoration: underline;
}
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-section h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
  color: #003366;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f8ff;
  font-weight: 600;
  font-size: 17px;
  color: #0077b6;
}

.faq-question .arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 16px;
  }
}
