.nav-blue {
    color: #076d96;
    /* sky blue */
}

.nav-blue:hover {
    color: #ff6b35;
    /* light blue */
}

/* --- CSS STYLES (Same as before) --- */
#heroCarousel,
.carousel-item {
    height: 80vh;
    min-height: 500px;
}

.carousel-item {
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
}

.carousel-caption-centered {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.btn-hero {
    background-color: white;
    color: #333;
    font-weight: 600;
    padding: 12px 35px;
    /* Slightly wider looks more premium */
    border-radius: 30px;
    /* Makes it pill-shaped (more modern) */
    border: none;
    text-decoration: none;

    /* THE MAGIC LINE FOR SMOOTHNESS */
    transition: all 0.5s ease;
}

.btn-hero:hover {
    background-color: #f8f9fa;
    /* Slightly off-white, not harsh */
    color: #000;

    /* MOVEMENT & DEPTH */
    transform: translateY(-5px);
    /* Moves the button UP by 5 pixels */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    /* Adds a soft drop shadow below */
}

/* Round Arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 25px;
    background-size: 40%;
}

/* --- SECTION 2 STYLES --- */

/* Wrapper for the rounded card look */
.video-card-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    /* Adjust height as needed */
    border-radius: 20px;
    /* The rounded corners from your screenshot */
    overflow: hidden;
    /* Ensures video stays inside the rounded corners */
    display: flex;
    align-items: center;
    /* Vertically center content */
    justify-content: center;
    /* Horizontally center content */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Soft shadow for depth */
}

/* Background Video Styling */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video fills the area without stretching */
    z-index: 1;
}

/* Dark Overlay Styling */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 50% opacity black */
    z-index: 2;
}

/* Content Styling */
.video-content {
    position: relative;
    z-index: 3;
    /* Sits on top of everything */
    padding: 20px;
}

/* Typography tweaks */
.video-content h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Button Hover Effect (Optional) */
.video-content .btn {
    transition: transform 0.3s ease;
}

.video-content .btn:hover {
    transform: scale(1.05);
}

/* --- SECTION 3 STYLES --- */

/* 1. Background Color */
.info-section {
    background-color: #f9f9f9;
    /* Very light gray background like the image */
}

/* 2. Headings (The Dark Blue Color) */
.section-heading {
    color: #2c3e50;
    /* Dark Navy Blue */
    font-weight: 800;
    /* Extra Bold */
    font-size: 2rem;
}

.section-subheading {
    color: #2c3e50;
    /* Same Dark Navy Blue */
    font-weight: 700;
    font-size: 1.5rem;
}

/* 3. The List Styling */
.custom-list {
    list-style-type: disc;
    /* Standard bullet points */
    padding-left: 20px;
    /* Indent the list slightly */
    color: #6c757d;
    /* Grey text color */
    line-height: 1.8;
    /* More space between lines for readability */
}

.custom-list li {
    margin-bottom: 10px;
    /* Space between list items */
}

.custom-list strong {
    color: #4a5568;
    /* Slightly darker grey for the bold parts */
}

/* 4. Service Area Text */
.service-area-text {
    line-height: 1.6;
    font-size: 0.95rem;
    /* Slightly smaller than main text */
}

/* --- SECTION 4 STYLES --- */

/* --- Variables for Theme Colors --- */
:root {
    --theme-dark-blue: #2c3e50;
    /* Match your previous section color */
    --theme-orange: #ff6b35;
    /* The orange shirt color for hovers */
}

