/* ================================
   Haridwar Waterproofing - Professional CSS
   Theme: Dark Blue + Orange
   ================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* Color Variables - Enhanced */
:root {
    --dark-blue: #1a2a4a;
    --dark-blue-light: #2c3e6a;
    --dark-blue-lighter: #3d5a8a;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fb923c;
    --orange-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --blue-gradient: linear-gradient(135deg, #1a2a4a 0%, #2c3e6a 100%);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --card-bg: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.3);
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

/* Global Styles - Enhanced */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Background Colors */
.bg-dark-blue {
    background: var(--blue-gradient) !important;
}

.bg-orange {
    background: var(--orange-gradient) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(26, 42, 74, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Text Colors */
.text-dark-blue {
    color: var(--dark-blue) !important;
}

.text-orange {
    color: var(--orange) !important;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-orange {
    background: var(--orange-gradient);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: var(--white);
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 12px 28px;
}

.btn-outline-orange:hover {
    background: var(--orange-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn-dark-blue {
    background: var(--blue-gradient);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    box-shadow: 0 4px 15px rgba(26, 42, 74, 0.3);
}

.btn-dark-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 42, 74, 0.4);
    color: var(--white);
}

/* Top Bar - Enhanced */
.top-bar {
    font-size: 0.9rem;
    background: var(--dark-blue) !important;
    position: relative;
    z-index: 1030;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange-gradient);
}

.top-bar a {
    position: relative;
    transition: all var(--transition-base);
}

.top-bar a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width var(--transition-base);
}

.top-bar a:hover::after {
    width: 100%;
}

.top-bar a:hover {
    color: var(--orange) !important;
}

/* Navigation - Enhanced */
.navbar {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    padding: 8px 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--orange-gradient);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--orange) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: 12px;
    padding: 12px;
    margin-top: 10px;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--orange-gradient);
    color: var(--white);
    transform: translateX(5px);
}

/* Rain Effect */
.rain-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.rain-drop {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
    animation: rain-fall linear infinite;
    border-radius: 2px;
}

@keyframes rain-fall {
    0% {
        transform: translateY(-100px);
        opacity: 1;
    }
    100% {
        transform: translateY(600px);
        opacity: 0.3;
    }
}

/* Hero Section - Enhanced */
.hero-section {
    background: var(--blue-gradient);
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(249,115,22,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(26,42,74,0.3), transparent);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    font-weight: 400;
    max-width: 600px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all var(--transition-base);
}

.badge-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.badge-item i {
    color: var(--orange-light);
}

/* Section Styles - Enhanced */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--orange-gradient);
    border-radius: 2px;
}

.section-title h2 span {
    color: var(--orange);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Service Cards - Enhanced */
.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px auto 25px;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    transition: all var(--transition-base);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--orange);
    opacity: 0;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon::after {
    opacity: 0.5;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    padding: 0 25px 25px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Why Choose Us - Enhanced */
.why-choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding: 20px;
    border-radius: 15px;
    transition: all var(--transition-base);
}

.why-choose-item:hover {
    background: rgba(249, 115, 22, 0.05);
    transform: translateX(10px);
}

.why-choose-icon {
    width: 65px;
    height: 65px;
    background: var(--orange-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transition: all var(--transition-base);
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

.why-choose-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-choose-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Gallery - Enhanced */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item:hover::after {
    border-color: var(--orange);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 42, 74, 0.9), rgba(26, 42, 74, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
}

.gallery-overlay i {
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Testimonials - Enhanced */
.testimonial-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card .stars {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-card small {
    color: var(--orange);
    font-weight: 500;
}

/* FAQ Section - Enhanced */
.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: all var(--transition-base);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-blue);
    background: var(--white);
    padding: 24px 28px;
    font-size: 1.1rem;
    border-radius: 16px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--orange-gradient);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: all var(--transition-base);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 24px 28px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Contact Form - Enhanced */
.contact-form .form-control {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--white);
}

.contact-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #9ca3af;
}

.contact-form select.form-control {
    appearance: auto;
    cursor: pointer;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 12px;
    transition: all var(--transition-base);
}

.contact-info-item:hover {
    background: rgba(249, 115, 22, 0.05);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-right: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transition: all var(--transition-base);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

/* Logo Styling */
.logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

/* Responsive logo */
@media (max-width: 991px) {
    .logo-img {
        max-height: 35px;
    }
}

@media (max-width: 575px) {
    .logo-img {
        max-height: 30px;
    }
}

/* Blog Cards - Enhanced */
.blog-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-card .content {
    padding: 28px;
}

.blog-card .date {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin: 12px 0 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.blog-card:hover h3 {
    color: var(--orange);
}

.blog-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.blog-card a {
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-card a i {
    transition: transform var(--transition-fast);
}

.blog-card:hover a i {
    transform: translateX(5px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    background: none;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: var(--orange);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section .btn-white {
    background: var(--white);
    color: var(--dark-blue);
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 5px;
    margin-top: 20px;
}

.cta-section .btn-white:hover {
    background: var(--dark-blue);
    color: var(--white);
}

/* Emergency Banner */
.emergency-banner {
    background: #dc2626;
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
}

.emergency-banner i {
    margin-right: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* Mobile Call Button */
.call-now-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Footer Links */
footer a:hover {
    color: var(--orange) !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin-top: 15px;
    }
    
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.border-left-orange {
    border-left: 4px solid var(--orange);
    padding-left: 20px;
}
