/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* TOP BLACK BAR */
.top-info-bar {
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 12px 0; /* 🔥 increased height */
}

.top-info-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 50px; /* 🔥 balanced spacing */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  font-size: 15px;
  gap: 10px;
}

.top-info-bar i {
  color: #ff8533;
  font-size: 14px;
}

/* MAIN HEADER */
.main-header {
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 50px; /* 🔥 clean alignment */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header-logo img {
  height: 60px;
}

/* CENTER */
.header-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* PHONE BOX */
.phone-box {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ff8533;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

.phone-box i {
  color: #ff8533;
}

/* APPOINTMENT BUTTON */
.appointment-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ff8533;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

/* 🔥 ICON ORANGE */
.appointment-btn i {
  color: #ff8533;
}

.appointment-btn:hover {
  background: #ff8533;
  color: #fff;
}

.appointment-btn:hover i {
  color: #fff;
}

/* SOCIAL ICONS */
.header-social {
  display: flex;
  gap: 18px;
}

.header-social a {
  color: #ff8533;
  font-size: 16px;
  transition: 0.3s;
}

.header-social a:hover {
  color: #20b1aa;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  /* TOP BAR */
  .top-info-container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 0 15px;
  }

  .top-left,
  .top-right {
    justify-content: center;
    font-size: 12px;
  }

  /* HEADER */
  .header-container {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    text-align: center;
  }

  /* LOGO */
  .header-logo img {
    height: 50px;
  }

  /* CENTER (PHONE + BUTTON) */
  .header-center {
    flex-direction: column;
    gap: 10px;
  }

  .phone-box,
  .appointment-btn {
    width: 100%;
    justify-content: center;
  }

  /* SOCIAL ICONS */
  .header-social {
    justify-content: center;
    gap: 12px;
  }
}





.navbar {
  background: #ff8533;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  justify-content: center;
}

.nav-links > li > a {
  padding: 15px 20px;
  color: #fff;
  display: block;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.nav-links > li > a:hover {
  background: rgba(0, 0, 0, 0.15);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ff8533;
  min-width: 220px;
  display: none;
  z-index: 1001;

}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.has-sub {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ff8533;
  min-width: 200px;
  display: none;
  z-index: 1002;
}

.has-sub:hover > .sub-menu {
  display: block;
}

.dropdown-menu a,
.sub-menu a {
  padding: 12px 18px;
  display: block;
  color: #fff;
  font-size: 14px;

}

.dropdown-menu a:hover,
.sub-menu a:hover {
  background: #fff;
  color: #ff8533;
}

.has-sub > a::after {
  content: " ▸";
  font-size: 11px;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 22px;
  padding: 12px 15px;
  cursor: pointer;
  text-align: right;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    display: none;
    background: #ff8533;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu,
  .sub-menu {
    position: static;
    display: none;
    background: #ff8533;
    min-width: 100%;
    border-top: none;
  }

  .show {
    display: block !important;
  }

  .dropdown-menu a {
    padding-left: 36px;
  }

  .sub-menu a {
    padding-left: 54px;
  }

  .has-sub > a::after {
    content: " ▾";
  }

}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown-menu a,
.sub-menu a {
  border-bottom: none;
  text-decoration: none;
}

/* GENERAL SUBMENU SCROLL */
.sub-menu {
  max-height: 350px;   /* 🔥 control height */
  overflow-y: auto;    /* 🔥 enable scroll */
}

/* OPTIONAL: NICE SCROLL DESIGN */
.sub-menu::-webkit-scrollbar {
  width: 6px;
}

.sub-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.sub-menu::-webkit-scrollbar-track {
  background: transparent;
}










/* HERO CONTAINER */
.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden; /* Slides bayataki rakunda */
}

/* SLIDESHOW LOGIC */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Text venuka undali */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: slideAnimation 20s infinite; /* 4 images ki 20 seconds total cycle */
}

/* Animation Timing for each image */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }

