/* Import Google Fonts for modern typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    min-height: 100vh;
}

.site-logo{
  height: 60px;
}


/* Professional Navbar with 3D Animation */
.navbar-professional {
    position: relative;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 1000;
}

.navbar-professional::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(102,126,234,0.03), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* Navbar Background Animation Layers */
.navbar-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.navbar-bg-layer.layer-1 {
    background: radial-gradient(circle at 20% 50%, rgba(102,126,234,0.08), transparent 50%);
    animation: bgFloat1 15s linear infinite;
}

.navbar-bg-layer.layer-2 {
    background: radial-gradient(circle at 80% 50%, rgba(118,75,162,0.06), transparent 50%);
    animation: bgFloat2 18s linear infinite reverse;
}

@keyframes bgFloat1 {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(30px) translateY(-20px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes bgFloat2 {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-40px) translateY(25px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.navbar-professional .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Styling */
.navbar-brand-custom {
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.navbar-brand-custom:hover {
    transform: scale(1.05);
}

.brand-icon {
    font-size: 2rem;
    animation: rotateCar 3s ease-in-out infinite;
}

@keyframes rotateCar {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a365d;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Badge */
.navbar-contact {
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffc107;
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid #ffb300;
    transition: all 0.3s ease;
}

.contact-badge:hover {
    background: #ffb300;
    border-color: #ff9800;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    color: #333;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-numbers a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-numbers a:hover {
    color: #333;
}

.contact-numbers a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-numbers a:hover {
    color: #ffc107;
}

/* Navigation Links */
.nav-link-custom {
    color: #667eea !important;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link-custom::after {
    color: #764ba2 !important;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link-custom:hover {
    color: #667eea !important;
}

.nav-link-custom:hover::after {
    width: 80%;
}

/* CTA Button */
.btn-cta {
    background: linear-gradient(135deg, #ffc107, #ff9500);
    color: #1a365d !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #ff9500, #ffc107);
    color: #1a365d !important;
}

.cta-icon {
    animation: pulse-cta 1.5s ease-in-out infinite;
}

/* Mobile Book Now Button */
.btn-mobile-book {
    background: linear-gradient(135deg, #ffc107, #ff9500);
    color: #1a365d !important;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.btn-mobile-book:hover,
.btn-mobile-book:focus {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, #ff9500, #ffc107);
    color: #1a365d !important;
}

.btn-mobile-book:active {
    transform: translateY(-1px) scale(1.05);
}

.mobile-book-icon {
    animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Enhanced Hero Section */
.hero-enhanced {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 53, 93, 0.95), rgba(45, 55, 72, 0.95)),
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
}

/* Hero Background Animation */
.hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    perspective: 1000px;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.bg-float-1 {
    background: radial-gradient(circle at 20% 30%, rgba(102,126,234,0.25), transparent 40%);
    animation: float1 25s ease-in-out infinite;
}

.bg-float-2 {
    background: radial-gradient(circle at 80% 70%, rgba(118,75,162,0.2), transparent 40%);
    animation: float2 30s ease-in-out infinite;
}

.bg-float-3 {
    background: radial-gradient(circle at 50% 50%, rgba(255,193,7,0.08), transparent 50%);
    animation: float3 28s ease-in-out infinite;
}

@keyframes float1 {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -40px) scale(1.05); }
    50% { transform: translate(20px, 30px) scale(1.02); }
    75% { transform: translate(-30px, -20px) scale(1.04); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-60px, 40px) scale(1.03); }
    50% { transform: translate(-20px, -30px) scale(1.05); }
    75% { transform: translate(40px, 20px) scale(1.02); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes float3 {
    0% { transform: translate(0, 0) rotateZ(0deg); }
    25% { transform: translate(30px, 30px) rotateZ(2deg); }
    50% { transform: translate(-40px, -40px) rotateZ(-2deg); }
    75% { transform: translate(20px, -30px) rotateZ(1deg); }
    100% { transform: translate(0, 0) rotateZ(0deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Fallback for pages that might not have a specific background */
.custom-body-bg {
    background: #f8f9fa; /* A light grey background */
}

/* Navbar styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #667eea !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
}

/* Custom styles to override inline styles from HTML */
.custom-navbar-style {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.custom-brand-font {
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -1px;
}

.custom-call-btn-radius {
    border-radius: 25px;
}

.navbar-nav .nav-link:hover {
    color: #667eea !important;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)), url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
}

/* Features section */
.features {
    background: white;
    padding: 80px 0;
}

.features .container {
    max-width: 1200px;
}

.features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.features p {
    color: #666;
}

/* Card styles */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 2rem;
}

/* Form styles */
.form-control {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.btn {
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
}

.btn-success:hover {
    background: linear-gradient(45deg, #218838, #1aa085);
    transform: translateY(-2px);
}

/* Table styles */
.table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table thead th {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    font-weight: 600;
    padding: 15px;
}

.table tbody tr {
    transition: background-color 0.3s ease;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    /* Navbar adjustments */
    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .call-highlight {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-top: 0.5rem;
        margin-left: 0 !important;
    }

    /* Hero section */
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary, .btn-warning {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 44px;
        margin-bottom: 0.5rem;
    }

    /* Enhanced Hero adjustments */
    .hero-enhanced {
        padding: 80px 0;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .navbar-contact {
        display: none !important;
    }

    .brand-title {
        font-size: 1.1rem;
    }

    .brand-subtitle {
        font-size: 0.65rem;
    }

    /* Booking widget */
    .booking-widget {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .booking-widget h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .booking-widget .form-control {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .booking-widget .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .booking-widget .btn-success {
        min-height: 44px;
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }

    /* Features section */
    .features {
        padding: 60px 0;
    }

    .features .col-md-4 {
        margin-bottom: 2rem;
        text-align: center;
    }

    .features h3 {
        font-size: 1.2rem;
    }

    .features p {
        font-size: 0.9rem;
    }

    /* Cab rates section */
    .cab-rates {
        padding: 60px 0;
    }

    .cab-rates .card {
        margin-bottom: 1.5rem;
    }

    .cab-rates .card-img-top {
        height: 150px;
    }

    .cab-rates .card-body {
        padding: 1.5rem;
    }

    .cab-rates .card-title {
        font-size: 1.1rem;
    }

    .cab-rates .card-text {
        font-size: 0.85rem;
    }

    /* Cities served section */
    .cities-served {
        padding: 60px 0;
    }

    .cities-served h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .cities-served .card-body {
        padding: 1.5rem;
    }

    .cities-served h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .cities-served li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    /* Footer */
    footer {
        padding: 30px 0;
        font-size: 0.9rem;
    }

    /* Modal adjustments */
    .modal-dialog {
        margin: 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body h4 {
        font-size: 1.3rem;
    }

    .btn-success.btn-lg {
        min-height: 48px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    /* Extra small screens */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .booking-widget {
        padding: 1rem;
    }

    .booking-widget h3 {
        font-size: 1.1rem;
    }

    .features h3 {
        font-size: 1.1rem;
    }

    .cab-rates h2 {
        font-size: 1.6rem;
    }

    .cities-served h2 {
        font-size: 1.6rem;
    }

    .cities-served .row .col-6 {
        padding: 0 0.5rem;
    }

    .cities-served li {
        font-size: 0.8rem;
    }

    /* Ensure buttons are stacked and full width on very small screens */
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-primary, .btn-warning {
        width: 100%;
    }

    /* Navbar brand smaller */
    .navbar-brand {
        font-size: 1rem;
    }

    /* Call modal buttons */
    .modal-body .row .col-12 .btn {
        margin-bottom: 0.5rem;
    }
}

/* Call button highlights */
.call-highlight {
    animation: pulse 2s infinite;
    border: 2px solid #fff !important;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.call-highlight-body {
    animation: pulse 2s infinite;
    border: 3px solid #ffc107 !important;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.7);
    background: linear-gradient(45deg, #ffc107, #ffca2c) !important;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Cab rates section */
.cab-rates .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cab-rates .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cab-rates .card-img-top {
    transition: transform 0.3s ease;
}

.cab-rates .card:hover .card-img-top {
    transform: scale(1.05);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
}

/* Minimalistic WhatsApp Booking Widget Styles */
.booking-widget {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f1f3f4;
    max-width: 400px;
    margin: 0 auto;
}

.booking-widget h3 {
    color: #202124;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.booking-widget .form-control {
    border-radius: 8px;
    border: 1px solid #dadce0;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}

.booking-widget .form-control:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
    background-color: #ffffff;
    outline: none;
}

.booking-widget .form-control::placeholder {
    color: #5f6368;
    font-size: 0.95rem;
}

.booking-widget .form-label {
    font-weight: 500;
    color: #3c4043;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: block;
}

.booking-widget .row {
    margin-bottom: 0.75rem;
}

.booking-widget .row .col-md-6 {
    padding: 0 0.25rem;
}

.booking-widget .btn-success {
    background: #1a73e8;
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    color: white;
    margin-top: 0.5rem;
}

.booking-widget .btn-success:hover {
    background: #1557b0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Portfolio Section Styles */
.portfolio {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.08);
}

.portfolio-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.portfolio-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.portfolio-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-badge {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Customer Ratings Section */
.customer-ratings {
    padding: 80px 0;
    background: white;
}

.customer-ratings h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.rating-card {
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rating-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    background: white;
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.2rem;
}

.rating-number {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
}

.rating-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-style: italic;
}

.rating-author {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.rating-author strong {
    color: #333;
    font-weight: 600;
}

/* Responsive adjustments for portfolio and ratings */
@media (max-width: 768px) {
    .portfolio h2,
    .customer-ratings h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .portfolio-img {
        height: 200px;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    .portfolio-content h4 {
        font-size: 1.2rem;
    }

    .rating-card {
        padding: 1.5rem;
    }

    .rating-text {
        font-size: 0.9rem;
    }
}

/* Professional Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #1a2d4d 0%, #2d3748 50%, #1a2d4d 100%);
    color: #e0e0e0;
    padding: 0;
    margin-top: 80px;
    border-top: 3px solid linear-gradient(90deg, #667eea, #764ba2);
}

.footer-section .container {
    max-width: 1200px;
}

/* Footer Brand Section */
.footer-brand h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.5rem;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Footer Heading */
.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 5px;
    text-decoration: underline;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.contact-item p {
    margin: 0;
    color: #b0b0b0;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Footer Divider */
.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
}

/* Footer Bottom */
.footer-copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal li {
    margin: 0;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #667eea;
    text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0 0;
        margin-top: 60px;
    }

    .footer-section .row {
        padding-bottom: 2rem !important;
        padding-top: 2rem !important;
    }

    .footer-section .col-md-6,
    .footer-section .col-lg-3 {
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer-heading {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .footer-heading::after {
        width: 40px;
        margin: 0 auto;
        margin-top: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .social-links {
        margin-top: 1rem;
        justify-content: center;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0;
        display: block;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .contact-info {
        gap: 1.2rem;
        align-items: center;
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-icon {
        font-size: 1.8rem;
        min-width: auto;
    }

    .contact-item p,
    .contact-item a {
        text-align: center;
        font-size: 0.85rem;
    }

    .contact-label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .footer-divider {
        margin: 1.5rem 0;
    }

    .footer-bottom {
        padding: 2rem 0 !important;
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-copyright {
        text-align: center;
        font-size: 0.85rem;
    }

    .footer-legal {
        justify-content: center;
        gap: 1rem;
        padding: 0;
    }

    .footer-legal li {
        margin-bottom: 0;
        margin: 0 0.5rem;
    }

    .footer-legal a {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 30px 0 0 0;
        margin-top: 40px;
    }

    .footer-section .row {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important;
    }

    .footer-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-heading {
        font-size: 1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .footer-heading::after {
        width: 35px;
        height: 2px;
    }

    .footer-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .footer-links {
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .brand-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-item {
        gap: 0.4rem;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .contact-label {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }

    .contact-item a {
        font-size: 0.8rem;
    }

    .contact-item p {
        font-size: 0.8rem;
        margin: 0;
    }

    .footer-divider {
        margin: 1.2rem 0;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .footer-legal li {
        margin: 0;
    }

    .footer-legal a {
        font-size: 0.75rem;
    }
}


