/* ===================================
   Gokul Gagan - Custom Styles
   =================================== */

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* Page fade-in animation */
body {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Fix for fixed navbar - add padding to first content section */
body > section:first-of-type,
body > .container:first-of-type > section:first-of-type {
    margin-top: 0;
}

/* Ensure content sections have proper spacing from fixed navbar */
section:not(.simple-hero-section):not(.page-header) {
    scroll-margin-top: 100px;
}

/* Dynamic spacing for hero section to account for fixed navbar */
.simple-hero-section {
    transition: margin-top 0.3s ease;
}

/* Calculate navbar height dynamically and add gap */
body:has(.simple-hero-section) .simple-hero-section {
    margin-top: var(--hero-spacing, 110px);
}

/* Fallback for browsers that don't support :has() */
@supports not selector(:has(*)) {
    .simple-hero-section {
        margin-top: 110px; /* navbar height (~76px) + extra spacing (34px) */
    }
}

/* ===================================
   Navigation Bar
   =================================== */
#mainNavbar {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

#mainNavbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#mainNavbar.scrolled {
    background: rgba(30, 41, 59, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    color: #fff !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
    background: rgba(37, 99, 235, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

/* ===================================
   Simple Hero Section - Image Only
   =================================== */
.simple-hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    /* margin-top is set dynamically via JavaScript and CSS variables */
    padding-top: 0;
}

.simple-hero-section .carousel {
    height: 100%;
}

.simple-hero-section .carousel-inner {
    height: 100%;
}

.simple-hero-section .carousel-item {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.simple-hero-section .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.simple-hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.05);
}

/* Specific positioning for first image to show building top */
.simple-hero-section .carousel-item:first-child img,
.simple-hero-section .hero-image-first {
    object-position: center top;
}

.simple-hero-section .carousel-item.active img {
    transform: scale(1);
}

.simple-hero-section .carousel-control-prev,
.simple-hero-section .carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.simple-hero-section:hover .carousel-control-prev,
.simple-hero-section:hover .carousel-control-next {
    opacity: 1;
}

.simple-hero-section .carousel-control-prev {
    left: 2rem;
}

.simple-hero-section .carousel-control-next {
    right: 2rem;
}

.simple-hero-section .carousel-control-prev:hover,
.simple-hero-section .carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.simple-hero-section .carousel-control-prev:active,
.simple-hero-section .carousel-control-next:active {
    transform: translateY(-50%) scale(1.05);
}

.simple-hero-section .carousel-indicators {
    bottom: 2rem;
    z-index: 2;
}

.simple-hero-section .carousel-indicators {
    bottom: 2.5rem;
    z-index: 3;
}

.simple-hero-section .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin: 0 6px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.7;
}

.simple-hero-section .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    opacity: 1;
}

.simple-hero-section .carousel-indicators button.active {
    background-color: #fff;
    border-color: #fff;
    transform: scale(1.4);
    width: 18px;
    height: 18px;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

/* Background Carousel */
.hero-background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background-carousel .carousel-inner {
    height: 100%;
}

.hero-background-carousel .carousel-item {
    height: 100vh;
    position: relative;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: zoomIn 8s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.75) 0%, rgba(37, 99, 235, 0.6) 100%);
    z-index: 1;
}

/* Content Container */
.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Badge */
.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge-new .badge-icon {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-badge-new .badge-text {
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -1px;
}

.hero-title .title-main {
    display: block;
    position: relative;
    animation: fadeInUp 0.8s ease;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0.3rem;
    line-height: 1.1;
}

.hero-title .title-main .title-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
    position: relative;
    display: inline-block;
}

.hero-title .title-main .title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 4px;
    z-index: -1;
    opacity: 0.6;
}

