/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  margin: 0;
}


:root {
  --primary-blue: #0b3d91;
  --dark-blue: #072b63;
  --accent-yellow: #ffc107;
  --light-bg: #f5f8ff;
  --text-dark: #222;
  --white: #fff;
}

/* TOP BAR */
.top-bar {
    background: var(--dark-blue);
  color: var(--white);
  font-size: 14px;
  padding-bottom: 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 15px;
}

/* DESKTOP */
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--accent-yellow);
  text-decoration: none;
}

/* RIGHT SIDE */
.top-bar .right {
  display: flex;
  gap: 15px;
}

/* 🔥 MOBILE PERFECT FIX */
@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: row;
    align-items: center;
    text-align: center;
  }

  .top-bar .right {
    flex-direction: column;
    gap: 2px;
    margin-top: 5px;
  }
}






/* NAVBAR */
/* NAVBAR */
/* NAVBAR */
/* NAVBAR */
/* NAVBAR */
/* NAVBAR */
/* NAVBAR (OVERLAY ON HERO) */
/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 100;
}
.overlay.active { opacity: 1; visibility: visible; }

/* ===== NAVBAR ===== */
.navbar {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 35px; }
.logo span { font-size: 18px; font-weight: 600; }

/* DESKTOP NAV */
.nav-links ul { display: flex; gap: 25px; list-style: none; margin: 0; padding: 0; }
.nav-links ul li { position: relative; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 800; display: flex; align-items: center; gap: 4px; }

