* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
  scroll-behavior: smooth;
  width: 100%;
  
  
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  z-index: 9999;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
ul.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0px;
  padding-right: 0px;
}

.header-logo {
  width: 500px;
}

.header-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
.mobile-category {
  position: relative;
}

.mobile-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: -200px; /* adjust as needed */
  background-color: rgba(0, 0, 0, 0.7); /* black transparent background */
  padding: 10px;
  border-radius: 5px;
  width: 180px; /* adjust width if needed */
}

.mobile-submenu a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 5px 0;
  font-size: 25px;
}

.mobile-category:hover .mobile-submenu {
  display: block;
}


.header-right {
  width: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-top-info {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.header-info-block {
  margin-left: 2.5rem;
  text-align: right;
}

.header-info-title {
  color: #fff;
  font-weight: 600;
  margin-top: 12px;
}
.header-info-title:hover{
 font-size: 18px;
 
}

.header-info-sub {
  color: #ccc;
  font-size: 0.875rem;
}

.header-main-nav .header-nav-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
  padding-right: 10px;
  
}

.header-main-nav .header-nav-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.header-main-nav .header-nav-list a:hover {
  color: #ccc;
}
.header-mobile-menu-button {
  display: none;
  position: fixed; /* 🔥 Instead of absolute */
  top: 0.5rem;     /* Adjust as needed */
  right: 1.5rem;   /* Adjust as needed */
  z-index: 100;    /* Higher than header (your header is z-index 50) */
}

  
  .header-mobile-menu-button button {
    background: transparent;
    /* border: 2px solid #fff; */
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 0.5rem;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
  }
  
  .header-mobile-menu {
    display: none;
    background-color: #111;
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    border-radius: 8px;
  }
  #mobile-menu
  {
    background-color: #000;
  }
  .header-mobile-menu.open {
    display: block;
  }
  
  .header-mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid #333;
}

.header-mobile-menu a:last-child {
  border-bottom: none;
}
.category-toggle {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

/* Individual submenu links */
.category-toggle a {
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  background-color: rgba(0, 0, 0, 0.85); /* Optional dark background */
}

/* Remove underline and line separators */
.category-toggle a:hover {
  background-color: #1a1a1a;
  padding-left: 25px;
  transition: 0.3s;
}

/* Make sure there's NO border or line between */
.category-toggle a:not(:last-child) {
  border: none;
  margin-bottom: 0;
}

/* .category-toggle, #mobile-procedures-btn, #about-procedures-btn, .about-toggle,#intimate-procedures-btn,#transform-procedures-btn{
  background: transparent;
  color: #ffffff; 
  border: none;
  padding: 10px 10px;
  border-radius: 5px;
  font-size: 16px;
} */
 /* General button styling */
.category-toggle,
#mobile-procedures-btn,
#about-procedures-btn,
.about-toggle,
#intimate-procedures-btn,
#transform-procedures-btn,#blog,#req,#cosmetic-procedures-btn {
  background: transparent;
  color: #ffffff;
  border: none;
  padding: 10px 10px;
  /* border-radius: 5px; */
  font-size: 16px;
  text-align: left;
  border-bottom: none;
  width: 100%;
}


/* Mobile dropdown wrapper */
.header-mobile-menu {
  background-color: #000; /* assuming black background */
  padding: 10px;
}

/* Submenu container */
.mobile-categories,
.mobile-submenu {
  padding-left: 10px;
  padding-top: 5px;
  text-align: left;
  padding-bottom: 5px;
}
/*                                                  */
/* Submenu item links */
.mobile-submenu a,
.about-toggle a {
  display: block;
  padding: 10px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  /* border-bottom: 1px solid #444;  */
}

.mobile-submenu a:last-child,
.about-toggle a:last-child {
  border-bottom: none; /* remove line after last item */
}

/* Optional: Hover effect for better UX */
.mobile-submenu a:hover,
.about-toggle a:hover {
  background-color: #1a1a1a;
  padding-left: 5px;
  transition: 0.3s;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  body,html{
    overflow-x: hidden;
  }
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .header-container {
    justify-content: space-between;
  }

  .header-right {
    display: none;
  }
  .header
  {
     background-color: #000;
  }

  .header-mobile-menu-button {
    display: block;
  }
  .header-mobile-menu-button button {
    background: black;
  }
}


.wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  overflow: visible;
  z-index: 0;
}

/* Diagonal animated background */
.diagonal {
  width: 100vw;
  height: 100vh;
  background-color: #333;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: shrinkToDiagonal 1.4s ease-out forwards;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Shrink animation */
@keyframes shrinkToDiagonal {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 25% 0, 40% 100%, 0 100%);
  }
}

/* Text section layered above diagonal */
.diagonal-content1 {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 5rem 3rem;
  color: white;
  overflow: visible;
}

/* Golden animated box lines */
.text-wrapper {
  position: relative;
  width: fit-content;
  overflow: visible;
  animation: growText 1.2s ease-out forwards;
  text-align: left;
  margin-top: 100px;
}