/* --- General Card Styling --- */
.service-card {
    border-radius: 8px;
    overflow: hidden;
    /* Essential for containing the zoom and rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Slight lift effect on hover for the whole card */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* --- IMAGE ZOOM EFFECT (Smooth & Beautiful) --- */
.img-zoom-wrapper {
    overflow: hidden;
    /* THIS IS KEY: Keeps the image inside the box */
    position: relative;
}

.img-zoom-wrapper img {
    /* Smooth transition for the zoom */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* When hovering the main card, zoom the image inside it */
.service-card:hover .img-zoom-wrapper img {
    transform: scale(1.12);
    /* Zoom in by 12% */
}


/* --- Specific Layout Tweaks --- */
/* Large left card image height */
.large-card .img-zoom-wrapper {
    height: 300px;
}

/* Right side horizontal cards image sizes */
.horizontal-img-wrapper {
    width: 100%;
    height: 200px;
}

/* Responsive adjustments for the right side cards */
@media (min-width: 768px) {
    .horizontal-card {
        /* On larger screens, make them side-by-side */
        flex-direction: row !important;
    }

    .horizontal-img-wrapper {
        /* Fixed width for the image part on desktop */
        width: 200px;
        height: 100%;
    }
}


/* --- HEADING HOVER EFFECT (Orange Color) --- */
.service-heading-link {
    text-decoration: none;
    color: var(--theme-dark-blue);
    /* Default dark blue */
    font-weight: 700;
    transition: color 0.3s ease;
    /* Smooth color change */
}

/* Change color when hovering the link directly OR hovering the entire card */
.service-heading-link:hover,
.service-card:hover .service-heading-link {
    color: var(--theme-orange);
    /* Change to orange */
}


/* --- CUSTOM OUTLINE BUTTON --- */
.btn-custom-outline {
    color: var(--theme-dark-blue);
    border: 2px solid #dce0e4;
    /* Light grey border */
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 30px;
    /* Rounded pill shape */
    transition: all 0.3s ease;
}

.btn-custom-outline:hover {
    /* On hover, turn orange with white text */
    background-color: var(--theme-orange);
    border-color: var(--theme-orange);
    color: white;
}

/* Utility to limit text to 3 lines if it gets too long */
.lines-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- SECTION 5 STYLES --- */

.philosophy-section {
    background-color: #f9f9f9;
    /* Light grey background for the whole section */
}

/* The White Card */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    height: 100%;
    /* Ensures all cards in a row are same height */
    transition: transform 0.3s ease;
    /* Smooth hover lift */
}

/* Lift up on hover */
.testimonial-card:hover {
    transform: translateY(-5px);
}

/* User Icon Styling (The Grey Circle) */
.user-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #8c95a6;
    /* The greyish-blue circle color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* Icon color */
    flex-shrink: 0;
    /* Prevents circle from squishing */
}

.user-icon-wrapper svg {
    width: 30px;
    height: 30px;
}

/* The Big Quote Mark in Top Right */
.quote-mark {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 80px;
    line-height: 1;
    color: #e5e5e5;
    /* Very light grey */
    font-family: serif;
    /* Classic quote font */
}

/* Text Styling */
.review-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    /* Ensures text sits on top of the quote mark */
}

.reviewer-name {
    color: #ff6b35;
    /* Theme Orange */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.reviewer-meta {
    margin: 0;
    font-size: 0.9rem;
}

/* --- SECTION 6: FOOTER STYLES --- */

.footer-section {
    background-color: white;
}

/* 1. The Line */
.footer-divider {
    border-top: 1px solid #dee2e6;
    opacity: 1;
    /* Makes the line distinct */
}

/* 2. Headings */
.footer-title {
    color: #2c3e50;
    /* Dark Navy Theme Color */
    font-weight: 500;
}

/* 3. Social Buttons (The Circles) */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1.5px solid #0d6efd;
    /* The Blue Outline Color */
    border-radius: 50%;
    /* Makes it a perfect circle */
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Icon Size and Default Color */
.social-btn i {
    font-size: 1.25rem;
    color: #0d6efd;
    /* Blue Icon */
    transition: color 0.3s ease;
}

/* --- HOVER EFFECT: Turn Icon Black --- */
.social-btn:hover {
    border-color: black;
    /* Border turns black */
}

.social-btn:hover i {
    color: black;
    /* Icon turns black */
}


/* 4. Developer Link (romabravo) */
.copyright-area {
    font-size: 0.8rem;
}

.dev-link {
    text-decoration: none;
    font-weight: 700;
    /* Bold text */
    color: #2c3e50;
    /* Default Dark Color */
    transition: color 0.3s ease;
}

/* Hover Effect: Turn Orange */
.dev-link:hover {
    color: #ff6b35;
    /* Your Theme Orange */
}

/* --- ABOUT PAGE STYLES --- */

/* Text Colors */
.text-navy {
    color: #2c3e50;
}

.text-orange {
    color: #ff6b35;
}

/* Custom List Styling (Small bullets) */
.custom-about-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 0.95rem;
    color: #6c757d;
    /* Grey text */
}