/* HOVER EFFECT */
.nav-links a:hover {
  color: var(--primary-blue);
}
/* DESKTOP DROPDOWN */
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  min-width: 180px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 999;
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.dropdown:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { display: block; padding: 10px 15px; font-weight: 500; font-size: 14px;  color: #444; }
.submenu li a:hover { background: #f5f5f5; color: #000; }

/* Arrow */
.arrow { display: inline-flex; align-items: center; transition: transform 0.3s ease; }
.arrow svg { width: 13px; height: 13px; }

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.menu-toggle span {
  display: block; width: 23px; height: 2.5px; background: #333;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -105%;
  width: 78%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  border-radius: 14px 0 0 14px;
  box-shadow: -6px 0 28px rgba(0,0,0,0.15);
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  padding: 22px 18px;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }

/* Drawer header */
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0;
}
.drawer-title { font-size: 15px; font-weight: 700; color: #1a1a1a; }
.drawer-close {
  width: 32px; height: 32px; border-radius: 8px; background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: #555; border: none; font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.drawer-close:hover { background: #ffe5e5; color: #e53935; }

/* Drawer list */
.drawer-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.drawer-nav li > a {
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: #222; font-weight: 600; font-size: 14.5px;
  padding: 11px 12px; border-radius: 10px; transition: background 0.18s, color 0.18s;
}
.drawer-nav li > a:hover { background: #f0faf5; }

/* Drawer accordion */
.drawer-submenu {
  list-style: none; max-height: 0; overflow: hidden;
  background: #f6f6f6; border-radius: 10px; margin: 3px 0 4px 0;
  transition: max-height 0.32s ease;
}
.drawer-dropdown.open > .drawer-submenu { max-height: 250px; }
.drawer-submenu li a {
  display: block; padding: 9px 16px; font-size: 13.5px;
  font-weight: 500; color: #444; text-decoration: none; border-radius: 8px;
  transition: background 0.18s;
}
.drawer-submenu li a:hover { background: #ebebeb; }
.drawer-dropdown.open > a .arrow { transform: rotate(180deg); }

/* Drawer contact */
.drawer-contact { margin-top: 24px; padding-top: 18px; border-top: 1px solid #f0f0f0; }
.drawer-contact p { font-size: 12.5px; color: #888; line-height: 2; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-drawer { display: flex; }
  .navbar{
      width:100%;
      border-radius: 0px;
  }
}













/* RATING SECTION */
.rating-section {
  background: #eaf4fb;  /* light blue */
  padding: 20px 0;
  margin-top: 10px;
}

.rating-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

/* BOX */
.rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON */
.rating-box i {
  font-size: 30px;
  color: #1e88e5; /* primary blue */
}

/* TEXT */
.rating-box h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #333;
}

.rating-box p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* STAR ICON (optional) */
.rating-box h4::before {
  content: "★ ";
  color: #f4c430; /* yellow */
}

/* MOBILE */
/* MOBILE FIX - SAME ROW */
@media (max-width: 768px) {
  .rating-container {
    flex-direction: row;   /* ❗ column hata diya */
    justify-content: space-between;
    gap: 5px;
  }

  .rating-box {
    flex-direction: column;  /* icon upar, text neeche */
    gap: 5px;
    flex: 1; /* equal width */
  }

  .rating-box i {
    font-size: 22px;
  }

  .rating-box h4 {
    font-size: 14px;
  }

  .rating-box p {
    font-size: 12px;
  }
}




/* ================= CATEGORIES SECTION ================= */






/* ================= FOOTER ================= */

.footer {
  background: #0b1c5c; /* deeper blue (premium look) */
  color: #fff;
  padding-top: 60px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  padding: 0 20px;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #dcdcdc;
}

/* HEADINGS */
.footer h3,
.footer h4 {
  margin-bottom: 18px;
  font-weight: 600;
  color: #fff;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #ffc107; /* better yellow */
  padding-left: 4px;
}

/* ================= SOCIAL ICONS ================= */

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ffc107;
  color: #000;
  transform: translateY(-3px);
}

/* ================= GALLERY ================= */

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-gallery img {
  width: 100%;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  transition: 0.3s;
}

.footer-gallery img:hover {
  transform: scale(1.05);
}

/* ================= BOTTOM ================= */

.footer-bottom {
  text-align: center;
  padding: 18px;
  margin-top: 40px;
  background: #07153a; /* darker bottom */
  font-size: 13px;
  color: #ccc;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* form pop up section css srart by rajesh */

/* ================= WHY SECTION ================= */
.why-section {
  padding: 60px 20px;
  background: #f5f8ff;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.why-card i {
  font-size: 35px;
  color: #0b3d91;
  margin-bottom: 10px;
}

/* TEXT */
.why-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: #666;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 22px;
  }

}

/* Popup Overlay */
.popup-overlayl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Container */
.popup-containerl {
    background-color: #0D3C78;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Close Button (X) */
.popup-closel {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

/* Trigger Button */
/* .trigger-button {
    background-color: #c7a135;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px auto;
    display: block;
    transition: background 0.3s ease;
}
.trigger-button:hover {
    background-color: #a88629;
} */

/* Container */
.containerdrpul {
    width: 100%;
    /*padding: 0 20px;*/
}

/* Border color change on focus */
#mobilepul:focus {
    outline: 2px solid #48a32c;
}

/* Red outline when input is invalid */
#mobilepul.invalid {
    outline: 2px solid red;
}

/* Form Section */
.form_sectiondrpul {
    background-color: #0D3C78;
    /*padding: 20px;*/
    border-radius: 20px 0 20px 0;
}

.bookdrpul {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: center;
}

.form-groupdrpul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.form-groupdrpul label {
    color: white;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.form-groupdrpul input,
.form-groupdrpul select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    outline: none;
}

.form-groupdrpul div {
    flex: 1;
    min-width: 250px;
}

/* Submit Button */
.btndrpul {
    margin-top: 15px;
    background-color: #f4c430;
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: background 0.3s ease;
}
.btndrpul:hover {
    background-color: #f4c430;
}

/* Custom Alert Box */
.custom-alertdrpul {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    width: 250px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid red;
}

.alert-contentdrpul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.alert-contentdrpul button {
    background-color: blue;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
}
.alert-contentdrpul button:hover {
    background-color: darkblue;
}

/* Responsive */
@media (max-width: 600px) {
    .popup-containerl {
        padding: 20px;
    }

    .form-groupdrpul {
        flex-direction: column;
    }

    .form-groupdrpul div {
        min-width: 100%;
    }

    .btndrpul {
        width: 100%;
    }

    /* .trigger-button {
        width: 90%;
    } */
}



/* Arithmetic Captcha Style */
/* Captcha one-row layout style */
.captcha-inline-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    background-color: #0D3C78;
    padding: 8px 12px;
    border-radius: 8px;
}

.captcha-inline-wrapper span {
    color: white;
    font-size: 16px;
    white-space: nowrap;
}

#captchaAnswerpul {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    outline: none;
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
    .captcha-inline-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-inline-wrapper span {
        margin-bottom: 5px;
    }

    #captchaAnswerpul {
        width: 100%;
    }
}