.hero-title .title-main > span:not(.title-highlight) {
    color: var(--dark-color);
    font-weight: 700;
    opacity: 0.9;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-title .title-subtitle {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 0.3rem;
    min-height: 2.5rem;
    position: relative;
    letter-spacing: -0.5px;
    opacity: 0.9;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary-color);
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Description */
.hero-description-new {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    border: none;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: none;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}

.hero-buttons .btn-outline-primary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* Stats */
.hero-stats-new {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card {
    text-align: center;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero Slider Wrapper */
.hero-slider-wrapper {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    z-index: 1;
    pointer-events: none;
}

.hero-slider-wrapper .carousel {
    height: 100%;
}

.hero-slider-wrapper .carousel-inner {
    height: 100%;
}

.hero-slider-wrapper .carousel-item {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider-wrapper .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s ease;
    transform: scale(1.05);
}

.hero-slider-wrapper .carousel-item.active img {
    transform: scale(1);
}

.hero-slider-wrapper .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.image-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    z-index: 3;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.image-label:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.hero-slider-wrapper .carousel-indicators {
    bottom: 80px;
    z-index: 3;
}

.hero-slider-wrapper .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-slider-wrapper .carousel-indicators button.active {
    background-color: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.hero-slider-wrapper .carousel-control-prev,
.hero-slider-wrapper .carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    opacity: 0.95;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-slider-wrapper .carousel-control-prev {
    left: 2rem;
}

.hero-slider-wrapper .carousel-control-next {
    right: 2rem;
}

.hero-slider-wrapper .carousel-control-prev:hover,
.hero-slider-wrapper .carousel-control-next:hover {
    background-color: #fff;
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.hero-slider-wrapper .carousel-control-prev:active,
.hero-slider-wrapper .carousel-control-next:active {
    transform: translateY(-50%) scale(1.05);
}

.hero-slider-wrapper .carousel-control-prev-icon,
.hero-slider-wrapper .carousel-control-next-icon {
    filter: invert(1);
    opacity: 0.7;
}

/* Scroll Indicator */
.scroll-indicator-new {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Carousel Indicators */
.hero-carousel-indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel-indicators button.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   Contact Hero Section
   =================================== */
.contact-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #2563eb 100%);
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.contact-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 13s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.contact-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 90%;
}

.contact-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    flex: 1;
    min-width: 200px;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-content h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.contact-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: circleRotate 20s linear infinite;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

@keyframes circleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.circle-inner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: circleRotate 20s linear infinite reverse;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: floatIcon 6s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-icon.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon.icon-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.contact-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 1;
}

.contact-hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===================================
   Page Header
   =================================== */
/* About Content Section */
.about-content-section {
    padding-top: 120px !important;
    padding-bottom: 100px !important;
    margin-top: 0;
    min-height: auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 50%, #ffffff 100%);
}

.about-content-section .container {
    padding-top: 0;
    max-width: 1200px;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.about-image-wrapper:hover::before {
    opacity: 1;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image-wrapper:hover {
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.2);
    transform: translateY(-5px);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-text-content {
    padding-left: 2rem;
}

.about-story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 0;
}

.about-content-section .section-title {
    margin-bottom: 1.5rem;
}

.about-content-section .row {
    margin-bottom: 4rem;
}

.about-content-section .row:first-child {
    margin-top: 0;
    padding-top: 2rem;
}

.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920') center/cover;
    opacity: 0.12;
    animation: backgroundMove 25s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(30, 64, 175, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-header .breadcrumb {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff !important;
}

.breadcrumb-item.active {
    color: #fff;
}

/* ===================================
   Sections
   =================================== */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    animation: expandLine 0.8s ease-out;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* ===================================
   Feature Cards
   =================================== */
.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(12px);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.6;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
}

/* ===================================
   About Preview Section
   =================================== */
.about-preview-section {
    padding: 80px 0;
}

.about-preview-section img {
    transition: transform 0.3s ease;
}

.about-preview-section img:hover {
    transform: scale(1.05);
}

/* ===================================
   Redevelopment CTA
   =================================== */
.redevelopment-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.redevelopment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center/cover;
    opacity: 0.12;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.redevelopment-cta .container {
    position: relative;
    z-index: 2;
}

.redevelopment-cta .btn-light {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.redevelopment-cta .btn-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.redevelopment-cta .btn-light:hover::before {
    width: 300px;
    height: 300px;
}

.redevelopment-cta .btn-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #fff;
}

/* ===================================
   Value Cards
   =================================== */
.value-card {
    background: #fff;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ===================================
   Contact Cards
   =================================== */
.contact-card {
    background: #fff;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.contact-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-card a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border: none;
}

/* ===================================
   Login Pages
   =================================== */
.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.login-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.login-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3.2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
    }
}

.card:hover .login-icon {
    transform: scale(1.1) rotate(5deg);
}

.card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-body {
    background: #fff;
}

.form-control {
    border-radius: 12px;
    border: 2px solid var(--border-color);
    padding: 0.875rem 1.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #fff;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 0 4px 15px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
    background-color: #fff;
    outline: none;
}

.form-control:hover:not(:focus) {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.input-group-text {
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 12px 0 0 12px;
    transition: all 0.4s ease;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 12px;
    padding: 0.875rem 2.25rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline-light {
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ===================================
   Footer
   =================================== */
.footer-section {
    background: #0f172a !important;
    padding: 60px 0 30px;
    margin-top: auto;
    width: 100%;
}

.footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #fff;
    transform: translateX(5px);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Ensure footer stays at bottom */
html, body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body > main,
body > section:not(.simple-hero-section):not(.page-header) {
    flex: 1;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .hero-slider-section .carousel-caption h1 {
        font-size: 3rem;
    }

    .hero-slider-section .carousel-caption .lead {
        font-size: 1.15rem;
    }
}

@media (max-width: 992px) {
    .hero-title-new .title-gradient {
        font-size: 3.5rem;
    }

    .hero-title-new .title-subtitle-new {
        font-size: 1.5rem;
    }

    .hero-description-new {
        font-size: 1.1rem;
    }

    .hero-stats-new {
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem 2rem;
        min-width: 160px;
    }

    .stat-card .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .contact-hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .contact-hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .contact-hero-visual {
        height: 400px;
        margin-top: 3rem;
    }
    
    .contact-hero-circle {
        width: 250px;
        height: 250px;
    }
    
    .circle-inner {
        width: 160px;
        height: 160px;
        font-size: 3rem;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-hero-stats {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .simple-hero-section {
        height: 70vh;
        margin-top: var(--hero-spacing, 100px) !important;
    }

    .simple-hero-section .carousel-item {
        height: 70vh;
    }

    .simple-hero-section .carousel-control-prev,
    .simple-hero-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .simple-hero-section .carousel-control-prev {
        left: 1rem;
    }

    .simple-hero-section .carousel-control-next {
        right: 1rem;
    }

    .simple-hero-section .carousel-indicators {
        bottom: 1.5rem;
    }
    
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-section .row {
        margin-bottom: 2rem;
    }

    .dynamic-hero-section {
        min-height: auto;
    }

    .dynamic-hero-section::before,
    .dynamic-hero-section::after {
        display: none;
    }

    .hero-content-wrapper {
        padding: 50px 30px;
        text-align: center;
        background: rgba(255, 255, 255, 0.95);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .title-main {
        font-size: 2.8rem;
    }

    .hero-title .title-subtitle {
        font-size: 1.5rem;
        min-height: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding-left: 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }

    .hero-stats {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .stat-item {
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-slider-wrapper {
        height: 50vh;
        min-height: 400px;
    }

    .hero-slider-wrapper .carousel-item {
        height: 50vh;
        min-height: 400px;
    }

    .hero-slider-wrapper .carousel-control-prev,
    .hero-slider-wrapper .carousel-control-next {
        width: 44px;
        height: 44px;
    }

    .hero-slider-wrapper .carousel-control-prev {
        left: 1rem;
    }

    .hero-slider-wrapper .carousel-control-next {
        right: 1rem;
    }

    .image-label {
        bottom: 20px;
        font-size: 0.8rem;
        padding: 10px 22px;
    }

    .scroll-indicator {
        bottom: 20px;
        width: 36px;
        height: 36px;
    }

    .scroll-indicator i {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card,
    .value-card,
    .contact-card {
        margin-bottom: 2rem;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }

    .nav-link {
        margin: 0.25rem 0;
    }

    .about-content-section {
        padding-top: 110px !important;
        padding-bottom: 60px !important;
    }

    .about-text-content {
        padding-left: 0;
        padding-top: 1rem;
    }

    .about-content-section .row:first-child {
        margin-top: 0;
        padding-top: 1rem;
    }

    .page-header {
        padding: 80px 0 40px;
    }

    .about-preview-section,
    .redevelopment-cta {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .about-content-section {
        padding-top: 100px !important;
        padding-bottom: 50px !important;
    }

    .about-text-content {
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .about-story-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-content-section .row:first-child {
        margin-top: 0;
        padding-top: 0.5rem;
    }

    .about-image-wrapper {
        margin-bottom: 1.5rem;
    }

    .hero-content-wrapper {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title .title-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-slider-wrapper {
        height: 45vh;
        min-height: 350px;
    }

    .hero-slider-wrapper .carousel-item {
        height: 45vh;
        min-height: 350px;
    }

    .hero-slider-wrapper .carousel-control-prev,
    .hero-slider-wrapper .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .hero-slider-wrapper .carousel-control-prev {
        left: 0.5rem;
    }

    .hero-slider-wrapper .carousel-control-next {
        right: 0.5rem;
    }

    .hero-slider-wrapper .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }

    .hero-slider-section .carousel-caption .hero-buttons {
        margin-top: 1rem;
    }

    .hero-slider-section .carousel-caption .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        margin: 0.25rem;
    }

    .hero-slider-section .carousel-control-prev,
    .hero-slider-section .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .hero-slider-section .carousel-control-prev {
        left: 0.5rem;
    }

    .hero-slider-section .carousel-control-next {
        right: 0.5rem;
    }

    .hero-slider-section .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

@media (max-width: 400px) {
    .hero-slider-section {
        min-height: 50vh;
    }

    .hero-slider-section .carousel,
    .hero-slider-section .carousel-inner,
    .hero-slider-section .carousel-item {
        height: 50vh;
    }

    .hero-slider-section .carousel-caption h1 {
        font-size: 1.75rem;
    }

    .hero-slider-section .carousel-caption .lead {
        font-size: 0.9rem;
    }
}

    .section-title {
        font-size: 1.75rem;
    }

    .login-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

/* ===================================
   Utility Classes
   =================================== */
.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
    border-radius: 15px !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Stagger animation for cards */
.feature-card,
.value-card,
.contact-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

/* Loading Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

