.service-icon-foor a {
    display: inline-block;
    color: #fff;
    font-size: 24px;
}

.service-icon-foor a:hover {
    color: #8fbe76;
}
		.contact-info a {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    color: #333;
    text-decoration: none;
}

.contact-info i {
    margin-right: 6px;
}
/* Smooth transition */
.service {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect on whole box */
.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
     background-color: #8b1b2b;
     color: #fff;
}

/* Icon styling */
.service-icon-foor i {
    font-size: 24px;
    transition: all 0.3s ease;
}

/* Icon hover effect */
.service:hover .service-icon-foor i {
    transform: scale(1.2);
   
    /* color:#fff change color on hover */
}

/* Title hover effect */
.service-content h4 {
    transition: all 0.3s ease;
   
}

.service:hover .service-content h4 {
    color: #fff;
    
}
/* Social Icons Container */
.social-icons a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* 🔵 Circle */
    border: 1px solid #ddd;
    margin: 10px 4px;
    font-size: 18px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hover lift */
.social-icons a:hover {
    transform: translateY(-4px);
}

/* YouTube hover */
.social-icons a:hover .fa-youtube {
    color: #fff;
}
.social-icons a:hover:nth-child(1) {
    background: #ff0000;
    border-color: #ff0000;
}

/* Instagram hover */
.social-icons a:hover .fa-instagram {
    color: #fff;
}
.social-icons a:hover:nth-child(2) {
    background: #E1306C;
    border-color: #E1306C;
}

/* Facebook hover */
.social-icons a:hover .fa-facebook-f {
    color: #fff;
}
.social-icons a:hover:nth-child(3) {
    background: #25D366;
    border-color: #25D366;
}
.two-column-menu {
    column-count: 2;      /* ✅ 2 columns */
    column-gap: 25px;     /* space between columns */
    padding: 0;
}

.two-column-menu li {
    break-inside: avoid;  /* prevent item break */
    margin-bottom: 6px;
}
/* Base UL styling */
.submenu-list {
    list-style: square;
    padding-left: 15px;
    margin: 0;
}

/* 2 column layout */
.two-column {
    column-count: 2;
    column-gap: 30px;
}

/* Prevent breaking */
.two-column li {
    break-inside: avoid;
    margin-bottom: 5px;
}
/* Base - Desktop */
.two-column-menu {
    column-count: 2;
    column-gap: 25px;
    padding: 0;
}

.two-column-menu li {
    break-inside: avoid;
    margin-bottom: 6px;
}

.static-menu .menu ul ul li a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    text-decoration: none;
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .two-column-menu {
        column-count: 2;
        column-gap: 15px;
    }

    .static-menu .menu ul ul li a {
        font-size: 13px;
        padding: 6px 0;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .two-column-menu {
        column-count: 1;   /* single column on mobile */
        column-gap: 0;
    }

    .static-menu .menu ul ul li a {
        font-size: 13px;
        padding: 8px 0;    /* bigger tap area on mobile */
    }

    .col-sm-4.static-menu {
        width: 100%;       /* full width on mobile */
        margin-bottom: 20px;
    }
}

    .whatsapp-float {
            position: fixed;
            bottom: 26px;
            left: 20px;
            background: #25D366;
            color: white;
            font-size: 28px;
            width: 55px;
            height: 55px;
            right: 20px;
            text-align: center;
            line-height: 55px;
            border-radius: 50%;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .whatsapp-float:hover {
            background: #1ebe5d;
            color: white;
            transform: scale(1.1);
        }
        .vipodha-banner-image {
    position: relative;
}

.inner3 {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 450px;
    width: 80%;

    /* text-shadow: 0 0 20px rgba(0,0,0,0.8); */
    border-radius: 8px;
}

/* Text styles */
.banner-desc3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.banner-title3 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.1;
    color: var(--primary-color);
    text-transform: capitalize;
    font-family: 'Carattere', cursive;
    margin-top: 10px;
}
.banner1,
.banner2 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* Image */
.banner1 img,
.banner2 img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* Light overlay ALWAYS visible */
.banner1::before,
.banner2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.1));
    z-index: 1;
}

/* TEXT ALWAYS VISIBLE */
.banner1 .inner2,
.banner2 .inner2 {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
    opacity: 1;              /* ✅ always visible */
    transform: none;         /* ✅ no hidden movement */
}

/* Hover effect (only enhancement) */
.banner1:hover img,
.banner2:hover img {
    transform: scale(1.05);
}

.banner1:hover,
.banner2:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Title styling */
.banner-title {
    font-size: 32px;
    font-weight: 600;
}

.banner-desc1,
.banner-desc2 {
    font-size: 15px;
}
.banner1::before,
.banner2::before {
    pointer-events: none;
}

/* Tablet */
@media (max-width: 992px) {
    .inner3 {
        left: 6%;
        max-width: 350px;
    }

    .banner-title3 {
        font-size: 2.2rem;
    }

    .banner-desc3 {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .inner3 {
        top: 55%;
        left: 5%;
        max-width: 90%;
    }

    .banner-title3 {
        font-size: 17px;
    }

    .banner-desc3 {
        font-size: 0.9rem;
    }
}
.sub-menu{
    width: 900px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
}
/* .blog-carousel .owl-stage {
    transform: none !important;
} */
 .image::before {
    pointer-events: none;
}
/* ── Video Section ── */
.video-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.video-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

/* ── Responsive 16:9 iframe ── */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .video-section {
    padding: 50px 0;
  }

  .video-section .section-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
video::-webkit-media-controls-mute-button {
  display: none !important;
}

video::-webkit-media-controls-volume-slider {
  display: none !important;
}