/* form pop up css end by rajesh */





/* non popup form css start */
/* Default border color */
/* Border color change on focus */
#mobile:focus {
    outline: 2px solid #48a32c; /* Green outline on focus */
}

/* Red outline when input is invalid */
#mobile.invalid {
    outline: 2px solid red; /* Red outline on invalid input */
}




.form_section{
background:#f5f5f7;
padding:40px 20px;
}

.consultation-wrapper{
display:flex;
max-width:1100px;
margin:auto;
border-radius:20px;
overflow:hidden;
}

/* LEFT SIDE FORM */

.consultation-left{
flex:2;
background:#f5f5f7;
padding:40px;
background-image:radial-gradient(#d9d9df 2px,transparent 2px);
background-size:25px 25px;
}

.form_section h2{
font-size:30px;
color:#3f4b6b;
margin-bottom:5px;
}

.doctor-text{
color:#3f4b6b;
margin-bottom:20px;
font-size: 20px;
font-weight: 700;
}

.form-group{
display:flex;
flex-direction:column;
gap:25px;
}

.form-group label{
font-weight:600;
}

.form-group input{
width:100%;
padding:14px;
border:none;
border-radius:10px;
background:#e6e6ea;
font-size:16px;
}

.form-name{
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.captcha-number{
    font-size: 15px;
    font-weight: 10px;
}







/* captcha */

.captcha-inline-wrapperad{
display:flex;
gap:10px;
align-items:center;
}

#captchaAnswerpulad{
flex:1;
padding:10px;
border-radius:6px;
border:none;
}

/* button */

.btn{
margin-top:10px;
background:#f4c430;
color:white;
padding:12px 24px;
border:none;
border-radius:6px;
font-size:14px;
cursor:pointer;
width:120px;
}

/* RIGHT SIDE HELP */

.consultation-right{
flex:1;
background:#f4c430;
display:flex;
align-items:center;
justify-content:center;
padding:30px;
}

.help-box{
display:flex;
align-items:center;
gap:20px;
color:white;
}

.phone-circle{
width:70px;
height:70px;
background:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#2f3338;
}

.help-text p{
margin:0;
font-weight:600;
}

.help-text h3{
margin:5px 0 0;
font-size:22px;
}

/* MOBILE */

@media(max-width:768px){

.consultation-wrapper{
flex-direction:column;
}

.consultation-left{
padding:25px;
}

.consultation-right{
padding:20px;
justify-content:flex-start;
}

.help-box{
width:100%;
}

}






/* non popup form css end */




/* social */




.floating-social{
position:fixed;
right:-5px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.floating-social a{
width:48px;
height:48px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#333;
text-decoration:none;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
transition:all .3s ease;
}

.floating-social a:hover{
transform:scale(1.1);
color:#fff;
}

.fb:hover{
background:#1877f2;
}

.insta:hover{
background:#e1306c;
}

.yt:hover{
background:#ff0000;
}










/* ================= PRODUCT SECTION ================= */

/* ================= PRODUCT SECTION ================= */

.product-section {
  padding: 50px 30px;
  background: #f8f9fb;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 35px;
  font-weight: 700;
}

/* ================= SCROLL CONTAINER ================= */

.product-container {
  display: flex;                 /* ❗ grid हटाया */
  gap: 15px;
  overflow-x: auto;
  padding-left: 10px;
  padding-right: 80px;           /* ❗ hint effect */

  scroll-behavior: smooth;
}

/* SCROLLBAR HIDE */
.product-container::-webkit-scrollbar {
  display: none;
}

/* ================= CARD ================= */

.product-card {
  min-width: 18%;   /* ❗ approx 5 cards */
  flex-shrink: 0;

  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* ================= IMAGE ================= */

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ================= TITLE ================= */

.product-card h3 {
  font-size: 15px;
  padding: 12px 10px;
  font-weight: 600;
}

/* ================= BUTTON ================= */

.btn-row {
  display: flex;
  gap: 8px;
  padding: 10px;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

/* TRAVORA STYLE */
.call {
  background: #1e3c72;
}

.call:hover {
  background: #16325c;
}

.whatsapp {
  background: #25d366;
}

.whatsapp:hover {
  background: #1ebe5d;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {

  .product-card {
    min-width: 30%;   /* 3 cards */
  }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .product-section {
    padding: 40px 15px;
  }

  .product-card {
    min-width: 80%;   /* 1 full + hint */
  }

}




/* ================= SPEC SECTION ================= */

.spec-section {
  padding: 30px 30px;
  background: #f8f9fb;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* ================= TABLE WRAPPER ================= */

.table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
}

/* ================= TABLE ================= */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

/* MAIN HEADER */
.main-head {
  background: #0b1c5c; /* dark blue */
  color: #fff;
}

.main-head th {
  padding: 15px;
  font-size: 15px;
}

/* SUB HEADER */
.sub-head {
  background: #f4c430; /* yellow */
}

.sub-head th {
  padding: 10px;
  font-size: 14px;
}

/* BODY */
.spec-table td {
  padding: 12px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* ROW HOVER */
.spec-table tr:hover td {
  background: #f1f6ff;
}

/* FEATURES TEXT */
.features {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  color: #333;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .spec-section {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 22px;
  }

}




/* ================= SINGLE PRODUCT ================= */

.single-product {
  padding: 60px 40px;
  background: #f8f9fb;
}

/* WRAPPER */
.product-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;

  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.product-image {
  flex: 1;
}

.product-image img {
  width: 100%;
  border-radius: 15px;
}

/* CONTENT */
.product-content {
  flex: 1;
}

.product-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1e3c72;
}

.product-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTONS */
.product-btns {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

/* COLORS */
.call {
  background: #1e3c72;
}

.call:hover {
  background: #16325c;
}

.whatsapp {
  background: #25d366;
}

.whatsapp:hover {
  background: #1ebe5d;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .single-product {
    padding: 40px 15px;
  }

  .product-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .product-content h2 {
    font-size: 22px;
  }

  .product-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

}










/* ================= SPEC TABLE ================= */

.spec-section {
  padding: 30px 30px;
  background: #f8f9fb;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* WRAPPER */
.table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
}

/* TABLE */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

/* MAIN HEADER */
.main-head {
  background: #0b1c5c;
  color: #fff;
}

.main-head th {
  padding: 14px;
  font-size: 14px;
}

/* SUB HEADER */
.sub-head {
  background: #f4c430;
}

.sub-head th {
  padding: 10px;
  font-size: 13px;
}

/* BODY */
.spec-table td {
  padding: 12px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* HOVER */
.spec-table tr:hover td {
  background: #f1f6ff;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .spec-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 22px;
  }

}










/* ================= TWO PRODUCT SECTION ================= */

.two-product-section {
  padding: 60px 40px;
  background: #f8f9fb;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* WRAPPER */
.two-product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* PRODUCT BOX */
.product-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.product-box:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.product-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* CONTENT */
.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e3c72;
}

.product-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* BUTTONS */
.btn-row {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

/* COLORS */
.call {
  background: #1e3c72;
}

.call:hover {
  background: #16325c;
}

.whatsapp {
  background: #25d366;
}

.whatsapp:hover {
  background: #1ebe5d;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .two-product-section {
    padding: 40px 15px;
  }

  .two-product-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-img img {
    height: 180px;
  }

  .btn-row {
    flex-direction: column;
  }

}




/* ================= HERO SECTION ================= */
/* ================= HERO SECTION ================= */
.hero-section {
  width: 100%;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  /*height: 100vh;*/
  object-fit: cover;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section img {
    height: auto;
    margin-top:30px;
  }
}









/* ================= ABOUT ================= */
.about-section {
  padding: 60px 20px;
  background: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE */
.about-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* CONTENT */
.about-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #0b3d91;
}

.about-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffc107;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 22px;
  }
}






/* ================= CONTACT ================= */
.contact-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0b3d91, #082a57);
  color: #fff;
  text-align: center;
}

/* TITLE */
.contact-title {
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.contact-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 25px 15px;
  border-radius: 12px;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

/* ICON */
.contact-card i {
  font-size: 30px;
  color: #ffc107;
  margin-bottom: 10px;
}

/* TEXT */
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-card p {
  font-size: 13px;
  color: #ddd;
  line-height: 1.6;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
}

/* ACTION BUTTONS */
.contact-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* CALL BUTTON */
.call-btn {
  background: #ffc107;
  color: #000;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 22px;
  }

  .contact-actions {
    flex-direction: column;
  }

}