@keyframes slideAnimation {
    0% { opacity: 0; transform: scale(1); }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; transform: scale(1.05); } /* Light zoom effect for premium feel */
    100% { opacity: 0; }
}

/* LEFT CONTENT CARD */
.hero-overlay {
 background: rgba(255, 102, 0, 0.5); /* Slight transparency added for modern look */
    color: white;
    padding: 45px;
    max-width: 550px;
    margin-left: 8%;
    border-radius: 15px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* YELLOW BORDER EFFECT */
.hero-overlay::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 2px solid #20b1aa;
    border-radius: 15px;
    z-index: -1;
}

/* TEXT STYLES */
.tag {
    color: #ffc400; /* Yellow colour for better visibility */
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.desc {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* UPDATED SCHEDULE BUTTON */
.hero-btn {
    display: inline-block;
    background: #ff6600; /* Contrast color for CTA */
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.hero-btn:hover {
    background: #20b1aa;
    border-color: #20b1aa;
    transform: translateY(-3px);
}

/* MOBILE RESPONSIVENESS */
/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

    .hero {
        height: auto;
        flex-direction: column;
        padding: 0;
    }

    /* Slideshow takes top area */
    .slideshow {
        position: relative;
        height: 50vh; /* top half screen */
        width: 100%;
        z-index: 1;
    }

    .slide {
        position: absolute;
        height: 100%;
    }

    /* Content card below image */
    .hero-overlay {
        position: relative;
        margin: -40px 15px 20px; /* slight overlap for premium look */
        padding: 25px 20px;
        max-width: 100%;
        border-radius: 12px;
        text-align: center;
        z-index: 2;
    }

    /* Remove border effect (causes overflow issues) */
    .hero-overlay::after {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .tag {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }
}


















/* Professional Colors Variations */
:root {
    --primary-blue: #20b1aa;
    --dark-blue: #005f7a;
    --primary-orange: #ff8533;
    --dark-orange:#e65c00;
    --bg-dark: #20b1aa; /* Professional Dark Blue Background for Card */
}

.vinoda-about-section {
    padding: 50px 20px;
    background-color: #ffffff;
    overflow: hidden;
}

.vinoda-container {
    max-width: 1200px;
    margin: 0 auto;
}

.visual-wrapper {
    position: relative;
    display: flex;
    min-height: 700px;
}
.image-grid {
    flex: 0 0 68%;
    display: flex;
    gap: 10px;
    height: 700px; /* important */
}

.column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    height: 100%; /* important */
}

/* 🔥 KEY FIX */
.image-item {
    flex: 1; /* makes both images equal height */
    overflow: hidden;
    border-radius: 4px;
}

.image-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-item:hover img {
    transform: scale(1.05); /* Subtle hover animation */
}

/* 2. Content Card Overlay */
.content-card {
    position: absolute;
    right: 0;
    top: 50px;
    width: 450px;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.card-inner { padding: 45px 40px; }

.sub-tile {
    color: white;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: bold;
}

.main-tile {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 25px;
   
    font-weight: 700;
}

.description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.85;
}

/* 3. Four Buttons - Same Professional Height */
.action-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: auto;
}

.tab-btn {
    text-decoration: none;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    height: 125px; /* Fixed Height for all 4 buttons */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    line-height: 1.3;
}

/* Button Color Variations based on your 2 colors */
.dark-blue-btn { background-color: #20b1aa; }
.orange-btn { background-color: var(--dark-orange); }
.light-blue-btn { background-color: #20b1aa; }
.dark-orange-btn { background-color: var(--dark-orange); }

.tab-btn:hover {
    filter: contrast(1.2) brightness(1.1);
    transform: translateY(-2px);
}

/* Responsive */
/* ===== MOBILE ONLY ===== */
@media (max-width: 768px) {

    .vinoda-about-section {
        padding: 40px 15px;
    }

    .visual-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    /* IMAGE GRID STACK */
    .image-grid {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .column {
        width: 100%;
    }

    .image-item {
        height: 200px; /* clean equal height */
    }

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* CONTENT CARD BELOW IMAGE */
    .content-card {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        margin-top: -30px; /* slight overlap */
        border-radius: 12px;
    }

    .card-inner {
        padding: 25px 20px;
        text-align: center;
    }

    .main-tile {
        font-size: 22px;
        line-height: 1.3;
    }

    .description {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify; /* ✅ important */
    }

    /* BUTTONS 2 PER ROW */
    .action-tabs {
        grid-template-columns: repeat(4, 1fr);
    }

    .tab-btn {
        height: 70px;
        font-size: 10px;
        padding: 8px;
    }
}














:root {
    --primary-blue: #20b1aa;
    --primary-orange: #ff8533;
    --dark-blue: #004b61;
}

.vinoda-services-section {
    padding: 50px 0;
    background-color: #fff;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

/* 1. Left Card - Space empty ga unchi images overlap chesthunnam */
.services-left-card {
    background: #f8f9fa; /* Light grey/white card */
    padding: 100px 12% 80px 80px; /* Right side ekkuva padding ichanu overlap kosam */
    width: 65%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 1;
}

.services-sub {
    color:#20b1aa;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-title {
    color: #ff8533;
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 80%; /* Text ni card lopale unchadaniki */
}

.orange-line {
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    margin-bottom: 30px;
  
}

.services-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 75%;
}

.highlight { color: var(--primary-blue); font-weight: 600; }

.view-all-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #ff8533;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 146, 188, 0.3);
}

.view-all-btn:hover { background: #20b1aa; transform: translateY(-3px); }

/* 2. Right Images Overlap Effect */
.services-right-overlap {
    width: 45%;
    margin-left: -15%; /* Card meedaki images vachesela negative margin */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.service-item {
    position: relative;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: 0.5s;
}

.service-item:hover img { transform: scale(1.1); filter: brightness(0.9); }

.service-tag {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    
    width: 150px; /* 🔥 fixed equal width */
    padding: 15px 20px;
    
    color: white;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: center; /* center text */
    text-align: center;
}
.blue-tag { background: var(--primary-orange); }
.orange-tag { background: var(--primary-blue); }
.dark-blue-tag { background: var(--primary-orange); }

/* --- Mobile View --- */
@media (max-width: 991px) {
    .services-container { flex-direction: column; padding: 0 15px; }
    .services-left-card { width: 100%; padding: 40px 20px; }
    .services-right-overlap { width: 100%; margin-left: 0; margin-top: -30px; }
    .services-desc, .services-title { max-width: 100%; }
    .service-item { height: 160px; }
}





.sub-services-section {
    background-color: #e0f2f4;
    padding: 60px 0;
}

.main-title {
    text-align: center;
    color: #ff8533;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 700;
}

.sub-service-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.sub-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Reverse class for alternating layout */
.sub-service-card.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    color: #ff8533;
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info p {
    color: #555;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-points {
    list-style: none;
    margin-bottom: 25px;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

.service-points li i {
    color: #ff8533; /* Orange color for bullet icons */
    font-size: 18px;
}

.service-image {
    flex: 1;
    height: 350px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.know-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #20b1aa;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.know-more-btn:hover {
    background: #20b1aa;
}
/* MOBILE VIEW */
@media (max-width: 768px) {

    .sub-services-section {
        padding: 40px 5px;
    }

    .main-title {
        font-size: 24px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .sub-service-card,
    .sub-service-card.reverse {
        flex-direction: column;
        border-radius: 12px;
    }

    .service-image {
        width: 100%;
        height: 220px;
        order: -1; /* image top */
    }

    .service-info {
        padding: 20px 18px;
        text-align: left;
    }

    .service-info h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .service-info p {
        font-size: 15.5px;
        line-height: 1.7;
        text-align: justify;          /* ✅ clean justified text */
        text-justify: inter-word;
        margin-bottom: 15px;
    }

    .service-points li {
        font-size: 14.5px;
        line-height: 1.5;
    }

    .service-points li i {
        font-size: 16px;
    }

    .know-more-btn {
        display: block;
        width: fit-content;
        margin: 10px auto 0;
        padding: 10px 20px;
        font-size: 14px;
    }
}








:root {
    --primary-blue: #20b1aa;
    --primary-orange: #ff8533;
    --dark-blue: #004b61;
    --text-gray: #555;
}

.vinoda-expert-section {
    padding: 50px 20px;
    background: #f4f8fb;
    font-family: 'Poppins', sans-serif;
}

.section-top {
    text-align: center;
    margin-bottom: 70px;
}

.mini-title {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
}

.main-heading {
    font-size: 40px;
    color: var(--primary-orange);
    margin-top: 10px;
}

/* Experts Wrapper */
.experts-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.expert-card {
    background: #fff;
    border-radius: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(1, 147, 188, 0.1);
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(1, 147, 188, 0.12);
}

/* Image Styling */
.expert-img-box {
    position: relative;
    height: 380px;
    background: #eef6f9;
}

.expert-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.founder-ribbon {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: var(--dark-orange);
    color: white;
    padding: 8px 25px;
    border-radius: 30px 0 0 30px;
    font-size: 13px;
    font-weight: 600;
}

/* Content Area */
.expert-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.header-info h3 {
    font-size: 26px;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.header-info h3 small {
    font-size: 14px;
    color: var(--dark-blue);
    background: rgba(255, 102, 0, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.role {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 15px;
}

/* Specializations List */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.spec-list li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-list li i {
    color: var(--primary-orange);
    font-size: 16px;
}

/* Button */
.consult-btn {
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.consult-btn:hover {
    background: var(--primary-blue);
      border: 2px solid var(--primary-blue);
    color: white;
}

/* Responsive View */
@media (max-width: 991px) {
    .experts-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .expert-card {
        width: 100%;
        max-width: 450px;
    }
    .main-heading { font-size: 32px; }
}

@media (max-width: 480px) {
    .expert-img-box { height: 300px; }
    .header-info h3 { font-size: 22px; }
}












.sub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
      background-color: #fdfdfd;
}

/* HEADING BANNER: White Background */
.main-heading-banner {
    background-color: #ffffff; 
    padding: 40px 60px;
    border-radius: 80px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    border: 1px solid #eee;
}

.heading-left h2 {
    color: #ff8533;
    font-size: 36px;
    margin: 0 0 10px 0;
}

.heading-left p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.orange-circle-icon {
    width: 80px;
    height: 80px;
    background-color: #ff8533;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 35px;
    flex-shrink: 0;
}

/* SERVICES SECTION: Blue Background */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.card-img {
    position: relative;
    height: 250px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.blue-footer {
    background-color: #20b1aa; /* Blue Box */
    padding: 45px 25px 30px 25px;
    color: white;
    flex-grow: 1;
   
    text-align: left;
}

.blue-footer h3 {
    font-size: 18px;
    font-weight: 700;
    margin: -25px 0 12px 0;
    
}

.blue-footer p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Orange Button */
.btn-orange {
    display: inline-block;
    background-color: #ff8533;
    color: white;
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    transition: 0.3s;
}


.btn-orange:hover {
    background-color: white;
    color: #ff8533;
}

/* ===== PERFECT MOBILE VERSION ===== */
@media (max-width: 768px) {

    .sub-container {
        padding: 30px 15px;
    }

    /* ===== HEADING BANNER ===== */
    .main-heading-banner {
        flex-direction: column-reverse;
        text-align: center;
        padding: 25px 20px;
        border-radius: 20px; /* 🔥 reduce from 80px */
        gap: 15px;
    }

    .heading-left h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .heading-left p {
        font-size: 14px;
    }

    .orange-circle-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 10px;
    }

    /* ===== GRID ===== */
    .services-grid {
        grid-template-columns: 1fr; /* single column */
        gap: 20px;
    }

    /* ===== CARD IMAGE ===== */
    .card-img {
        height: 180px;
    }

    /* ===== ICON ===== */
    .overlap-icon {
        width: 50px;
        height: 50px;
        bottom: -20px;
        left: 15px;
    }

    .overlap-icon i {
        font-size: 22px;
    }

    /* ===== BLUE FOOTER ===== */
    .blue-footer {
        padding: 35px 20px 25px 20px;
        text-align: center; /* 🔥 center content */
    }

    .blue-footer h3 {
        font-size: 18px;
    }

    .blue-footer p {
        font-size: 13px;
        text-align: justify;
    }

    /* ===== BUTTON ===== */
    .btn-orange {
        display: inline-block;
        padding: 10px 20px;
        font-size: 13px;
    }
}





















:root {
    --vinoda-blue: #20b1aa;
    --vinoda-orange: #ff8533;
    --dark-bg: #20b1aa; /* Premium dark background */
}

.vinoda-insurance-section {
    padding: 50px 20px;
    background-color: #ffffff;
}

.insurance-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #ff8533;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.insurance-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.orange-divider {
    width: 80px;
    height: 4px;
    background-color: var(--vinoda-blue);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.insurance-desc {
    font-size: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.insurance-desc strong {
    color: var(--vinoda-blue);
}

/* Marquee Styling */
.insurance-marquee-wrapper {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.insurance-marquee-wrapper marquee img {
    height: 100px; /* Logo height adjust cheyandi */
    margin: 0 40px;
  
}

.insurance-marquee-wrapper marquee img:hover {
    filter: none; /* Hover chesthe original color vasthundi */
    transform: scale(1.1);
}

/* --- Mobile Responsive --- */

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

    .vinoda-insurance-section {
        padding: 40px 15px;
    }

    .insurance-container {
        padding: 35px 20px;
        border-radius: 12px;
    }

    .insurance-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .orange-divider {
        margin-bottom: 20px;
    }

    .insurance-desc {
        font-size: 15px;          /* ⬆ increased */
        line-height: 1.7;         /* ⬆ better spacing */
        margin-bottom: 25px;
        text-align: justify;      /* ✅ clean text */
    }

    /* MARQUEE FIX */
    .insurance-marquee-wrapper {
        margin-top: 25px;
        padding: 15px 10px;
    }

    .insurance-marquee-wrapper marquee img {
        height: 60px;   /* ⬆ bigger logos */
        margin: 0 25px; /* ⬆ spacing */
    }
}













:root {
    --vinoda-blue: #20b1aa;
    --vinoda-orange: #ff8533;
}

.vinoda-features-section {
    padding: 50px 20px;
    background-color: #f8fbfd;
    position: relative;
    overflow: hidden;
}

/* Watermarks using Font Awesome */
.vinoda-watermarks-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.wm-icon {
    position: absolute;
    font-size: 120px;
    color: #000;
    opacity: 0.03; /* Very faint watermark */
}

.wm-pos1 { top: 5%; left: 5%; transform: rotate(15deg); }
.wm-pos2 { top: 5%; right: 5%; transform: rotate(-20deg); }

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-main-title {
    color: var(--vinoda-orange);
    font-size: 36px;
    font-weight: 800;
}

.orange-line {
    width: 60px;
    height: 4px;
    background-color: var(--vinoda-blue);
    margin: 15px auto 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

/* Icon Box Styling */
.feature-icon-box {
    width: 80px;
    height: 80px;
    background-color: #fff4ee; /* Very light orange bg */
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box i {
    font-size: 35px;
    color: var(--vinoda-blue); /* Icons in orange */
}

.feature-item h3 {
    font-size: 19px;
    color: var(--vinoda-orange);
    margin-bottom: 20px;
    font-weight: 700;
    min-height: 55px;
}

.justify-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    text-align: justify; /* Requested justification */
}

/* Mobile CSS */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    .features-grid { grid-template-columns: 1fr; }
    .section-main-title { font-size: 28px; }
    .feature-item { padding: 30px 15px; }
}












.review-section {
    position: relative;
    padding-bottom: 80px;
    background: #fdfdfd;
}

.review-bg-wrapper {
    position: absolute;
    top: 0; width: 100%; height: 420px;
    z-index: 1;
}

.review-bg-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.5);
}

.review-container {
    max-width: 1250px; margin: 0 auto;
    position: relative; z-index: 5; padding-top: 170px;
}
.blue-info-box {
  background: rgba(255, 133, 51, 0.85); /* 🔥 best value */
    color: white;
    padding: 60px 80px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    margin: 0 auto 70px auto; /* 🔥 center horizontally */
    
    max-width: 1000px; /* 🔥 control width */
    width: 90%; /* responsive */
}

/* Line under text */
.divider-line {
    width: 60%;
    max-width: 800px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    margin: 25px auto;
}

.blue-info-box h2 { font-size: 34px; font-weight: 700; line-height: 1.2; }
.yellow-divider { width: 10px; height: 3px; background: #ff8533; margin: 20px auto; }

.features-check { display: flex; justify-content: center; gap: 80px; margin-bottom: 50px; font-size: 14px; }
.features-check i { color: #20b1aa; margin-right: 5px; }

.btn-blue { background: #005f7a; color: white; padding: 12px 25px; border-radius: 50px; text-decoration: none; margin-right: 10px; }
.btn-yellow { background:#cc5200;; color: #001a4d; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 600; }

/* Pointy Arrow Mark (Exact match to image) */
.pointy-arrow {
    position: absolute; bottom: -25px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(255, 102, 0, 0.85);
}

/* Review Slider Styling */
.review-slider-wrapper { position: relative; padding: 0 50px; }

.review-card {
    background: #f1f3f5; padding: 25px;
    border-radius: 15px; min-height: 250px;
    display: flex; flex-direction: column;
}

.user-header { display: flex; align-items: center; margin-bottom: 15px; }
.user-avatar { 
    width: 45px; height: 45px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; margin-right: 12px;
}

.user-details h4 { font-size: 16px; margin: 0; color: #333; }
.user-details p { font-size: 12px; margin: 0; color: #888; }

.stars { color: #ffcc00; margin: 10px 0; font-size: 16px; }
.content { font-size: 13.5px; color: #555; line-height: 1.6; flex-grow: 1; }
.google-img { width: 70px; margin-top: 15px; }

/* Side Arrows Navigation */
.custom-nav {
    color: #444 !important;
    background: rgba(255,255,255,0.9);
    width: 40px !important; height: 40px !important;
    border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.custom-nav::after { font-size: 18px !important; font-weight: bold; }


/* ===== FINAL MOBILE PERFECT VERSION ===== */
@media (max-width: 768px) {

    .review-section {
        padding-bottom: 50px;
    }

    .review-bg-wrapper {
        height: 240px;
    }

    .review-container {
        padding-top: 110px;
    }

    /* ===== BLUE BOX ===== */
    .blue-info-box {
        padding: 25px 18px;
        width: 95%;
        margin-bottom: 45px;
        border-radius: 10px;
    }

    .blue-info-box h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .divider-line {
        width: 75%;
        margin: 12px auto;
    }

    .yellow-divider {
        margin: 12px auto;
    }

    /* ===== FEATURES (TICKS FIXED) ===== */
    /* ===== FEATURES CENTER ALIGN ===== */
.features-check {
    display: flex;
    flex-direction: column;
    align-items: center; /* 🔥 center items */
    gap: 10px;
    font-size: 13px;
    margin-bottom: 25px;
    text-align: center;
}

.features-check span {
    display: flex;
    align-items: center;
    justify-content: center; /* 🔥 center icon + text */
    gap: 8px;
}

    .features-check i {
        font-size: 13px;
        text-align: center;
        color: #20b1aa;
    }

    /* ===== BUTTONS SIDE BY SIDE ===== */
    .btn-group {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .btn-group a {
        flex: 1;
        text-align: center;
        padding: 12px 10px;
        font-size: 13px;
    }

    /* fallback if no btn-group used */
    .btn-blue,
    .btn-yellow {
        display: inline-block;
        width: 48%;
        margin: 5px 1%;
        text-align: center;
        font-size: 13px;
    }

    /* ===== ARROW ===== */
    .pointy-arrow {
        bottom: -16px;
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 18px solid rgba(255, 133, 51, 0.85);
    }

    /* ===== SLIDER ===== */
    .review-slider-wrapper {
        padding: 0 10px;
    }

    .review-card {
        padding: 18px;
        min-height: auto;
    }

    .user-avatar {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .user-details h4 {
        font-size: 14px;
    }

    .user-details p {
        font-size: 11px;
    }

    .stars {
        font-size: 13px;
    }

    .content {
        font-size: 12.8px;
    }

    .google-img {
        width: 55px;
    }

    /* ===== HIDE ARROWS ===== */
    .custom-nav {
        display: none;
    }
}













:root {
    --primary-blue: #20b1aa;
    --primary-orange: #ff8533;
    --dark-blue: #004b61;
}

/* ===== GALLERY SECTION ===== */
.vinoda-gallery {
    padding: 30px 20px;
    background: #f8f9fa;
    text-align: center;
    overflow: hidden;
}

/* Title */
.gallery-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 30px;
}

/* Marquee */
.marquee {
    overflow: hidden;
    position: relative;
}

/* Track */
.marquee-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

/* Images */
.marquee-track img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

/* Hover */
.marquee-track img:hover {
    transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== MOBILE CSS ===== */
@media (max-width: 991px) {

    .vinoda-gallery {
        padding: 40px 15px;
    }

    .gallery-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .marquee-track {
        gap: 10px;
        animation: scroll 18s linear infinite;
    }

    .marquee-track img {
        width: 160px;
        height: 110px;
        border-radius: 8px;
    }
}

/* ===== EXTRA SMALL MOBILE ===== */
@media (max-width: 480px) {

    .gallery-title {
        font-size: 18px;
    }

    .marquee-track img {
        width: 130px;
        height: 90px;
    }

    .marquee-track {
        animation: scroll 15s linear infinite;
    }
}























 
.appointment-section {
    padding: 50px 20px;
      background:  #e6f7fb;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
}

.appointment-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT FORM BOX */
.form-container {
    background-color: #20b1aa; /* Navy Blue Box */
    padding: 45px;
    border-radius: 10px;
    color: white;
    flex: 1;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.form-container h2 {
    font-size: 32px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    text-align: center;
}

.form-container p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
    color: #cbd5e0;
}

.highlight-orange {
    color: #ff8533;
    font-weight: bold;
}

.field-group {
    margin-bottom: 20px;
}

.field-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.field-group input, 
.field-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.submit-btn {
    background-color: #ff8533;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #005f7a;
}

/* RIGHT INFO CONTAINER (2 PER ROW) */
.info-container {
    flex: 1.2;
    color: #ff8533;
}

.title-white {
    font-size: 34px;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* This makes 2 per row */
    gap: 40px 30px;
}

.info-item {
    display: flex;
    gap: 15px;
}
.info-item i {
    color:#ff8533;
    font-size: 25px;
}

.icon-box {
    font-size: 26px;
    color: #0d1b3e; /* Dark Navy icon color */
    margin-top: 5px;
}

.info-details h4 {
    margin: 0 0 8px 0;
    color: black;
    font-size: 20px;
}

.info-details p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: black;
}

.action-link {
    color: black;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    margin-top: 8px;
    display: inline-block;
}

.action-link:hover {
    text-decoration: underline;
}

/* Business Hours grid inside the grid */
.hours-table {
    margin-top: 10px;
    width: 100%;
}

.h-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: black;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.orange-text {
    color: #ff8533;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .appointment-wrapper {
        flex-direction: column;
    }
    .info-grid {
        grid-template-columns: 1fr 1fr; /* Keep 2 per row for tablets */
    }
}

@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr; /* 1 per row for small mobiles */
    }
}













/* --- MAIN FOOTER --- */
.main-footer {
    background-color: #20b1aa; /* Mee current color */
    color: #ffffff;
    padding: 50px 0 0; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden; /* Side scrolling rakunda */
}

/* Container Alignment */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Section: Logo & Social */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img { 
    height: 70px; 
    width: auto;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: #ff8533;
    transform: translateY(-3px);
}

/* Horizontal Line */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 35px;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* List Items - No Dots */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col p, 
.footer-col ul li a {
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff8533 !important;
    padding-left: 5px;
}

/* Icons Style */
.footer-col i { 
    color: #ff8533 !important; /* Orange Icons */
    margin-right: 10px; 
    width: 20px;
    text-align: center;
}

/* Business Hours - Tight & No Lines */
.hours-list p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px !important;
    border: none !important;
    padding: 0 !important;
}

.orange-text { 
    color: #ff8533 !important; 
    font-weight: bold; 
}

/* --- FULL WIDTH GLASS BOTTOM BAR --- */
.footer-bottom {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #ffffff !important;
  
    opacity: 0.8;
}

/* CONTACT BUTTON - Rounded Corners */
.footer-book-btn {
    display: inline-block;
    background-color: #ff8533;
    color: #ffffff !important;
    padding: 12px 25px;
    margin-top: 20px;
    
    /* BORDER RADIUS IKKADA UNDI */
    border-radius: 30px; /* Purti ga rounded (Capsule shape) kosam */
    /* Leda koncheme curve kavali ante 8px pettochu */
    
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #ff8533;
    text-align: center;
}

.footer-book-btn:hover {
    background-color: transparent;
    color: #ff8533 !important;
    border-radius: 8px; /* Hover chesinappudu shape maruthundi - Stylish ga untundi */
    transform: translateY(-3px);
}
.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    margin-top: 5px; /* icon slightly down */
    flex-shrink: 0;
}
@media (max-width: 600px) {

    /* Top section left align */
    .footer-top {
        align-items: flex-start;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    /* Grid → single column + left aligned */
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: left;
        gap: 25px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h3 {
        margin-bottom: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: inline-block;
        padding-right: 15px;
    }

    /* Hours spacing fix */
    .hours-list p { 
        justify-content: flex-start; 
        gap: 20px;
    }

    /* 🔥 Button smaller + left aligned */
    .footer-book-btn {
        display: inline-block;   /* remove full width */
        width: auto;             /* shrink to content */
        border-radius: 8px;
        padding: 10px 18px;      /* smaller size */
        font-size: 12px;
        margin-top: 15px;
    }

    /* 🔥 Bottom copyright centered */
    .footer-bottom {
        padding: 15px 10px;
        text-align: center;  /* center only this */
    }

    .footer-bottom p {
        text-align: center;
        font-size: 12px;
    }
    .hours-list p {
    display: grid;
    grid-template-columns: 80px 1fr; /* fixed width for days */
    margin-bottom: 6px !important;
    align-items: center;
}
}














.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Common Icon Style */
.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s ease;
  animation: pulse 2s infinite;
}

/* WhatsApp */
.whatsapp {
  background: #25D366;
}

/* Phone */
.phone {
  background: #25D366;
}

/* Hover */
.icon:hover {
  transform: scale(1.15);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0,0,0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0, 0);
  }
}

/* ✅ Desktop → only WhatsApp */
@media (min-width: 768px) {
  .phone {
    display: none;
  }
}

/* ✅ Mobile → both visible */
@media (max-width: 767px) {
  .phone {
    display: flex;
  }
}