/* Text grow-in animation */
@keyframes growText {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Headline styles */
.plain-text3 {
  font-family: 'Italianno', cursive;
  font-size: 120px;
  margin-top: 40px;
  line-height: 1;
  z-index: 15;
}

.plain-text1 {
  font-size: 60px;
  font-weight: bold;
  margin: 10px 0;
  line-height: 1.2;
  z-index: 15;
}

/* Call-to-action button */
.know-more-btn2 {
  display: inline-block;
  padding: 15px 30px;
  margin-top: 20px;
  background-image: url('img/btn-gold.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.know-more-btn2:hover {
  transform: scale(1.05);
}

.know-more-btn {
  display: inline-block;
  padding: 15px 30px;
  background-image: url('img/btn-gold.jpg'); /* your background image here */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  border: 2px solid white;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.know-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

 .root {
  /* Increase the thickness of the lines */
  --text-line-width: 4px; /* Change this value to make lines thicker or thinner */
}


.text-wrapper {
  position: relative;
  display: inline-block;   /* shrink-wrap to text size */
  overflow: visible;
  animation: growText 1.2s ease-out forwards;
  text-align: left;
  margin-top: 100px;
  z-index: 2;  /* text above border */
   padding: 20px;
}

.text-border {
  position: absolute;
  width: 50%;
  top: -10px;   
  left: -10px;
  right: -10px;
  bottom: -10px;
  pointer-events: none;
  z-index: 1;
  box-sizing: border-box;
}
 /* .text-border {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  pointer-events: none;
  z-index: 1;
  box-sizing: border-box;
} */



/* Line base style */
.text-line {
  position: absolute;
  background-color: #d5a561;
  opacity: 1;
  z-index: 1;
}

/* Top line */
.top-line-text {
  top: 0;
  left: 0;
  height: var(--text-line-width, 4px);
  width: 100%;
  animation: drawTopText 1s forwards;
}

/* Left line */
.left-line-text {
  top: 0;
  left: 0;
  width: var(--text-line-width, 4px);
  height: 100%;
  animation: drawLeftText 1s forwards;
}

/* Bottom line */
.bottom-line-text {
  bottom: 0;
  left: 0;
  height: var(--text-line-width, 4px);
  width: 100%;
  animation: drawBottomText 1s forwards 1s;
}

/* Right line */
.right-line-text {
  top: 0;
  right: 0;
  width: var(--text-line-width, 4px);
  height: 100%;
  animation: drawRightText 1s forwards 1s;
}

/* Animation keyframes */
@keyframes drawTopText {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes drawLeftText {
  from { height: 0; }
  to { height: 100%; }
}

@keyframes drawBottomText {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes drawRightText {
  from { height: 0; }
  to { height: 100%; }
}

/* <!-- ========== SECTION: Hero-Container ========== -->  */

.hero-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  width: 100%;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.visible {
  opacity: 1;
  z-index: 1;
}

.hidden {
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 3rem;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 10px;
}

.top-left {
    display: flex;
    gap: 40px;
}

.top-right {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.right-pair {
    display: flex;
    gap: 40px;
}

.top-column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.align-right {
    text-align: right;
}
/* nav */
.navbar {
  display: flex;
  justify-content: flex-end; /* aligns navbar content to the right */
  align-items: center;
  padding: 1rem 0;
  z-index: 100000;
  /* position: fixed; */
}
.navbar,
.top-bar {
position: relative;
z-index: 10;
}
/* Base styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  padding: 0px;
  /* background-color: rgba(0, 0, 0, 0.85); */

}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  min-width: 130px;
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  list-style: none;
  position: relative;
  padding: 10px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);

}

.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.85);
}



.dropdown-item:hover .submenu {
  display: block;
}

.submenu li {
  padding: 3px;
}

.submenu li:hover {
  background-color: rgba(0, 0, 0, 0.85);
}

.submenu {
  
  display: none;
  position: absolute;
  top: 0;
  left: 100%; /* Current setting puts it just next to the menu */
  margin-left: 10px; /* ✅ Add this line to add space */
  background-color: rgba(0, 0, 0, 0.85);
  padding: 10px;
  border-radius: 5px;
  min-width: 180px;
  z-index: 1000;
}

.submenu a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 8px 12px;
}

.submenu a:hover {
  background-color: rgba(43, 41, 41, 0.1);
  border-radius: 3px;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
}

/* end nav */
.hero-text {
  margin-top: 100px;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 900;
  /* line-height: 0.3; */
  animation: slideUp 3s ease-in;
}

.hero-text p {
  font-size: 40px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.5; /* reduce this value to bring lines closer */
  animation: slideUp 3s ease-in;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
  }
}
/* ========== TRANSFORMATION GALLERY ========== */
.section-wrapper {
background-color: white;
padding: 40px 20px;
min-height: 100vh;
color: black;
}

.intro-text h2 {
font-size: 60px;
text-align: center;
margin-top: 10px;
}

@media(max-width:768px){
  .intro-text h2{
    font-size: 30px;
  }
}

.card-container {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
padding-top: 60px;
}
.card {
width: 250px;
height: 400px;
padding-bottom: 30%;
background-size: cover;
background-position: center;
position: relative;
overflow: hidden;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
opacity: 0; /* Initially hidden */
transform: translateY(20px);
transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.card.show {
opacity: 1; /* Card will be shown after transition */
transform: translateY(0);
}





/* Animate all cards with a stagger
.card.animate {
animation: slideIn 0.8s ease forwards;
}

@keyframes slideIn {
0% {
  opacity: 0;
  transform: translateX(-50px);
}
100% {
  opacity: 1;
  transform: translateX(0);
}
} */


.card:hover {
transform: scale(1.05);
/* z-index: 3; */

}

.card::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
opacity: 0;
transition: opacity 0.3s ease;
z-index: 1;
}

.card:hover::before {
opacity: 1;
}

.card span {
position: absolute;
bottom: 40px;
width: 100%;
text-align: center;
color: white;
font-size: 28px;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
z-index: 2;
transition: opacity 0.3s ease;
}


.card:hover span {
opacity: 0;
}

.card-names {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
z-index: 2;
pointer-events: none;
max-width: 90%; /* Or 100% */
width: 100%
}

