/* Professional Custom CSS for Kerala Project */

/* 1. Global Enhancements and Typography */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    /* Regular weight for better readability */
    line-height: 1.7;
    /* Increased line height */
    color: #4a4a4a;
    /* Softer black for reading comfort */
}

/* Force consistency on all headings and elements - Excluding spans for icons */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div,
li,
input,
textarea,
label,
.btn,
.navbar,
.dropdown-item {
    font-family: 'Poppins', sans-serif !important;
}

/* Explicitly restore font families for icons */
.fa,
.fas,
.far,
.fab {
    font-family: 'FontAwesome' !important;
}

[class^="flaticon-"],
[class*=" flaticon-"] {
    font-family: "Flaticon" !important;
}

[class^="ion-"],
[class*=" ion-"] {
    font-family: "Ionicons" !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000061;
    /* Navy - Premium Brand Color */
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    /* Slightly larger base font */
}

a {
    transition: color 0.3s ease;
}

/* 2. Modern Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0062cc 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.btn-white {
    background: #fff;
    color: #333;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f8f9fa;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 3. Hero Section Enhancements */
.hero-wrap .slider-item .overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-wrap h1 {
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-wrap h2 {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 20px;
}

/* 4. Intro Boxes (Contact/Hours) */
.intro-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 97, 0.05);
    /* Navy tint border */
    height: 100%;
    display: flex;
    align-items: center;
}

.intro-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 97, 0.15);
    /* Navy shadow */
    border-color: rgba(0, 0, 97, 0.1);
}

.intro-box .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000061 0%, #007bff 100%);
    /* Navy to Blue */
    border-radius: 50%;
    color: #fff !important;
    font-size: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.intro-box .icon span {
    color: #fff !important;
}

.intro-box:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 20px rgba(0, 123, 255, 0.4);
}

.intro-box .text {
    padding-left: 20px;
}

