*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

body{
  background:#0f2747;
}

/* HERO */
.hero {
  background: radial-gradient(circle at left, #1e3a63, #0f2747);
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  gap: 40px;
}

/* LEFT */
.hero-left {
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero h1 span {
  color: #d4a62a;
}

.subtitle {
  font-size: 22px;
  margin: 15px 0;
  color: #dbeafe;
}

.desc {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 20px;
}

/* TAGS */
.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.tag {
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: #d4a62a;
  color: #000;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

/* INFO */
.info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

/* RIGHT */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  /* padding: 20px; */
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-card img {
  width: 320px;
  border-radius: 15px;
}

/* FLOAT BOX */
.floating-box {
  position: absolute;
  top: -20px;
  right: -20px;
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 15px;
  font-weight: bold;
  text-align: center;
}

/* EXPERIENCE BADGE */
.exp-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.6);
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 13px;
}

/* ========================= */
/* 🔥 RESPONSIVE DESIGN */
/* ========================= */

@media (max-width: 1024px) {
  .hero {
    padding: 60px 30px;
  }

  .hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .info {
    justify-content: center;
  }

  .hero-right {
    margin-top: 30px;
  }

  .hero-card img {
    width: 260px;
  }

  .floating-box {
    right: 10px;
    top: -15px;
    font-size: 12px;
  }

  .exp-badge {
    left: 10px;
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 18px;
  }

  .desc {
    font-size: 14px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}


/* Navbarr */

/* NAVBAR */
.navbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  position:sticky;
  top:0;
  z-index:999;
}

/* LEFT */
.nav-left {
  display:flex;
  align-items:center;
  gap:12px;
}

.logo {
  width:45px;
  height:45px;
  background:#1f3b63;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}

.nav-text strong {
  font-size:16px;
  color:#1f3b63;
}

.nav-text span {
  display:block;
  font-size:12px;
  color:#d4a62a;
}

/* MENU */
.nav-menu {
  display:flex;
  align-items:center;
  gap:25px;
}

.nav-menu a {
  text-decoration:none;
  color:#1f3b63;
  font-weight:500;
  font-size:15px;
}

.nav-menu a.active {
  color:#d4a62a;
}

/* RIGHT */
.nav-right {
  display:flex;
  align-items:center;
  gap:20px;
}

.phone {
  font-size:14px;
  color:#1f3b63;
}

.btn {
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
}

.btn-primary {
  background:linear-gradient(90deg,#1f3b63,#2f7d78);
  color:#fff;
}

/* HAMBURGER */
.hamburger {
  display:none;
  font-size:24px;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:900px){

  .nav-menu {
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:15px;
    padding:20px 0;
    display:none;
  }

  .nav-menu.active {
    display:flex;
  }

  .nav-right {
    display:none;
  }

  .hamburger {
    display:block;
  }
}

/* Docotoes */

.why-section {
  background-color: white;
  text-align: center;
  padding: 80px 20px;
}

.why-section h2 {
  font-size: 36px;
  color: #1c2b4a;
  margin-bottom: 10px;
}

.why-section p {
  max-width: 700px;
  margin: auto;
  color: #6c7a92;
  font-size: 16px;
  line-height: 1.6;
}

/* Cards */
.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  width: 320px;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

/* Icon */
.icon {
  width: 50px;
  height: 50px;
  background: #f6efe2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #c9a34e;
}

/* Content */
.card h3 {
  font-size: 20px;
  color: #1c2b4a;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #6c7a92;
  margin-bottom: 20px;
}

/* Link */
.card a {
  text-decoration: none;
  color: #1c2b4a;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card a span {
  transition: 0.3s;
}

.card a:hover span {
  transform: translateX(5px);
}

/* Responsive */
@media(max-width: 992px) {
  .card-container {
    gap: 20px;
  }
}

@media(max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}


/* taglines */

.cta {
  background: linear-gradient(90deg,#1f3b63,#2f7d78);
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.cta h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.cta p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */
.btn-primary {
  background: #d4a62a;
  color: #000;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

/* FOOTER */
.footer {
  background: #243d63;
  color: #cbd5e1;
  padding: 70px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Columns */
.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Doctor Info */
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.logo1 {
  width: 45px;
  height: 45px;
  background: #3c557a;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  color:#fff;
}

.yellow {
  color: #d4a62a;
  font-size: 14px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.footer ul {
  list-style: none;
}

.footer ul li {
  margin: 8px 0;
}

.footer ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
}

.footer ul li a:hover {
  color: #fff;
}

/* Contact */
.contact-item {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

/* Social */
.social {
  margin-top: 15px;
}

.social span {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #3c557a;
  border-radius: 8px;
  margin-right: 8px;
}

/* Responsive */
@media(max-width:768px){
  .cta h2 {
    font-size: 28px;
  }
}

/* About us  */
.about {
  padding: 80px 60px;
  background-color: white;
}

/* TOP GRID */
.about-container {
  display:flex;
  gap:50px;
  align-items:center;
  flex-wrap:wrap;
}

/* IMAGE */
.about-img {
  flex:1;
}

.about-img img {
  width:100%;
  max-width:450px;
  border-radius:25px;
  display:block;
  margin-left: 5rem;
}

/* CONTENT */
.about-content {
  flex:1;
}

.about-content h2 {
  font-size:36px;
  color:#1c2b4a;
  margin-bottom:15px;
}

.about-content h2 span {
  color:#d4a62a;
}

.about-content p {
  font-size:15px;
  color:#6c7a92;
  line-height:1.6;
  margin-bottom:20px;
}

/* LIST */
.features {
  margin-bottom:25px;
}

.features li {
  list-style:none;
  margin-bottom:10px;
  font-size:14px;
  color:#1c2b4a;
}

/* CARDS */
.small-cards {
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.card {
  background:#fff;
  padding:20px;
  border-radius:15px;
  width:220px;
  box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.card strong {
  display:block;
  margin-bottom:5px;
  color:#1c2b4a;
}

.card span {
  font-size:13px;
  color:#d4a62a;
}

.card p {
  font-size:13px;
  margin-top:5px;
}

/* STATS */
.stats {
  display:flex;
  gap:20px;
  margin-top:50px;
  flex-wrap:wrap;
  justify-content:center;
}

.stat-box {
  background:#fff;
  padding:25px;
  border-radius:15px;
  text-align:center;
  width:200px;
  box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.stat-box h3 {
  font-size:24px;
  color:#1c2b4a;
}

.stat-box p {
  font-size:13px;
  color:#6c7a92;
}

/* ================= */
/* RESPONSIVE */
/* ================= */

@media(max-width:1024px){
  .about {
    padding:60px 30px;
  }
}

@media(max-width:768px){
  .about-container {
    flex-direction:column;
    text-align:center;
  }

  .about-img img {
    margin:auto;
  }

  .small-cards {
    justify-content:center;
  }
}

@media(max-width:480px){
  .about-content h2 {
    font-size:26px;
  }

  .stat-box {
    width:100%;
  }
}

/* Testmonial  */

/* SECTION */
.testimonials {
  padding:80px 40px;
  text-align:center;
}

.testimonials h5{
  color:#d4a62a;
  letter-spacing:1px;
  margin-bottom:10px;
}

.testimonials h2{
  font-size:36px;
  margin-bottom:10px;
  color: white;
}

.testimonials p{
  color:#cbd5e1;
  margin-bottom:40px;
}

/* GRID */
.testimonial-container{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

/* LEFT BOX */
.rating-box{
  background:#2b4a73;
  padding:30px;
  border-radius:20px;
  width:300px;
  text-align:center;
}

.rating-box h3{
  font-size:40px;
  margin:10px 0;
  color: white;
}

.stars{
  color:#fbbf24;
  font-size:18px;
}

/* PROGRESS */
.progress{
  margin:10px 0;
  text-align:left;
}

.progress span{
  font-size:13px;
}

.bar{
  background:#3e5b85;
  height:6px;
  border-radius:10px;
  margin:5px 0 10px;
}

.fill{
  background:#d4a62a;
  height:100%;
  border-radius:10px;
}

/* BUTTON */
.review-btn{
  margin-top:20px;
  background:#d4a62a;
  padding:10px;
  border-radius:10px;
  color:#000;
  font-weight:600;
  display:inline-block;
}

/* RIGHT */
.reviews{
  flex:1;
  max-width:700px;
}

.review-card{
  background:#fff;
  color:#1c2b4a;
  padding:20px;
  border-radius:15px;
  margin-bottom:20px;
  text-align:left;
}

.review-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.user{
  display:flex;
  align-items:center;
  gap:10px;
}

.avatar{
  width:40px;
  height:40px;
  background:#1f3b63;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

.review-card p{
  font-size:14px;
  margin:10px 0;
  color:#4b5563;
}

.actions{
  font-size:13px;
  color:#6b7280;
  display:flex;
  gap:15px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .testimonial-container{
    flex-direction:column;
    align-items:center;
  }

  .reviews{
    width:100%;
  }
}

@media(max-width:480px){
  .testimonials h2{
    font-size:26px;
  }
}


/* get in touch  */

/* SECTION */
.contact {
  padding: 60px 20px;
  background-color: white;
}

.container1 {
  max-width: 1150px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT */
.left {
  flex: 1;
}

.tag {
  color: #c7a54b;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.left h1 {
  font-size: 34px;
  margin: 10px 0;
  line-height: 1.3;
}

.left h1 span {
  color: #c7a54b;
}

.desc {
  color: #6b7280;
  margin-bottom: 30px;
  max-width: 420px;
}

/* INFO */
.info .item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
      flex-direction: column;
}

.icon {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.item h4 {
  font-size: 14px;
}

.item p {
  font-size: 13px;
  color: #6b7280;
}

.item span {
  color: #c7a54b;
  font-weight: 600;
}

/* SOCIAL */
.social {
  margin-top: 30px;
}

.social p {
  font-size: 14px;
  margin-bottom: 10px;
}

.icons span {
  display: inline-block;
  margin-right: 10px;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* RIGHT CARD */
.right {
  flex: 1;
  background: #eef1f6;
  padding: 25px;
  border-radius: 18px;
}

.right h3 {
  margin-bottom: 20px;
}

/* FORM */
form .row {
  display: flex;
  gap: 10px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #dcdfe4;
  margin-bottom: 15px;
  background: #fff;
}

textarea {
  height: 120px;
}

/* BUTTONS */
.btns {
  display: flex;
  gap: 10px;
}

.primary {
  flex: 1;
  background: #243b5a;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
}

.whatsapp {
  flex: 1;
  background: #19c15f;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
}

/* MAP */
.map {
  max-width: 583px;
  margin: -17% auto 0;
  margin-left: 50%;
}

.map iframe {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  border: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .container1 {
    flex-direction: column;
  }

  form .row {
    flex-direction: column;
  }

  .btns {
    flex-direction: column;
  }
  .map {
  max-width: 583px;
  margin: 14% auto 0;
  
}

}



/* Our Service Section */


.services-section{
  padding:60px 20px;
  background:#f9fbff;
  text-align:center;
}

.sub-title{
  color:#243d63;;
  font-size:16px;
}

.main-title{
  font-size:32px;
  margin:10px 0;
}

.desc{
  max-width:600px;
  margin:0 auto 40px;
  color:#666;
}

/* GRID */
.services-wrapper{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* CARD */
.service-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  transition:.4s;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* IMAGE */
.img-box{
  overflow:hidden;
}

.img-box img{
  width:100%;
  transition:.5s;
}

/* CONTENT */
.content{
  padding:20px;
}

.content h6{
  color:#243d63;;
  font-size:14px;
}

.line{
  display:block;
  width:30px;
  height:2px;
  background:#243d63;;
  margin:8px auto;
}

.content h3{
  margin:10px 0;
  font-size:20px;
}

.content p{
  font-size:14px;
  color:#666;
  margin-bottom:15px;
}

.content a{
  display:inline-block;
  padding:8px 18px;
  background:#243d63;;
  color:#fff;
  border-radius:20px;
  text-decoration:none;
  transition:.3s;
}

/* HOVER EFFECT */
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.service-card:hover img{
  transform:scale(1.1);
}

.content a:hover{
  background:#243d63;;
}

/* RESPONSIVE */
@media(max-width:992px){
  .services-wrapper{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .services-wrapper{
    grid-template-columns:1fr;
  }
}



/* technologis */



.services-section{
  padding:60px 20px;
  background:#f9fbff;
  text-align:center;
}

.sub-title{
  color:#d4a62a;
  font-size:16px;
  margin-bottom: 3rem;
}

.main-title{
  font-size:32px;
  margin:10px 0 40px;
}

.services-wrapper{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  transition:.4s;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.img-box{
  overflow:hidden;
}

.img-box img{
  width:100%;
  transition:.5s;
}

.content{
  padding:20px;
  text-align:left;
}

.content h4{
  color:#243d63;
}

.line{
  display:block;
  width:30px;
  height:2px;
  background:#243d63;
  margin:8px 0;
}

.content h3{
  font-size:18px;
  margin-bottom:8px;
}

.content p{
  font-size:14px;
  color:#666;
  margin-bottom:10px;
}

.content ul{
  padding-left:18px;
  margin-bottom:15px;
}

.content ul li{
  font-size:13px;
  color:#444;
  margin-bottom:5px;
}

.content a{
  display:inline-block;
  padding:8px 16px;
  background:#243d63;
  color:#fff;
  border-radius:20px;
  text-decoration:none;
}

/* Hover */
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.service-card:hover img{
  transform:scale(1.1);
}

/* Responsive */
@media(max-width:992px){
  .services-wrapper{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .services-wrapper{
    grid-template-columns:1fr;
  }
}

/* Appointment form */

/* Section */
.appointment-section {
  display: flex;
  min-height: 100vh;
  margin:5rem;  
  background-color: white;
}

/* Left Image */
.appointment-image {
  flex: 1;
}
.appointment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Form */
.appointment-form {
  flex: 1;
  padding: 40px;
  background: #f5f7fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.appointment-form h2 {
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 100px;
}

button {
  padding: 14px;
  border: none;
  background: #25D366;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {
  .appointment-section {
    flex-direction: column;
  }
  .appointment-image {
    height: 250px;
  }
}

.social-slide {
  position: fixed;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  z-index: 999;
}

.social-slide a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  padding: 10px;
  margin: 5px 0;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 8px 0 0 8px;
}

.social-slide a:hover {
  right: 120px;
  transform: translateX(-120px);
}

.social-slide span {
  font-size: 14px;
}

/* Colors */
.whatsapp { background: #25D366; }
.instagram { background: #E1306C; }
.facebook { background: #3b5998; }
.youtube { background: #ff0e0e; }