.custom-about-list li {
    margin-bottom: 8px;
}

.custom-about-list strong {
    color: #444;
    /* Darker grey for the bold parts */
}

/* --- SIDEBAR SERVICE CARDS --- */
.service-sidebar-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.service-sidebar-card:hover {
    transform: translateY(-5px);
    /* Lift effect on hover */
}

/* Image styling */
.service-sidebar-card .img-wrapper {
    width: 100%;
    height: 220px;
    /* Fixed height for consistency */
    overflow: hidden;
}

.service-sidebar-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom image on hover */
.service-sidebar-card:hover .img-wrapper img {
    transform: scale(1.1);
}

/* Content inside the card */
.service-sidebar-card .card-content {
    padding: 20px;
}

/* Reuse your existing button style, or ensure this class exists */
.btn-custom-outline {
    color: var(--theme-dark-blue);
    border: 2px solid #dce0e4;
    /* Light grey border */
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 30px;
    /* Rounded pill shape */
    transition: all 0.3s ease;
    text-decoration: none;

}

.btn-custom-outline:hover {
    /* On hover, turn orange with white text */
    background-color: var(--theme-orange);
    border-color: var(--theme-orange);
    color: white;
}

/* =========================================
   SERVICES PAGE STYLES
   ========================================= */

/* --- "MORE SERVICES" MENU BOX --- */
.more-services-box {
    border: 1px solid #e9ecef;
}

.service-menu-list li {
    border-bottom: 1px solid #eee;
    /* Light divider line */
}

.service-menu-list li:last-child {
    border-bottom: none;
    /* No line on the last item */
}