.intro-box .text h4 {
    font-weight: 700;
    color: #000061;
    /* Navy */
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.intro-box .text span {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

/* 5. Services Section */
.services {
    transition: all 0.3s ease;
}

.services .d-block {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.services:hover .d-block {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.services .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.services:hover .icon {
    background: #007bff;
}

.services:hover .icon img {
    filter: brightness(0) invert(1);
}

.services .heading {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

/* 6. Section Headings */
.heading-section h2 {
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    color: #000061;
    /* Navy */
}

.heading-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #007bff;
    border-radius: 2px;
}

.heading-section .subheading {
    font-size: 16px;
    font-weight: 500;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

/* 7. About Section */
.img-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icon-video {
    width: 70px;
    height: 70px;
    background: #fff !important;
    color: #007bff !important;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* 8. Counter Section */
.ftco-counter {
    background-color: #007bff !important;
    padding: 5em 0;
}

.block-18 .text strong.number {
    font-size: 40px;
    color: #fff;
    font-weight: 800;
}

.block-18 .text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 9. Testimonials */
.testimony-section {
    background: #f8f9fa !important;
}

.testimony-wrap {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 10px;
}

.testimony-wrap .user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimony-wrap .name {
    font-weight: 700;
    color: #333;
    font-size: 18px;
    margin-bottom: 0;
}

.testimony-wrap .position {
    font-size: 14px;
    color: #007bff;
}

.testimony-wrap .icon {
    color: #007bff;
    font-size: 24px;
    margin-bottom: 20px;
}

/* 10. Destination/Locations */
/* 10. Destination/Locations - Premium Design */
.staff {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    border: none;
    position: relative;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.staff:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 97, 0.2);
    /* Navy shadow */
}

.staff .img-wrap {
    height: 280px;
    /* Increased height */
    overflow: hidden;
    position: relative;
}

.staff .img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.staff:hover .img {
    transform: scale(1.1);
}

/* Add an overlay on the image for depth */
.staff .img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.staff:hover .img-wrap::after {
    opacity: 0.8;
}

.staff .text {
    padding: 25px !important;
}

.staff .text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000061;
    /* Navy */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.staff .faded p {
    color: #666;
    font-size: 15px;
}

/* View Details Button effect */
.staff .text::after {
    content: 'View Details \f178';
    /* Arrow right */
    font-family: 'Poppins', 'FontAwesome';
    display: block;
    margin-top: 15px;
    color: #007bff;
    font-weight: 600;
    font-size: 13px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.staff:hover .text::after {
    opacity: 1;
    transform: translateX(0);
}

/* Styled Icons in Cards */
.img-fluids {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
    /* ensure background if image is transparent */
}

.img-fluids:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

/* Navbar Tweaks */
.ftco_navbar {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo_image {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo_image {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Destination Section Overlay */
.destination-section {
    position: relative;
    z-index: 0;
    background-attachment: fixed;
    /* Parallax effect */
    background-position: center center;
    background-size: cover;
}

.destination-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 97, 0.9) 0%, rgba(0, 123, 255, 0.8) 100%) !important;
    /* Navy to Blue Gradient */
    z-index: -1;
}

.destination-section h2,
.destination-section .subheading {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* DIRECT EMBEDDED STYLES TO FORCE UPDATE */
.service-card-premium {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 97, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #000061, #007bff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 97, 0.15);
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

.icon-blob {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 97, 0.03);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card-premium:hover .icon-blob {
    transform: scale(1.5);
    background: rgba(0, 0, 97, 0.05);
}

.service-card-premium .icon {
    width: 90px;
    height: 90px;
    background: #f8f9fa;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card-premium:hover .icon {
    background: #000061;
    box-shadow: 0 10px 20px rgba(0, 0, 97, 0.2);
}

.service-card-premium:hover .icon img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.service-card-premium .service-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.service-card-premium .heading {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    transition: color 0.3s ease;
}

.service-card-premium:hover .heading {
    color: #000061;
}

.service-card-premium p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    color: #000061;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.service-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.service-card-premium:hover .service-btn {
    opacity: 1;
    color: #007bff;
    letter-spacing: 1px;
}

.service-card-premium:hover .service-btn i {
    transform: translateX(5px);
}

.about-section-enhanced {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.blob-shape {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 97, 0.05);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(-5deg);
    z-index: 0;
}

.img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid #fff;
    z-index: 1;
}

/* Play Button Fixed & Reinforced */
.video-btn-wrap {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 50 !important;
    background: transparent !important;
    pointer-events: none;
}

.play-btn-new {
    width: 90px !important;
    height: 90px !important;
    background: radial-gradient(circle, #000061 0%, #000040 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 100 !important;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-decoration: none !important;
    pointer-events: auto !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.play-btn-new span {
    color: #fff !important;
    font-size: 35px !important;
    margin-left: 5px !important;
}

.play-btn-new:hover {
    background: #fff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 0 0 12px rgba(0, 0, 97, 0.2) !important;
}

.play-btn-new:hover span {
    color: #000061 !important;
}

/* Buttons */
.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: #000061;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 97, 0.2);
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    overflow: hidden;
    /* Added for shine effect */
    position: relative;
    /* Added for shine effect */
}

.btn-modern-primary .btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-modern-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 97, 0.4);
    background: #00004d;
    color: #fff !important;
}

.btn-modern-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-modern-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 33px;
    background: transparent;
    color: #000061 !important;
    border: 2px solid #000061;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-modern-outline:hover {
    background: #000061;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-content-modern .badge-subheading {
    color: #000061;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.about-content-modern h2 {
    font-weight: 800;
    color: #1a1a1a;
    font-size: 38px;
    line-height: 1.2;
}

.about-content-modern h4 {
    color: #000061;
    font-weight: 600;
}

/* Premium Testimonial Cards */
.testimony-card-premium {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    margin: 20px 10px;
    /* Spacing for carousel */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 97, 0.05);
    /* Subtle border */
    height: 100%;
    transition: transform 0.3s ease;
}

.testimony-card-premium:hover {
    transform: translateY(-5px);
}

.testimony-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #000061, #007bff);
}

.testimony-card-premium .quote-icon-bg {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(0, 0, 97, 0.05);
    /* Very watermark-like */
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimony-card-premium .text-content {
    position: relative;
    z-index: 1;
}

.testimony-card-premium p.mb-4 {
    font-size: 16px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.user-profile-row {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.testimony-card-premium .user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center top;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
}

.testimony-card-premium .name {
    font-weight: 700;
    color: #000061;
    font-size: 18px;
    margin-bottom: 2px;
}

.testimony-card-premium .position {
    font-size: 13px;
    color: #007bff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Counter Section Gradient */
.ftco-counter {
    background: linear-gradient(135deg, #050530 0%, #000061 50%, #0044cc 100%) !important;
    position: relative;
}

.ftco-counter .overlay {
    display: none;
    /* Remove any old overlay */
}

.read-more-link {
    color: #007bff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline !important;
    cursor: pointer;
}

.read-more-link:hover {
    color: #007bff;
}

/* Force Equal Height for Carousel Items */
.carousel-testimony .owl-stage {
    display: flex;
}

.carousel-testimony .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.carousel-testimony .item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Owl Dots Styling */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 5px;
    border: none;
    outline: none;
}

.owl-carousel button.owl-dot.active {
    background: #007bff;
    transform: scale(1.2);
}

/* Owl Navigation Arrows - Forced Visibility */
.owl-carousel .owl-nav {
    display: block !important;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff !important;
    border-radius: 50%;
    color: #000061 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    outline: none;
    z-index: 1000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #007bff !important;
    color: #fff !important;
    box-shadow: 0 5px 25px rgba(0, 123, 255, 0.4) !important;
    transform: translateY(-50%) scale(1.1);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -10px;
    /* Adjusted to sit slightly on the edge */
}

.owl-carousel .owl-nav button.owl-next {
    right: -10px;
    /* Adjusted to sit slightly on the edge */
}

/* Main Slider Specific Navigation Positioning & Colors */
.home-slider .owl-nav button.owl-prev,
.home-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    /* Semi-transparent Black */
    border: 2px solid #fff !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
    outline: none;
}

.home-slider .owl-nav button.owl-prev {
    left: 20px !important;
}

.home-slider .owl-nav button.owl-next {
    right: 20px !important;
    left: auto !important;
}

/* Style the Icon specifically */
.home-slider .owl-nav button.owl-prev span,
.home-slider .owl-nav button.owl-next span {
    font-family: 'FontAwesome' !important;
    font-size: 24px !important;
    color: #fff !important;
    line-height: 1 !important;
    display: block;
}

/* Hover Effect */
.home-slider .owl-nav button.owl-prev:hover,
.home-slider .owl-nav button.owl-next:hover {
    background: #007bff !important;
    /* Primary Blue */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 25px rgba(0, 123, 255, 0.5) !important;
    border-color: #007bff !important;
}

/* Keep icon white on hover */
.home-slider .owl-nav button.owl-prev:hover span,
.home-slider .owl-nav button.owl-next:hover span {
    color: #fff !important;
}

/* Modal Premium Design */
.modal-content.premium-modal {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-header-premium {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 20px;
    border-bottom: none;
    position: relative;
}

.close-premium {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    opacity: 0.8;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

.close-premium:hover {
    opacity: 1;
}

.modal-body-premium {
    padding: 40px;
    text-align: center;
    background: #fff;
}

.modal-user-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    margin-top: -70px;
    /* Pull up into header */
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.modal-name {
    color: #007bff;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 5px;
}

.modal-position {
    color: #007bff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
}

.modal-desc {
    color: #555;
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
}

/* 11. Premium Footer */
.footer {
    background: linear-gradient(135deg, #050530 0%, #000061 100%);
    color: #fff;
    padding: 2em 0;
    font-size: 15px;
}

.footer .footer-heading {
    color: #fff;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #007bff;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #007bff;
    padding-left: 5px;
}

.footer .btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .btn-white:hover {
    background: #fff;
    color: #000061;
}

.footer .ftco-footer-social li a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    /* Centering fix */
    align-items: center;
    justify-content: center;
}

.footer .ftco-footer-social li a:hover {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

/* Consultation Form in Footer */
.footer .form-consultation .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    font-size: 14px;
}

.footer .form-consultation .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer .form-consultation .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #007bff;
}

.footer .submit {
    background: #007bff !important;
    color: #fff !important;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.footer .submit:hover {
    background: #0056b3 !important;
}

.footer .copyright-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    width: 100%;
}

.footer .copyright {
    color: rgba(255, 255, 255, 0.5);
    /* removed border/margin/padding from here */
}

.footer .copyright a {
    color: #fff;
}

/* 12. Inner Page Global Styles */
.hero-wrap .bread {
    font-family: 'Poppins', sans-serif;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-wrap .breadcrumbs {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-wrap .breadcrumbs a {
    color: #fff;
}

/* Services 2 (About Page / Inner Pages) */
.services-2 {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 97, 0.05);
}

.services-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 97, 0.15);
}

.services-2 .text h4 {
    color: #000061;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.services-2 .icon {
    width: 60px;
    height: 60px;
    background: #e6f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 24px;
    margin-right: 20px;
}

/* Premium Team Section */
.staff-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.staff-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.staff-premium .img-wrap {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.staff-premium .img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    transition: all 0.5s ease;
}

.staff-premium:hover .img {
    transform: scale(1.05);
}

.staff-premium .text {
    padding: 30px;
    background: #fff;
    position: relative;
    z-index: 10;
}

.staff-premium h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000061;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staff-premium .position {
    display: block;
    font-size: 16px;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.staff-premium .faded-text {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
}

.staff-premium .social-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 97, 0.9), transparent);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.staff-premium:hover .social-overlay {
    bottom: 0;
    opacity: 1;
}

.staff-premium .social-overlay a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: #000061;
    transition: all 0.3s ease;
}

.staff-premium .social-overlay a:hover {
    background: #007bff;
    color: #fff;
    transform: rotate(360deg);
}

/* Global Section Padding Optimization */
.ftco-section {
    padding: 2.5em 0 !important;
}

/* 12. Premium Form Styles */
.form-control {
    height: 52px;
    background: #fff;
    color: #000;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 97, 0.1);
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-control:active {
    border-color: #007bff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
}

textarea.form-control {
    height: auto !important;
}

.contact-wrap {
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.ftco-section.ftco-no-pt {
    padding-top: 0 !important;
}

.ftco-section.ftco-no-pb {
    padding-bottom: 0 !important;
}

/* 14. Topbar Color & Social Icon Update */
.wrap {
    background-color: #000061 !important;
    /* Logo Color (Navy) */
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wrap .phone .fa {
    color: #fff !important;
    /* Phone icon White */
}

.wrap .phone a {
    color: #fff !important;
}

/* Update Social Icons for Navy Background */
.social-media p a {
    width: 30px;
    height: 30px;
    background: #fff !important;
    /* White Background */
    color: #000061 !important;
    /* Navy Icon */
    border-radius: 50%;
    margin-left: 5px;
    display: flex;
    /* Ensure centering */
    align-items: center;
    /* Ensure centering */
    justify-content: center;
    /* Ensure centering */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-media p a:hover {
    background: #000061 !important;
    /* Primary Navy */
    color: #fff !important;
    border: 1px solid #fff !important;
    /* White Border */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Update Social Icons Hover - Footer */
.ftco-footer-social li a:hover {
    background: #000061 !important;
    /* Primary Navy */
    color: #fff !important;
    border: 1px solid #fff !important;
    /* White Border */
    transform: translateY(-2px);
}

/* Fix Footer Social Icon Visibility */
.footer .ftco-footer-social li a {
    background: #fff !important;
    /* Solid White */
    color: #000061 !important;
    /* Navy Icon */
    border: 1px solid #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.footer .ftco-footer-social li a span {
    position: static !important;
    /* Reset absolute positioning from template */
    transform: none !important;
    line-height: 1 !important;
}

.social-media p a span {
    color: inherit !important;
    /* Inherit from parent */
}

/* 15. Sticky Header Animation */
.ftco_navbar.scrolled {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    margin-top: -130px;
    background: #000061 !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    /* Simpler padding */
}

.ftco_navbar.awake {
    margin-top: 0px;
    transition: .3s all ease-out;
}

.ftco_navbar.scrolled .nav-link {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    color: #fff !important;
}

.ftco_navbar.scrolled .navbar-brand {
    color: #fff !important;
}

/* Sticky Header Menu Hover & Active State - White Box */
.ftco_navbar.scrolled .navbar-nav>.nav-item>.nav-link {
    transition: all 0.3s ease;
}

.ftco_navbar.scrolled .navbar-nav>.nav-item>.nav-link:hover,
.ftco_navbar.scrolled .navbar-nav>.nav-item.active>.nav-link {
    background-color: #fff !important;
    /* White Box */
    color: #000061 !important;
    /* Primary Navy */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle lift */
}