/* General Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
}

/* Banner Main Container */
.banner {
   background-color: #0076e4;
    color: white;
    padding: 10px 8% 100px 8%; /* Reduced top and bottom padding */
    position: relative;
    clip-path: ellipse(120% 100% at 50% 0%); /* Wider ellipse for a subtler curve */
    min-height: auto; /* Removed 85vh so it wraps tightly around content */
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: center; /* Changed from space-between to center the links */
    align-items: center;
    padding: 15px 0;
    position: relative; /* Added this */
    min-height: 70px;   /* Set a fixed height for consistency */
}
/* Update your existing .logo class */
.logo {
    position: absolute; /* Detach from the flow */
    left: 0;            /* Align to the left of the container */
    top: 50%;           /* Move to middle */
    transform: translateY(-50%); /* Perfectly center vertically */
    z-index: 10;
}

/* Increase your logo size here */
.logo img {
    width: 110px;      /* Increased size - change this to whatever you like */
    height: auto;
    display: block;
    padding-top: 20px;
}


.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Ensure the Book Now button stays to the right */
.btn-book {
    position: absolute; /* Detach from flow */
    right: 0;           /* Align to the right */
    top: 50%;
    transform: translateY(-50%);
    
    /* Keep your existing styles */
    background: white;
    color: #333;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Hero Section Layout */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
   font-size: 2.8rem; /* Slightly smaller to save vertical space */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px; /* Reduced gap */
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 25px; /* Reduced gap */
}

.btn-start {
    background-color: #f7bebe; 
    color: #333;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
}

/* Trusted By Section (The Fixed Layer) */
.trusted-section {
    position: relative;
    margin-top: -60px; /* Pulls the card UP to overlap the banner */
    text-align: center;
    z-index: 100; /* Ensures it sits on top of everything */
}

.trusted-section p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.logos-card {
   background: white;
    display: inline-flex;
    align-items: center;
    gap: 30px; /* Reduced gap between logos */
    padding: 20px 20px; /* Smaller padding */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.logos-card img {
    height: 35px;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none;
    }
    .hero-image {
        margin-top: 30px;
    }
    .logos-card {
        flex-wrap: wrap;
        width: 90%;
        gap: 20px;
        padding: 20px;
    }
    .navbar {
        justify-content: space-between; /* Put space back for mobile */
        padding: 10px 0;
    }
    
    .logo, .btn-book {
        position: static;   /* Return to normal flow for mobile */
        transform: none;    /* Reset centering */
    }

    .logo img {
        width: 100px;       /* Smaller logo for mobile */
        padding-top: 15px;
    }
}
/* Animation for the Globe */
@keyframes rotateGlobe {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Apply the animation to the hero image */
.hero-image img {
    animation: rotateGlobe 20s linear infinite; /* 20 seconds for a smooth, slow spin */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); /* Optional: adds a soft shadow */
}

/* Optional: Floating effect (to make it look like it's hovering) */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* If you prefer the Floating look instead of spinning, use this: */
/*
.hero-image img {
    animation: float 6s ease-in-out infinite;
}
*/


.services-section {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
}

.services-header {
    margin-bottom: 50px;
    padding: 0 20px;
}

.service-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.rope-container {
    position: relative;
    width: 100%;
    /* Keep aspect ratio of 1890:293 */
    max-width: 1890px; 
    margin: 0 auto;
}

.rope-svg {
    width: 100%;
    height: auto;
    display: block;
}

.icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-3d {
    position: absolute;
    width: 85px; /* Size of the 3D icons */
    height: auto;
    transform: translate(-50%, -50%); /* Centers icon on line end */
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.1));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-3d:hover {
    /* Gentle swing and scale effect */
    transform: translate(-50%, -40%) rotate(5deg) scale(1.1);
    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.2));
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .icon-3d {
        width: 45px;
    }
    .service-title {
        font-size: 1.8rem;
    }
}



/* About Us Section Styles */
.about-section {
    padding: 40px 8%;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 500px; /* Adjust based on your image size */
    height: auto;
}

.about-content {
    flex: 1;
}