.service-menu-list a {
    display: block;
    padding: 12px 0;
    color: #0d6efd;
    /* Standard Blue Link Color */
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

/* HOVER EFFECT: Turn Orange and slide slightly right */
.service-menu-list a:hover {
    color: #ff6b35;
    /* Theme Orange */
    padding-left: 5px;
    /* Subtle movement */
}

/* --- SERVICE CONTENT LISTS --- */
.custom-service-list {
    list-style-type: disc;
    /* Bullet points */
    padding-left: 20px;
    color: #6c757d;
    /* Grey text */
    font-size: 0.95rem;
    line-height: 1.8;
    /* Good spacing between lines */
}

.custom-service-list li {
    margin-bottom: 5px;
}

/* =========================================
   CHARGES PAGE STYLES
   ========================================= */

/* 1. The Blue Links that turn Orange */
.text-link-blue {
    color: #2c3e50;
    /* Start with Dark Navy/Blue */
    font-weight: 700;
    /* Bold */
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-link-blue:hover {
    color: #ff6b35;
    /* Turns Orange on Hover */
    text-decoration: underline;
    /* Optional: adds underline on hover */
}

/* 2. Custom List for Rates (Small bullets) */
.custom-charges-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 0.95rem;
    color: #555;
    /* Dark grey text */
    line-height: 1.8;
}

.custom-charges-list li {
    margin-bottom: 5px;
}

/* 3. Sale Image Styling */
.sale-image-wrapper img {
    max-height: 300px;
    /* Limits height so it doesn't get too big */
    width: 100%;
    object-fit: cover;
    border: 1px solid #eee;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* 1. Custom Bullet List for Contact Page */
.custom-contact-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #6c757d;
    line-height: 1.8;
}

.custom-contact-list li {
    margin-bottom: 12px;
}

.custom-contact-list strong {
    color: #2c3e50;
    /* Navy Color for labels like 'Email:' */
}

/* 2. Form Styling */
.contact-form-wrapper {
    background-color: #fff;
    border: 1px solid #e9ecef;
}

/* Make inputs look soft like the screenshot */
.form-control {
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: #ff6b35;
    /* Orange border when you click to type */
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
    /* Orange Glow */
}

/* 3. Solid Theme Button (Orange) */
.btn-theme-solid {
    background-color: #0d6efd;
    /* Blue Default (matches screenshot) */
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-theme-solid:hover {
    background-color: #ff6b35;
    /* Turns Orange on Hover */
    transform: translateY(-2px);
    /* Slight lift */
}

/* =========================================
   NEW PROFESSIONAL DROPDOWN MENU STYLES
   ========================================= */

/* 1. Remove default Bootstrap border and add a deep shadow */
.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 15px;
    /* Spacing from the nav bar */
    min-width: 500px;
    /* Make it wide enough for 2 columns */
    background-color: #fff;
}

/* 2. The Link Styling inside the menu */
.navbar .dropdown-item {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    /* Navy Text */
    border-radius: 6px;
    /* Soft corners on hover */
    transition: all 0.2s ease;
    position: relative;
}

/* 3. Hover Effect: Orange Background + White Text */
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: #ff6b35;
    /* Elite Traders Orange */
    color: #fff !important;
    transform: translateX(5px);
    /* Tiny slide to the right */
}

/* 4. Two-Column Layout Grid */
.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two equal columns */
    gap: 10px;
    /* Space between columns */
}

/* 5. Mobile Responsiveness (Stack columns on phone) */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        min-width: auto;
        /* Reset width for mobile */
        box-shadow: none;
        padding: 0;
        margin-top: 0;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: 0;
    }

    .navbar .dropdown-item {
        padding: 10px;
        /* Smaller padding on mobile */
    }
}

/* =========================================
   SERVICES HUB PAGE - ANIMATED CARDS
   ========================================= */

/* 1. The Card Container */
.service-hub-card {
    border: none;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Soft shadow initially */
    transition: all 0.4s ease;
    /* Smooth transition for everything */
    overflow: hidden;
    /* Keeps the zooming image inside the corners */
    height: 100%;
    /* Makes all cards same height */
    display: flex;
    flex-direction: column;
}

/* 2. HOVER EFFECT: Lift the card */
.service-hub-card:hover {
    transform: translateY(-10px);
    /* Moves up */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Deep shadow on hover */
}

/* 3. Image Wrapper (The Frame) */
.service-hub-card .img-frame {
    overflow: hidden;
    /* Cuts off the zooming image */
    height: 220px;
    position: relative;
}

/* 4. HOVER EFFECT: Image Zoom */
.service-hub-card .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    /* Slower, smoother zoom */
}

.service-hub-card:hover .img-frame img {
    transform: scale(1.1);
    /* Zooms in to 110% */
}

/* 5. Button Styling */
.btn-service-action {
    border: 2px solid #2c3e50;
    /* Navy Border */
    color: #2c3e50;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    /* Pill shape */
    background: transparent;
    transition: all 0.3s ease;
}

/* 6. HOVER EFFECT: Button Change */
.btn-service-action:hover {
    background-color: #ff6b35;
    /* Orange Background */
    border-color: #ff6b35;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    /* Orange glow */
}

/* 7. Text Styling */
.card-body h5 {
    color: #2c3e50;
    /* Navy Title */
    transition: color 0.3s ease;
}

.service-hub-card:hover h5 {
    color: #ff6b35;
    /* Title turns orange on hover */
}