.card-names a {
opacity: 0;
transform: translateY(20px);
color: white;
text-decoration: none;
margin: 6px 0;
padding: 6px 12px;
border-radius: 4px;
transition: transform 0.3s ease, opacity 0.3s ease;
pointer-events: auto;
white-space: nowrap;
max-width: 220px;
overflow: hidden;
text-overflow: ellipsis;
text-align: center;
font-size: 18px;
}

.card:hover .card-names a {
animation: slideUp 0.4s ease forwards;
}

.card:hover .card-names a:nth-child(1) { animation-delay: 0.1s; }
.card:hover .card-names a:nth-child(2) { animation-delay: 0.2s; }
.card:hover .card-names a:nth-child(3) { animation-delay: 0.3s; }
.card:hover .card-names a:nth-child(4) { animation-delay: 0.4s; }
.card:hover .card-names a:nth-child(5) { animation-delay: 0.5s; }
.card:hover .card-names a:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideUp {
to {
  transform: translateY(0);
  opacity: 1;
}
}
/* BA */
/* Before After */
.BandF {
  box-sizing: border-box;
  margin: 0;
  background: #fff;
  color: black;
  padding: 4rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: black;
}


.gallery-container {
  position: relative;
  margin: 3rem 0;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: white;
}

.nav-button svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.nav-button.left {
  left: 0;
  transform: translate(-50%, -50%);
}