.about-subtitle {
    color: #e91e63; /* Pink color from the image for the small tag */
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.about-title {
    color: #0076e4; /* Requested Color */
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-discover {
    background-color: #0076e4; /* Requested Color */
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-discover:hover {
    background-color: #005bb5;
    transform: translateY(-3px);
}

/* Responsive for About Section */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.2rem;
    }

    .about-image img {
        max-width: 350px;
    }
}
/* Stats Section Styles */
.stats-section {
    padding: 10px 8%;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-number {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgb(0, 118, 228); /* Deep red color from your image */
    margin: 0;
}

.plus {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(0, 118, 228);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        flex-wrap: wrap;
        gap: 40px;
    }
    .stat-item {
        flex: 1 1 40%; /* 2 items per row on mobile */
    }
    .stat-number {
        font-size: 2.5rem;
    }
}
/* Services Grid Section Wrapper */
.services-grid-section {
    padding: 80px 8%;
    background-color: #fcfcfc;
    text-align: center;
}

/* Header Styling */
.services-header {
    margin-bottom: 60px;
}

.service-subtitle {
    color:rgb(0, 118, 228);
; /* Pink accent color to match 'About Us' */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-title {
    color: #222;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Clickable Card */
.service-card {
    background-color: #0076e4; /* Your brand blue */
    padding: 50px 30px;
    border-radius: 25px;
    text-decoration: none; /* Removes link underline */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 118, 228, 0.1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 118, 228, 0.3);
}

/* Icon Box */
.icon-box {
    background: white;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.icon-box img {
    width: 45px;
    height: 45px;
}

/* Card Text */
.service-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 2.2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card {
        padding: 40px 20px;
    }
}
/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 100px 8%;
    background-color: #fff;
    overflow: hidden;
}

.wcu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content */
.wcu-content {
    flex: 1;
}

.wcu-subtitle {
    color: #c2185b; /* Pinkish-red from image */
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.wcu-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.wcu-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Bullet List */
.wcu-list {
    list-style: none;
    margin-bottom: 40px;
}

.wcu-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.wcu-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #c2185b;
    border-radius: 50%;
}

.btn-discover-wcu {
    background-color: #c2185b;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-discover-wcu:hover {
    background-color: #a0134a;
}

/* Right Grid */
.wcu-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

/* Adding the subtle dots pattern effect seen in the image */
.wcu-grid::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#ddd 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: -1;
}

.wcu-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.wcu-card:hover {
    transform: translateY(-5px);
}

.wcu-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.wcu-icon-box img {
    width: 25px;
    filter: brightness(0) invert(1); /* Makes icons white */
}

/* Icon Background Colors from Image */
.yellow-bg { background-color: #ffb300; }
.darkblue-bg { background-color: #0d47a1; }
.lightblue-bg { background-color: #03a9f4; }
.pink-bg { background-color: #e91e63; }

.wcu-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
}

.wcu-card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .wcu-container {
        flex-direction: column;
    }
    .wcu-title {
        font-size: 2.2rem;
    }
    .wcu-grid {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }
}
/* Section Wrapper */
.testimonials-main-wrapper {
    padding: 100px 8%;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
}

/* External Header Styling */
.testimonials-header {
    margin-bottom: 60px;
}

.t-subtitle {
    color: #e91e63; /* Pink accent */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.t-title {
    color: #222;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.t-description {
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* The Box Container */
.testimonial-box-container {
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
    min-height: 520px;
    display: flex;
    align-items: center;
}

/* SVG Background Shape */
.t-shape-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Inner Layout */
.t-inner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 100px;
    display: flex;
    align-items: center;
    color: white;
    text-align: left;
}

.t-slider-side { width: 60%; }

/* Slider Item Transitions */
.testimonial-slider-track {
    position: relative;
    min-height: 200px;
}

.t-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(30px);
}

.t-slide-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Content Details */
.t-stars { color: #ffcc00; font-size: 1.3rem; margin-bottom: 15px; }
.t-quote { font-size: 1.15rem; line-height: 1.7; margin-bottom: 25px; opacity: 0.9; font-style: italic; }
.t-client-info { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.5px; }

/* Active Dots (Pill Style) */
.t-dots-container {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.t-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 10px;
}

/* Arrows Navigation */
.t-navigation {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.t-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.3s;
}

.t-arrow:hover {
    background: white;
    color: #0076e4;
    border-color: white;
}

/* Globe Pop-out Illustration */
.t-globe-side { width: 40%; position: relative; }
.t-globe-img {
    width: 480px;
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.4));
    animation: globeFloat 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes globeFloat {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-64%); }
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .t-shape-svg { display: none; }
    .testimonial-box-container { 
        background-color: #0076e4; 
        border-radius: 40px; 
        min-height: auto;
        box-shadow: 10px 10px 0px rgba(0, 118, 228, 0.15);
    }
    .t-inner-content { flex-direction: column; padding: 50px 30px; text-align: center; }
    .t-slider-side { width: 100%; }
    .t-globe-side { width: 100%; display: flex; justify-content: center; }
    .t-globe-img { position: relative; right: 0; top: 0; transform: none; width: 320px; margin-top: 40px; animation: none; }
    .t-dots-container, .t-navigation { justify-content: center; }
    .testimonial-slider-track { min-height: 250px; }
}