.nav-button.right {
  right: 0;
  transform: translate(50%, -50%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.image-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.image-wrapper {
  width: 100%;
  border-radius: 6px;
  background-image:
  linear-gradient(135deg, #d4af37, #f6e27a, #b8860b, #ffd700, #ffecb3);
  padding: 3px;
}

.image-inner {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.image-inner img {
  width: 100%;
  height: auto;;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.noise-layer {
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  opacity: 0.1;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}

.subheadings {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.subheadings h4 {
  font-size: 1rem;
  color: #4b5563;
}
a{
text-decoration: none;
}
.subheadings.desktop {
  display: none;
}

.image-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 1rem;
}



@media (max-width: 768px) {
    .hero {
    height: 70vh;
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }
}

/* <!-- ========== SECTION: ABOUT ========== --> */

.about-section {
  background-image: url('img/bg-dark.jpg');
  background-size: cover;
  color: white;
  padding: 80px 40px;
  opacity: 1;
  width: auto;
  
}

.dr-parag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.image-frame {
  position: relative;
  display: inline-block;
  padding: 15px; /* Creates space around the image for the rectangle to animate */
  z-index: 1;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 750px;
  position: relative;
  z-index: 2; /* Keeps the image on top of the lines */
  border-radius: 4px;
  margin-top: 60px;
  margin-left: 70px;
}

/* Rectangle lines */
.border-line {
  position: absolute;
  background-color: #d5a561;
  z-index: 1;
}


:root {
  --inset: 50px;
  --line-width: 6px;
}

/* Top Line */
.top-line {
  top: var(--inset);
  left: var(--inset);
  height: var(--line-width);
  width: 0;
  animation: drawTop 1s forwards;
}

/* Left Line */
.left-line {
  top: var(--inset);
  left: var(--inset);
  width: var(--line-width);
  height: 0;
  animation: drawLeft 1s forwards;
}

/* Bottom Line */
.bottom-line {
  bottom: var(--inset);
  left: var(--inset);
  height: var(--line-width);
  width: 0;
  animation: drawBottom 1s forwards 1s;
}

/* Right Line */
.right-line {
  top: var(--inset);
  right: var(--inset);
  width: var(--line-width);
  height: 0;
  animation: drawRight 1s forwards 1s;
}

/* Keyframes */
@keyframes drawTop {
  from { width: 0; }
  to { width: calc(100% - 2 * var(--inset)); }
}

@keyframes drawLeft {
  from { height: 0; }
  to { height: calc(100% - 2 * var(--inset)); }
}

@keyframes drawBottom {
  from { width: 0; }
  to { width: calc(100% - 2 * var(--inset)); }
}

@keyframes drawRight {
  from { height: 0; }
  to { height: calc(100% - 2 * var(--inset)); }
}


.dr-parag-image,
.dr-parag-content {
  flex: 1;
  min-width: 300px;
}

.dr-parag-image {
  max-width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
transform: translateY(60px);
transition: opacity 1s ease-out, transform 1s ease-out;
  /* animation: slideUp 5s ease-out; */
}
.dr-parag-image.visible {
  opacity: 1;
  transform: translateY(0);
}
.dr-parag-image img {
  width: 90%;
  /* max-width: 500px; */
}

.dr-parag-content {
  padding: 20px;
}

.dr-parag-content h2 {
  font-size: 45px;
  font-weight: 700;
}

.sub-heading {
  font-size: px;
  margin-bottom: 16px;
  font-weight: 500;
  
}

.small-text {
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
}

/* .know-more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background-color: #d5a561;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
 */
/* .know-more-btn:hover {
  background-color: #e6c200;
} */
 
.know-more-btn {
  display: inline-block;
  padding: 15px 30px;
  background-image: url('img/btn-gold.jpg'); /* your background image here */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  border: 2px solid white;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.know-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

/* Slide up animation */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* <!-- ========== SECTION: virtual-consult-section  ========== --> */
.virtual-consult-section {
  background-color:white;
  color: black;
  padding: 80px 40px;
}

.virtual-consult-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.virtual-image,
.virtual-content {
  flex: 1;
  max-width: 50%;
  min-width: 300px;
}

.virtual-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.virtual-image img {
  width: 1000px;
  max-width: 500px;
  height: 700px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* .virtual-content {
  padding: 20px 40px;
} */

.virtual-content h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}

.virtual-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  text-align: justify;
}
.file-upload {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 2px; /* space between label and input */
}

.file-upload label {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.file-upload input[type="file"] {
  padding: 8px 14px;
  background-color: #d5a561;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* <!-- ========== SECTION: trusted-section ========== --> */
.trusted-section {
  background-color: #8888; /* light gray */
  color: #000; /* black text */
  padding: 80px 20px;
}

.trusted-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* Aligns items to the top */
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
}

.trusted-content {
  flex: 1 1 50%;
  /* padding: 20px; */
  align-self: flex-start;
}

.trusted-content h2 {
  font-size: 50px;
  font-weight: 20px;
  margin-bottom: 20px;
  white-space: normal; /* Ensures wrapping on long text */
  
  line-height: 1.3; 
  text-align: left;
  margin-top: 50px;
}

.trusted-content p {
  font-size: 18px;
  text-align: justify;
  margin-bottom: 20px; /* Add space between paragraphs */
  line-height: 1.4; /* Adjusts the space between lines */
}

.trusted-image {
  flex: 1 1 50%;
  /* padding: 5px; */
  text-align: center;
  padding-top: 0px;
  margin-top: 10;
}

.trusted-image img {
  max-width: 100%;
  height: 600px;
  /* margin-top: 10px; */
}

.trusted-image .image-frame img {
  position: relative;
  top: -20px; /* Moves image upward smoothly */
  margin-left: 70px;
  padding-top: 0;
  margin-top: 80px;
}
.know-more-btn {
  margin-top: 20px;
  background-color: #d5a561;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.know-more-btn:hover {
  background-color: #a28238;
}

@media (max-width: 768px) {
  .trusted-content,
  .trusted-image {
    flex: 1 1 100%;
    text-align: center;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Montserrat:wght@400;600&display=swap');
/* FOOTER */
.foooter {
background-image: url('img/bg-light.jpg');
background-size: cover;
padding: 30px 20px;
font-family: sans-serif;
}

.footer-container {
max-width:100%;
margin: auto;
}

.info-section {
display: flex;
justify-content: space-between;
padding: 0 10px; /* You can reduce even further or set to 0 */
margin: 0;
line-height: 1.3;
}

.left-side {
display: flex;
flex-direction: column;
max-width: 40%;
padding: 0;
}

/* .logo-column img {
width: 800px; 
height: auto;
} */
strong{
font-size: 20px;
}
#popup-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 300px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 2px solid black;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border-radius: 10px;
  text-align: center;
}

.know-more-btn1 {
  display: block;
  margin: 20px auto 0 auto; /* Center the button horizontally */
  padding: 10px 20px;
  background-image: url('img/btn-gold.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  border: 2px solid white;
  width: 100px;
  height: auto;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.know-more-btn1:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}



#popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 999;
}
.contact p {
margin: 0;
font-size: 20px;
color: #333;
gap: 40;
margin-bottom: 5px;
margin-top: 20px;

}

.right-side iframe {
max-width: 100%;
border-radius: 10px;
}

.social-icons {
text-align: center;
margin: 20px 0;
}

.social-icons a img {
width: 30px;
margin: 0 10px;
vertical-align: middle;
}

/* Centering container */
.button-wrapper {
text-align: center; /* horizontal centering */
margin-top: 20px;
}

.footer-bottom {
text-align: center;
font-size: 14px;
color: #666;
}

.footer-bottom a {
color: #444;
text-decoration: none;
}

.footer-bottom .disclaimer {
margin-top: 10px;
font-size: 13px;
color: #888;
line-height: 1.4;
}

.logo-column1 {
    text-align: left;
    flex: 1;
}

.logo-column1 img {
    width: 350px; /* Increased size */
    height: auto;
    display: block;
  
}

.social-icons {
    margin: 30px 0;
}

.social-icons a {
    margin: 0 15px;
    display: inline-block;
}

.social-icons img {
    width: 35px;
    height: 35px;
}

.footer-bottom {
    margin-top: 25px;
    font-size: 16px; /* Increased font size */
    /* font-family: 'Montserrat', sans-serif; */
}

.footer-bottom a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.disclaimer {
    margin-top: 15px;
    font-size: 14px; /* Slightly larger for readability */
    color: gray;
}



/* ========== IMAGE + LOGO SECTION ========== */
.grey-section {
background-color: grey;
padding: 80px 20px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
overflow: hidden;
}
.grey-section p{
color: white;
font-size: 25px;
text-transform: uppercase;
}
.section-heading {
color: white;
font-size: 2.8rem;
margin-bottom: 40px;
text-align: center;
text-transform: uppercase;
}

.image-container {
position: relative;
width: 100%;
max-width: 1200px;
height: 600px;
overflow: hidden; /* Prevents zoomed image from spilling out */
border-radius: 12px; /* Optional: for cleaner corners */
}

.background-image {
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1.2);
transition: transform 1s ease-out;
}

.image-container.zoom-out .background-image {
transform: scale(1);
}

.image-container::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5); 
/* z-index: 1; */
}

.logo-row {
position: absolute;
top: 50%; 
left: 50%; 
transform: translate(-50%, -50%);
display: flex;
justify-content: space-evenly; 
align-items: center;
width: 90%;  
flex-wrap: wrap;
gap: 30px;
/* z-index: 2; */
}

.logo-icon {
width: 180px; 
height: 180px;
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.logo-icon.show {
opacity: 1;
transform: translateY(0);
}

.logo-icon img {
width: 160px;
height: 160px;
object-fit: contain;
display: block;
}

.logo-icon:hover {
transform: scale(1.1);
}

/* <!-- ========== SECTION: safety-section ========== --> */
.safety-section {
padding: 60px 20px;
background-image: url('photos/Dark\ Backgrpund\ Img.jpg'); 
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: #fff;
font-family: 'Segoe UI', sans-serif;
position: relative;
text-align: center;
background-size: 120%;
transition: background-size 1s ease-out;
}
.info-box1 p{
background-color: #000;
color: white;
text-align: justify; 
margin-bottom: 20px;
}
.golden-highlight {
border: 4px solid transparent;
padding: 1rem;
border-radius: 1rem;
font-size: 1.1rem;
background-image:
  linear-gradient(black, black),
  linear-gradient(135deg, #d4af37, #f6e27a, #b8860b, #ffd700, #ffecb3);
background-origin: border-box;
background-clip: padding-box, border-box;
box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
background-color: #000;
}


/* After scroll triggers zoom-out */
.safety-section.zoom-out {
background-size: 100%;
}

/* Logo animation */
.animated-logo {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-logo.show {
opacity: 1;
transform: translateY(0);
}



.safety-section::before {
content: "";
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 0;
}
.safety-section * {
position: relative;
z-index: 1;
margin-top: 30px;
}
.logo-center {
margin-bottom: 30px;

}
.center-logo {
width: 300px; 
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}


.safety-heading {
font-size: 60px;
font-weight: bold;
margin-bottom: 15px;
letter-spacing: 1px;
}
.safety-subheading {
font-size: 25px;
font-weight: 500;
margin-bottom: 40px;
}


.info-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
max-width: 1000px;
margin: 0 auto;
margin-bottom: 40px;
text-align: left;
background-color: #000;
}
.info-box {
color: white;
padding: 25px;
font-size: 16px;
line-height: 1.7;
background-color: #000;

}
.logo-row2{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 50px;
margin-top: 30px;
}
.logo-row2 img {
width: 130px;
height: auto;
transition: transform 0.3s ease;
}
.logo-row2 img:hover {
transform: scale(1.1);
}
.info-box1
{
font-size: 25px;
}
.info-box
{
font-weight: 100;
}
/* <!-- ========== SECTION: contact-section ========== --> */
.contact-section {
background-color: black;
background-size: cover;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
/* padding: 100px 20px; */
position: relative;
overflow: hidden;
z-index: 1;

display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.form-wrapper {
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
gap: 40px;
width: 100%;
max-width: 1800px;
background-image: url(img/Contact\ Form\ bg\ .png);
background-size: cover;
padding: 40px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
/* border-radius: 10px;
margin-top: 30px; */
gap: 150px; 
}

.left-image {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
max-width: 50%;
}
.left-image img {
width: 100%;
height: auto;
max-height: 680px; /* maintain height ratio */
object-fit: cover;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.055); /* white with slight transparency */
  padding: 30px;
  border-radius: 10px;
  /* border: 1px solid #ccc; */
  width: 1000px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px); /* optional: adds frosted glass blur */
}


/* Optional: Make responsive */
@media (max-width: 768px) {
.form-wrapper {
  flex-direction: column;
  padding: 20px;
}

.left-image,
.form-container {
  width: 100%;
}
}

.info-section {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
flex-wrap: wrap; /* for responsiveness */
}

.left-side {
display: flex;
flex-direction: column;
max-width: 45%;
}

.logo-column img {
max-width: 200px;
height: auto;
}

.contact {
margin-top: 15px;
font-size: 25px;
color: #333;
}

.right-side {
max-width: 50%;
}

.map-image {
max-width: 100%;
height: auto;
border: 1px solid #ccc;
border-radius: 8px;
}


.contact-section h1 {
font-size: 2.8rem;
text-align: center;
margin-bottom: 40px;
font-family: 'Poppins', sans-serif; /* Clean, modern font */
color: #333;
}

.form-container {
width: 90%;
max-width: 700px;
/* background: #f9f9f9; */
padding: 30px;
/* border-radius: 10px; */
/* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}

form {
display: flex;
flex-direction: column;
gap: 15px;
}

.form-row {
display: flex;
flex-wrap: wrap;
gap: 25px;
}
select {
margin-top: 10px;
padding: 5px;
}

.form-group {
margin-bottom: 20px;
}
.hidden {
display: none;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
flex: 1;
padding: 18px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 16px;
font-family: 'Roboto', sans-serif;
}

textarea {
resize: vertical;
height: 100px;
font-family: 'Poppins', sans-serif; /* Change font for message */
font-size: 15px;
color: #333;
}

.phone-input {
display: flex;
align-items: center;
gap: 8px;
flex: 1;
}

.flag {
font-size: 18px;
}

.question {
margin-top: 10px;
font-weight: 500;
}

label {
display: block;
margin-bottom: 10px;
font-size: 16px;
font-family: 'Roboto', sans-serif;
}

button {
background-color: #add8d8;
color: #fff;
border: none;
padding: 15px;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
font-weight: bold;
font-family: 'Poppins', sans-serif;
}

/* button:hover {
background-color: #93caca;
} */

input[type="tel"] {
width: 100%;
padding: 10px;
margin-top: 10px;
font-size: 16px;
}

/* BLOG SECTION */
/* --------- Article Section --------- */
.center-logo1 {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
  margin-bottom: 0px; /* Reduce space below logo */
}

.section-title {
  margin-top: 10px; /* Reduce top margin */
  text-align: center;
  font-size: 60px;
  margin-bottom: 40px;
  color: white;
}

.articles-section {
  padding: 40px 20px;
  background-color: #666;
  overflow: hidden;
}



/* Scroll wrapper for masking overflow */
.scroll-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Flex container for scroll effect */
.scroll-container {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
}

.scroll-wrapper:hover .scroll-container {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Blog Card Styling */
.card1 {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  width: 300px; /* Smaller width */
  height: auto; /* Let height adjust automatically */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  height:425px ;
  margin-right: 20px;
  z-index: 1;
}

.scroll-container {
  display: flex;
  gap: 16px; /* Consistent spacing between cards */
  flex-wrap: nowrap;
  padding: 10px;
}
.card1:hover {
  transform: translateY(-5px);
  /* position: relative; */
  z-index: 0;
}

.card1 img {
  width: 100%;
  height: 280px; /* Smaller image */
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card1-content {
  padding: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px; /* spacing between elements */
}

.title {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin: 0;
  padding-right: 30px; /* Avoid overlap with comment icon */
  word-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;

}

.comment-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #5d777d;
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 12px;
  color: white;
}

.plus-wrapper {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.plus-button {
  background-color: white;
  color: black;
  font-size: 20px; /* smaller plus symbol */
  width: 35px;     /* smaller width */
  height: 35px;    /* smaller height */
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid black;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.plus-wrapper:hover .plus-button {
  background-color: black;
  color: white;
}

.read-more-text {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  background-color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  background-color: #827e7e;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  color: white;
  white-space: nowrap;
}

.plus-wrapper:hover .read-more-text {
  opacity: 1;
}
.plain-text1,
.plain-text3,
.know-more-btn2 {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
/* Header */
.header {
  padding: 10px 0;
  width: 100%;
}

.header-container {
  padding-left: 20px;
  padding-right: 20px;

}

.header-wrapper {
  flex-direction: row; /* Keep logo and nav on the same row */
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: auto;
}

.header-logo-img {
  height: 60px;
}

.header-right {
  align-items: flex-start;
  width: 100%;
}

.header-top-info {
  display: none;
}

.header-info-block {
  margin-left: 0;
  margin-top: 8px;
  text-align: left;
}

/* Navigation */
.header-main-nav {
  display: none;
}

.header-mobile-menu-button {
  display: block;
  margin-top: 10px;
}

.header-mobile-menu.open {
  display: block;
}

/* Hero Section */
.hero-container {
  height: 110vh;
  width: 100%;
  overflow: hidden;
  
 
}

.hero-image {
  object-fit: cover;
  height: 110vh;
  width: 100%;
}

.hero-content {
  padding: 1rem;
  text-align: center;
}

.hero-text {
  margin-top: 80px;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-text p {
  font-size: 20px;
  margin-top: 15px;
  line-height: 1.4;
}

/* Diagonal Section */
.diagonal {
    height: 110vh;
    animation: shrinkToDiagonal 1.4s ease-out forwards;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }


.mobile-country-section {
  position: relative;
  z-index: 1; /* lower */
}

  .text-wrapper {
  position: relative;
  width: fit-content;
  overflow: visible;
  animation: growText 1.2s ease-out forwards;
  text-align: left;
  margin-top: 200px;
}

.text-border {
  position: absolute;
  width: 550px;
  top: -10px;    /* little offset to border around text */
  left: -10px;
  right: -10px;
  bottom: -10px;
  pointer-events: none;
  z-index: 1; /* behind text */
  box-sizing: border-box;
}

  @keyframes shrinkToDiagonal {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 30% 0, 80% 100%, 0 100%);
  }
}

  .diagonal-content1 {
    padding: 3rem 1.5rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

.plain-text1 {
  font-size: 20px; /* Starting font size */
  font-weight: bold;
  padding-top: 20px;
  z-index: 3;
  animation: growText 2s ease-out forwards;
  justify-content: left;
  text-align: left;
  /* padding-left: 100px; */
}
.plain-text1,
.plain-text3,
.know-more-btn2 {
  position: relative;
  z-index: 2;
}


@keyframes growText {
  from {
    font-size:20px;
    opacity: 2;
  }
  to {
    font-size: 40px;
    opacity: 5;
  }
}


.plain-text i
{
  font-size:50px; 
  margin-bottom: 20px;
  
}

.diagonal-content1 h1 {
  font-size: 100px;
  width: 100%;
}

.diagonal-content p {
  font-size: 1rem;
}

.diagonal-content button {
  width: 100%;
  font-size: 1rem;
  padding: 0.75rem;
}

.know-more-btn2 {
display: inline-block;
padding: 12px 24px;
background-image: url('img/btn-gold.jpg');
color: white;
font-size: 16px;
text-align: center;
text-decoration: none;
border-radius: 4px;
margin-top: 0px;
margin-bottom: 70px;
}

/* Text Animation Box */
.text-wrapper {
  margin-top: 40%;
  padding: 10px;
  padding-bottom: 20%;
}

.text-wrapper .plain-text,
.text-wrapper i {
  font-size: 50px;
  text-align: left;
  /* margin-left: 70px; */
}

:root {
  /* Increase the thickness of the lines */
  --text-line-width: 4px; /* Change this value to make lines thicker or thinner */
}

/* Line base style */
.text-line {
  position: absolute;
  background-color: #d5a561;
}

/* Top line */
.top-line-text {
  top: 0;
  left: 0;
  height: var(--text-line-width); /* This makes the top line thicker */
  width: 0;
  animation: drawTopText 1s forwards;
}

/* Left line */
.left-line-text {
  top: 0;
  left: 0;
  width: var(--text-line-width); /* This makes the left line thicker */
  height: 0;
  animation: drawLeftText 1s forwards;
}

/* Bottom line (shortened) */
.bottom-line-text {
  bottom: 20%;
  left: 0;
  height: var(--text-line-width); /* This makes the bottom line thicker */
  width: 0;
  animation: drawBottomText 1s forwards 1s;
}

/* Right line (shortened) */
.right-line-text {
  top: 0;
  left: 45%;
  width: var(--text-line-width); /* This makes the right line thicker */
  height: 0;
  animation: drawRightText 1s forwards 1s;
}

/* Animation keyframes */
@keyframes drawTopText {
  from { width: 0; }
  to { width: 45%; }
}

@keyframes drawLeftText {
  from { height: 0; }
  to { height: 80%; }
}

@keyframes drawBottomText {
  from { width: 0; }
  to { width: 45%; }
}

@keyframes drawRightText {
  from { height: 0; }
  to { height: 80%; }
}

.section-wrapper{
  height: 90vh;
  margin-top: 20px;
}

.section-wrapper h1{
  font-size: 30px;
}

.card-container-wrapper {
  position: relative;
  overflow: hidden; /* Hide any content outside the container */
  width: 100%;
}

.card-container {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  flex-wrap: nowrap;
  animation: scrollInfinite 15s linear infinite; /* Faster scrolling animation (10s) */
  width: calc(250px * 5 + 20px * 4);
  margin-top: 30px;
}

.card {
  width: 250px; /* Width of each card */
  height: 400px;
  flex-shrink: 0; /* Prevent shrinking of cards */
  flex-grow: 0; /* Ensure cards don't grow */
  margin-right: 20px; /* Ensure some space between cards */
}

.card-names a {
  opacity: 0; /* Hide text initially */
  transform: translateY(20px); /* Hide the links with a slight animation */
}

.card:hover .card-names a {
  opacity: 1;
  transform: translateY(0); /* Reveal the text on hover */
}

/* Keyframe animation for infinite scroll */
@keyframes scrollInfinite {
0% {
  transform: translateX(0);
}
100% {
  transform: translateX(-100%); /* Move 1 full card's width */
}
}

.virtual-consult-wrapper {
flex-direction: column;
align-items: center;
}

.virtual-image,
.virtual-content {
max-width: 100%;
padding: 10px 20px;
}

.virtual-image {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
margin: 0 auto;
text-align: center;
position: relative; /* in case you're using pseudo-elements */
}

.virtual-image img {
display: block; /* removes inline spacing */
margin: 0 auto; /* centers image inside container */
max-width: 100%;
height: auto;
}

.virtual-content h2 {
font-size: 24px;
text-align: center;
}

.virtual-content p {
font-size: 16px;
text-align: justify;
}

.file-upload {
flex-direction: column;
align-items: flex-start;
gap: 6px;
}

.file-upload input[type="file"] {
width: 80%;
}


.trusted-container {
flex-direction: column;
align-items: center;
padding: 0 20px;
}

.trusted-content,
.trusted-image {
flex: 1 1 100%;
max-width: 100%;
text-align: center;
padding: 10px 0;
}

.trusted-image{
width: 0;
}

.trusted-content h2 {
font-size: 24px;
text-align: center;
margin-top: 30px;
}

.trusted-content p {
font-size: 16px;
text-align: justify;
line-height: 1.6;
}

.trusted-image img {
height: auto;
max-height: 400px;
}

.border-line {
display: none; /* Hide all border lines on smaller screens */
}

.trusted-image .image-frame img {
top: 0;
margin-left: 0;
margin-top: 20px;
}

.know-more-btn {
font-size: 15px;
padding: 10px 20px;
}

.dr-parag {
flex-direction: column;
align-items: center;
text-align: center;
}

.dr-parag-image,
.dr-parag-content {
max-width: 100%;
flex: 1 1 100%;
height: 30px;
}

.dr-parag-image img{
  height: 350px;
}

.left-image img{
  height: 350px;
  width: 250px;
}

.image-frame {
margin: 0 auto;
padding: 20px;
}

.image-frame img {
margin-left: 0;
margin-top: 40px;
/* width: 100%;
height: 400px; */
}

.border-line {
background-color: #d5a561;
z-index: 1;
}

:root {
--inset: 20px; /* Adjust inset for smaller screens */
--line-width: 8px; /* Thicker border lines on mobile */
}

.dr-parag-content {
padding: 10px 20px;
}

.dr-parag-content h2 {
font-size: 26px;
}

.small-text {
font-size: 16px;
line-height: 1.6;
}

.know-more-btn {
font-size: 1rem;
padding: 12px 24px;
margin-top: 20px;
}

/* .contact-section {
padding: 40px 20px;
} */

.form-wrapper {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}


.image-frame {
margin: 0 auto;
padding: 20px;
}

.image-frame img {
margin-left: 0;
margin-top: 20px;
/* width: 300px;
height: 500px; */
}

.form-container {
width: 100%;
padding: 15px;
height: 50vh; /* Reduced height for form */

}

.form-container h1 {
font-size: 28px;
text-align: center;
}

.form-row {
display: flex;
flex-direction: column;
gap: 10px;
}

.form-row input {
width: 100%;
padding: 10px;
font-size: 16px;
margin-bottom: 10px;
}

.question {
font-size: 16px;
text-align: center;
margin-top: 20px;
}

.phone-input {
display: flex;
flex-direction: column;
}

textarea {
width: 100%;
height: 100px; /* Reduced height for textarea */
padding: 10px;
font-size: 16px;
margin-top: 10px;
}

#file-upload-input {
width: 100%;
padding: 10px;
margin-top: 10px;
}

.know-more-btn {
display: inline-block;
padding: 12px 24px;
background-color: #d5a561;
color: white;
font-size: 16px;
text-align: center;
text-decoration: none;
border-radius: 4px;
margin-top: 20px;
}

.footer {
padding: 20px 10px; /* Adjust padding for smaller screens */
}

.info-section {
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0;
}

.left-side {
max-width: 100%;
padding: 0;
text-align: center;
}

.right-side {
max-width: 100%;
padding: 0;
text-align: center;
margin-top: 15px;
}
.right-side iframe {
height: 200px; /* Adjust this value to whatever fits your design */
}

.social-icons {
margin: 20px 0;
display: flex;
justify-content: center;
}

.social-icons a img {
width: 25px; /* Adjust icon size for mobile */
margin: 0 8px;
}

/* Adjusting logo size */
.logo-column1 img {
width: 200px; /* Decrease logo size on mobile */
}

.footer-bottom {
font-size: 14px; /* Slightly smaller font size */
margin-top: 20px;
}

.footer-bottom a {
font-size: 14px; /* Ensure text remains legible */
}

.disclaimer {
font-size: 13px; /* Adjust disclaimer size for readability */
}

/* Centering button-wrapper */
.button-wrapper {
text-align: center;
margin-top: 15px;
}

.logo-column1 {
margin-bottom: 0; /* Remove bottom margin to reduce space below the logo */
padding-bottom: 0; /* Remove any padding */
}

.contact {
margin-top: 10px; /* Reduce space above the contact text */
padding-top: 0; /* Ensure no additional padding */
}

.contact p {
font-size: 14px; /* Optionally reduce the font size further for better fit */
margin-top: 5px; 
margin-bottom: 12px/* Reduce the space above the contact text */
}

.grey-section {
  padding: 40px 10px;
  text-align: center;
}

.section-heading {
  font-size: 2rem;
  margin-top: 20px;
}

.image-container {
  height: 500px;
}

.logo-row {
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 20px 10px;
  flex-wrap: wrap;
}

.fb-icon img {
  width: 150px !important;
  height: 150px !important;
}

.logo-icon {
  width: 45%;
  height: auto;
  margin-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
}

.logo-icon img {
  width: 80%;
  height: auto;
  max-width: 100px;
  margin: 0 auto;
}
/* Adjusting safety section for smaller screens */
.safety-section {
padding: 40px 10px; /* Reduced padding for smaller screens */
background-color: #000; /* Ensuring the background is black */
background-size: cover; /* Ensure the background image fits the screen */
background-position: center;
/* height: 180vh; */
}

/* Ensure inner elements like info boxes do not inherit unwanted background colors */
.info-box,
.info-box1 {
background-color: #000 !important; /* Force background to remain black */
color: white; /* Keep text white for visibility */
}

/* .logo-row2 {
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: nowrap; 
gap: 10px;
width: 100%;
margin-top: 10px;
overflow-x: auto; 
white-space: nowrap; 
animation: scrollLeft 15s linear infinite; 
}

.logo-row2 img {
width: 100px; 
height: auto;
transition: transform 0.3s ease;
}

.logo-row2 img:hover {
transform: scale(1.1);
} */

/* Keyframes for infinite scrolling */
@keyframes scrollLeft {
0% {
  transform: translateX(0);
}
100% {
  transform: translateX(-100%); /* Scroll logos to the left */
}
}

/* Smaller text sizes for mobile */
.safety-heading {
font-size: 28px; /* Smaller heading */
}

.safety-subheading {
font-size: 16px; /* Reduced subheading size */
}

.info-box {
font-size: 14px; /* Smaller font size for the info boxes */
padding: 15px;
}

.info-container {
grid-template-columns: 1fr; /* Stack the info boxes in a single column */
gap: 20px; /* Reduced gap between boxes */
margin-bottom: 30px;
}

.center-logo {
width: 200px; /* Smaller logo size for phone */
}


}
.testimonial-section {
  padding: 50px 20px;
  background-color: #fffaf5;
  text-align: center;
}

.testimonial-header {
  margin-bottom: 30px;
}

.testimonial-logo {
  width: 100px;
  margin-bottom: 10px;
}

.testimonial-title {
  font-size: 60px;
  text-transform: uppercase;
  color: #222;
  font-weight: 700;
  letter-spacing: 2px;
}

.testimonial-scroll-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.testimonial-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-scroll-container {
  display: flex;
  gap: 20px;
  padding: 10px;
  animation: scrollLeftToRight 10s linear infinite;
}

@keyframes scrollLeftToRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


.testimonial-scroll-wrapper:hover .testimonial-scroll-container{
  animation-play-state: paused;
}



.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 400px;
  height: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: auto;            /* important */
  overflow: visible;       /* allow growing */
  box-sizing: border-box;
}

.testimonial-text {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
  white-space: normal;     /* force wrapping */
  word-wrap: break-word;   /* break long words if needed */
  overflow: visible;
}


.testimonial-card:hover {
  transform: scale(1.05);
}

.testimonial-stars {
  font-size: 20px;
  color: gold;
  margin-bottom: 10px;
}



.testimonial-client {
  font-weight: bold;
  color: #000;
  font-size: 18px;
  text-align: right;
}
/*  devices (<=480px) */
@media screen and (max-width: 480px) {
  .testimonial-title {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .testimonial-logo {
    width: 80px;
  }

  .testimonial-card {
    width: 300px;  /* Further reduce the card width */
    padding: 10px;
  }

  .testimonial-text {
    font-size: 16px;  /* Adjust text size */
    line-height: 1.4;
  }

  .testimonial-client {
    font-size: 14px;
  }

  .testimonial-stars {
    font-size: 16px;
  }

  .testimonial-scroll-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }

  .testimonial-scroll-container {
    display: flex;
    gap: 5px; /* Reduced gap between cards */
    animation: scrollLeftToRight 20s linear infinite;
  }

  .testimonial-card {
    height: auto;
  }

  /* Ensure cards are displayed properly on smaller screens */
  .testimonial-scroll-wrapper {
    width: 100%;
    overflow-x: scroll;
  }
  
  /* Ensures cards can fit more comfortably */
  .testimonial-scroll-container {
    width: max-content; /* Allow the container to stretch based on content */
  }
}
