/* ============================================
   HiTechSkyEnergy - Custom Stylesheet
   Modern Color Palette & Typography
   ============================================ */

/* Color Palette - Modern & Professional */
:root {
    /* Primary Colors - Green theme for renewable energy */
    --primary-color: #61C112;        /* Kelly Green - main brand color */
    --primary-dark: #4FA00E;         /* Darker green for hover states */
    --primary-light: #7FD634;        /* Lighter green for accents */
    
    /* Secondary Colors */
    --secondary-color: #2B8DD2;      /* Sky Blue - complements green */
    --secondary-dark: #1E6FA8;       /* Darker blue */
    --secondary-light: #5BA8E5;      /* Lighter blue */
    
    /* Neutral Colors */
    --dark-text: #1A1A1A;            /* Main text color */
    --light-text: #666666;           /* Secondary text */
    --lighter-text: rgba(0, 0, 0, 0.4); /* Tertiary text */
    --bg-light: #F5F5F5;             /* Light background */
    --bg-white: #FFFFFF;             /* White background */
    
    /* Accent Colors */
    --accent-orange: #FF6B35;        /* For call-to-action highlights */
    --success-color: #28A745;        /* Success messages */
    --warning-color: #FFC107;        /* Warning messages */
    
    /* Typography */
    --font-primary: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    --font-heading: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 15px;
    
    /* Border Radius */
    --border-radius: 10px;
    --border-radius-lg: 15px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Navigation Bar */
.navbar-custom {
    background-color: var(--bg-white) !important;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

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

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler-icon i {
    color: var(--dark-text);
    font-size: 1.5rem;
}

/* Hero Section / Carousel */
.hero-carousel {
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel {
    height: 100%;
}

.hero-carousel .carousel-inner {
    height: 100%;
    position: relative;
    width: 100%;
}

.hero-carousel.carousel-fade .carousel-inner {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 100vh !important;
    min-height: 600px !important;
    max-height: 800px !important;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    transition: filter 0.6s ease-in-out;
}

/* Fade transition for carousel - Bootstrap 5 fade mode */
.hero-carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    height: 100%;
}

.hero-carousel.carousel-fade .carousel-item:first-child {
    position: relative;
}

.hero-carousel.carousel-fade .carousel-item.active,
.hero-carousel.carousel-fade .carousel-item-next.carousel-item-start,
.hero-carousel.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    z-index: 1;
}

.hero-carousel.carousel-fade .carousel-item.active:first-child {
    position: relative;
    z-index: 1;
}

.hero-carousel.carousel-fade .active.carousel-item-start,
.hero-carousel.carousel-fade .active.carousel-item-end {
    opacity: 0;
    z-index: 0;
}

.hero-carousel.carousel-fade .carousel-item-next,
.hero-carousel.carousel-fade .carousel-item-prev,
.hero-carousel.carousel-fade .carousel-item.active,
.hero-carousel.carousel-fade .carousel-item-start,
.hero-carousel.carousel-fade .carousel-item-end {
    transform: translateX(0) !important;
}

.carousel-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter:  saturate(150%);
    transition: filter 0.6s ease-in-out;
}

/* Fallback for carousel items with background images */
.hero-carousel .carousel-item[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.carousel-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.15) 0%, 
        rgba(26, 26, 26, 0.08) 50%,
        rgba(0, 0, 0, 0.12) 100%
    );
    z-index: 2;
    opacity: 0.4;
}

/* Add a subtle vignette effect */
.carousel-image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    bottom: auto;
    z-index: 3;
    padding: 20px;
    background: transparent;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Ensure all carousel items have consistent caption positioning */
.hero-carousel .carousel-item .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.carousel-content-wrapper {
    max-width: 850px;
    width: calc(100% - 40px);
    margin: 0 auto;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(0px) saturate(130%);
    -webkit-backdrop-filter: blur(0px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 0 40px rgba(97, 193, 18, 0.05);
    position: relative;
    display: block;
    box-sizing: border-box;
}

.carousel-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(97, 193, 18, 0.4),
        0 0 60px rgba(97, 193, 18, 0.2);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.carousel-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 25px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(97, 193, 18, 0.6);
    animation: expandWidth 1s ease-out 0.5s both;
}

.carousel-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.9;
    animation: fadeInUp 1s ease-out;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.carousel-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.carousel-buttons .btn {
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.carousel-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.carousel-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.carousel-indicators {
    z-index: 4;
    bottom: 50px;
    margin-bottom: 0;
    gap: 12px;
}

.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);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    opacity: 1;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 10px;
    opacity: 1;
    box-shadow: 0 0 15px rgba(97, 193, 18, 0.6);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 4;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 100%
    );
    border-radius: 50%;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(
        135deg,
        rgba(97, 193, 18, 0.9) 0%,
        rgba(97, 193, 18, 0.8) 100%
    );
    border-color: rgba(97, 193, 18, 0.5);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 
        0 12px 24px rgba(97, 193, 18, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

.carousel-control-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-icon-wrapper,
.carousel-control-next:hover .carousel-control-icon-wrapper {
    transform: scale(1.2);
    color: white;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* Cards */
.card-custom {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-custom img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-custom:hover img {
    transform: scale(1.05);
}

.card-body-custom {
    padding: 25px;
}

.card-title-custom {
    color: var(--dark-text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-text-custom {
    color: var(--light-text);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--dark-text);
    font-weight: 600;
}

/* Footer */
.footer-custom {
    background: linear-gradient(135deg, #1A1A1A 0%, #2B2B2B 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-custom h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-custom p,
.footer-custom a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-custom a:hover {
    color: var(--primary-color);
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.social-links li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links li a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-control-custom {
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(97, 193, 18, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

/* Google Map */
.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Gallery/Projects Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

/* Category Sections */
.category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

/* Services Page Hero Banner */
.services-hero-banner {
    background-image: url('https://www.hitechskyenergy.com/serivesBg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 180px 0 150px; /* Increased height */
    text-align: center;
    margin-top: 0;
    position: relative;
    min-height: 600px; /* Minimum height for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-banner .hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.services-hero-banner .hero-content {
    position: relative;
    z-index: 2;
}

.services-hero-banner .hero-title {
    color: white;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Degular Display', 'Roboto', sans-serif;
}

.services-hero-banner .hero-subtitle {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Degular Display', 'Roboto', sans-serif;
}

.services-hero-banner .hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Futura', 'Roboto', sans-serif;
}

/* Contact Page Hero Banner */
.contact-hero-banner {
    background-image: url('https://www.hitechskyenergy.com/contactbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 180px 0 150px; /* Increased height */
    text-align: center;
    margin-top: 0;
    position: relative;
    min-height: 600px; /* Minimum height for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-banner .hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-hero-banner .hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-banner .hero-title {
    color: white;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Degular Display', 'Roboto', sans-serif;
}

.contact-hero-banner .hero-subtitle {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Degular Display', 'Roboto', sans-serif;
}

.contact-hero-banner .hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Futura', 'Roboto', sans-serif;
}

/* About Us Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 100px; /* Extra top padding for fixed navbar */
    text-align: center;
    margin-top: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1,
.about-hero .hero-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-subtitle {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-hero p,
.about-hero .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-color);
}

.team-member h4 {
    color: var(--dark-text);
    margin-bottom: 10px;
}

.team-member p {
    color: var(--light-text);
    font-style: italic;
}

/* Services Page - Enhanced Service Cards */
.service-card-enhanced {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(26, 26, 26, 0.25);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.35);
}

.service-icon-wrapper {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto;
}

.service-badge {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0;
    color: rgba(0, 0, 0, 0.4);
    font-family: 'Futura', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-title {
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0.8rem 0 0;
    color: rgb(0, 0, 0);
    font-family: 'Degular Display', 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
    min-height: 3.4rem;
    margin-bottom: 0.75rem;
}

.service-description {
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0.75rem 0 0;
    color: rgba(0, 0, 0, 0.4);
    font-family: 'Futura', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: normal;
    min-height: 7rem;
    margin-bottom: 1rem;
}

.service-image-wrapper {
    width: 100%;
    margin-top: 1rem;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-enhanced:hover .service-image {
    transform: scale(1.05);
}

/* Service Category Sections */
.service-category-section {
    margin-bottom: 80px;
}

.service-category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.category-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.category-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto;
    border-radius: 2px;
}

/* Premium Service Cards */
.service-card-premium {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(97, 193, 18, 0.1);
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

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

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(97, 193, 18, 0.2);
    border-color: var(--primary-color);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(97, 193, 18, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card-premium:hover .service-card-overlay {
    opacity: 1;
}

.service-card-premium .service-icon-wrapper {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.05) 0%, transparent 100%);
    position: relative;
    z-index: 1;
}

.service-icon-fa {
    font-size: 4rem;
    color: var(--primary-color);
    margin: 0 auto;
    display: block;
}

.service-badge-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
}

.badge-text {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.service-title-premium {
    padding: 0 2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.service-description-premium {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.service-features {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(97, 193, 18, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag i {
    font-size: 0.75rem;
}

.service-card-premium:hover .feature-tag {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.service-card-premium .service-image-wrapper {
    width: 100%;
    margin-top: auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-card-premium .service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-premium:hover .service-image {
    transform: scale(1.1);
}

.service-card-footer {
    padding: 1.5rem 2rem;
    background: rgba(97, 193, 18, 0.05);
    border-top: 1px solid rgba(97, 193, 18, 0.1);
    position: relative;
    z-index: 1;
}

.service-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-link-btn:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.service-link-btn i {
    transition: transform 0.3s ease;
}

.service-link-btn:hover i {
    transform: translateX(5px);
}

/* Service Team Cards */
.service-team-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(97, 193, 18, 0.15);
    border-color: var(--primary-color);
}

.team-icon-wrapper {
    margin-bottom: 1.5rem;
}

.team-icon {
    font-size: 4rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-team-card:hover .team-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

.team-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.team-description {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.team-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.team-features li i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.service-team-card:hover .team-features li {
    padding-left: 5px;
    color: var(--dark-text);
}

/* Additional Service Cards */
.additional-service-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(97, 193, 18, 0.1);
    position: relative;
    overflow: hidden;
}

.additional-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(97, 193, 18, 0.1), transparent);
    transition: left 0.5s ease;
}

.additional-service-card:hover::before {
    left: 100%;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(97, 193, 18, 0.15);
    border-color: var(--primary-color);
}

.additional-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.1), rgba(97, 193, 18, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.additional-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.additional-service-card:hover .additional-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1) rotate(5deg);
}

.additional-service-card:hover .additional-icon i {
    color: white;
    transform: scale(1.1);
}

.additional-service-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.additional-service-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Styles */
/* Contact Info Section */
.contact-info-section {
    padding: 80px 0 60px;
}

.contact-info-section .section-title {
    margin-bottom: 50px;
}

.contact-info-section .row.g-4 {
    margin-top: 2rem;
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(97, 193, 18, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

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

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(97, 193, 18, 0.2);
    border-color: var(--primary-color);
}

.contact-card-image-wrapper {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.05) 0%, transparent 100%);
    position: relative;
}

.contact-card-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-card-image {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-content {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.contact-card-text {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    margin-top: auto;
    align-self: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.contact-card-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(97, 193, 18, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.03) 0%, rgba(97, 193, 18, 0.01) 100%);
    padding: 60px 0 80px;
}

.contact-form-section .row {
    align-items: stretch;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 3rem;
    padding-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(97, 193, 18, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    padding-top: 0;
    margin-top: 0;
    border-bottom: 2px solid rgba(97, 193, 18, 0.1);
    flex-shrink: 0;
}

.form-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    margin: 0;
}

.contact-form-enhanced {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group-enhanced {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.form-group-enhanced:last-child {
    margin-bottom: 0;
}

.form-submit-group {
    margin-top: 0.5rem;
    margin-bottom: 0 !important;
}

.form-label-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label-enhanced i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-control-enhanced {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid rgba(97, 193, 18, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--dark-text);
}

.form-control-enhanced:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(97, 193, 18, 0.1);
    background: var(--bg-white);
}

.form-control-enhanced.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4M6 8.4V6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.form-control-enhanced.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control-enhanced::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

textarea.form-control-enhanced {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-check-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0.5rem;
}

.form-check-input-enhanced {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-check-label-enhanced {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.5;
    cursor: pointer;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.submit-btn-enhanced {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 0;
    margin-bottom: 0;
    flex-shrink: 0;
}

.submit-btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(97, 193, 18, 0.3);
}

.form-message {
    padding: 0;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    flex-shrink: 0;
    margin-top: 1rem;
    min-height: 0;
}

.form-message:not(:empty) {
    padding: 12px 20px;
}

.form-message.success {
    background: rgba(97, 193, 18, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Map Section */
.map-section-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-white);
    border-radius: 15px;
    padding: 3rem;
    padding-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(97, 193, 18, 0.1);
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(97, 193, 18, 0.1);
    flex-shrink: 0;
    padding-top: 0;
    margin-top: 0;
}

.form-header,
.map-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.form-icon,
.map-icon {
    margin-bottom: 1rem;
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    display: block;
}

.map-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.map-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    margin: 0;
}

.map-container-enhanced {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(97, 193, 18, 0.1);
    height: 400px;
    min-height: 400px;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.map-container-enhanced iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.office-details-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(97, 193, 18, 0.1);
    margin-top: 1.5rem;
    flex-shrink: 0;
    width: 100%;
}

.office-details-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-details-title i {
    color: var(--primary-color);
}

.office-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(97, 193, 18, 0.1);
}

.office-details-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.office-details-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.office-details-list li span {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.office-details-list li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.office-details-list li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Contact Benefits Section */
.contact-benefits-section {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

.contact-benefits-section .row {
    align-items: stretch;
    margin: 0;
}

.benefits-card,
.get-started-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(97, 193, 18, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.benefits-card:hover,
.get-started-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(97, 193, 18, 0.15);
    border-color: var(--primary-color);
}

.benefits-header,
.get-started-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(97, 193, 18, 0.1);
    flex-shrink: 0;
}

.benefits-icon,
.get-started-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.benefits-title,
.get-started-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(97, 193, 18, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(97, 193, 18, 0.1);
    transform: translateX(5px);
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefits-list li div {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
}

.get-started-text {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.get-started-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.get-started-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.get-started-list li:hover {
    padding-left: 10px;
    background: rgba(97, 193, 18, 0.05);
    border-radius: 8px;
}

.get-started-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.get-started-list li span {
    color: var(--light-text);
    font-size: 1rem;
}

/* Projects Page Styles */
/* Projects Hero Banner */
.projects-hero-banner {
    background-image: url('https://www.hitechskyenergy.com/projectbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 180px 0 150px;
    text-align: center;
    margin-top: 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-hero-banner .hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.projects-hero-banner .hero-content {
    position: relative;
    z-index: 2;
}

.projects-hero-banner .hero-title {
    color: white;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Degular Display', 'Roboto', sans-serif;
}

.projects-hero-banner .hero-subtitle {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Degular Display', 'Roboto', sans-serif;
}

.projects-hero-banner .hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Futura', 'Roboto', sans-serif;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
}

/* Project Cards */
.project-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(97, 193, 18, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

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

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(97, 193, 18, 0.2);
    border-color: var(--primary-color);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--bg-light);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-capacity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(97, 193, 18, 0.3);
}

.project-capacity i {
    font-size: 1.1rem;
}

.project-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-description {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(97, 193, 18, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-card:hover .project-tag {
    background: rgba(97, 193, 18, 0.15);
    transform: translateY(-2px);
}

.project-tag i {
    font-size: 0.8rem;
}

/* Project Stats Section */
.project-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.03) 0%, rgba(97, 193, 18, 0.01) 100%);
}

.project-stat-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(97, 193, 18, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.project-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(97, 193, 18, 0.15);
    border-color: var(--primary-color);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.1) 0%, rgba(97, 193, 18, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.project-stat-card:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1) rotate(5deg);
}

.stat-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.project-stat-card:hover .stat-icon-wrapper i {
    color: white;
}

.project-stat-card .stat-number-enhanced {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Roboto', sans-serif;
}

.project-stat-card .stat-label {
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* About Page Styles */
/* About Hero Banner */
/* Stats Section for About Page - Light Background */
.about-stats-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.about-stats-section::before {
    display: none;
}

.about-stats-section .section-title h2 {
    color: var(--dark-text);
}

.about-stats-section .stat-card-enhanced {
    background: var(--bg-white);
    border: 1px solid rgba(97, 193, 18, 0.1);
}

.about-stats-section .stat-icon-wrapper {
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.1) 0%, rgba(97, 193, 18, 0.05) 100%);
}

.about-stats-section .stat-icon-wrapper i {
    color: var(--primary-color);
}

.about-stats-section .stat-card-enhanced:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.about-stats-section .stat-card-enhanced:hover .stat-icon-wrapper i {
    color: white;
}

.about-stats-section .stat-number-enhanced {
    color: var(--primary-color);
}

.about-stats-section .stat-label-enhanced {
    color: var(--dark-text);
}

.about-stats-section .stat-description {
    color: var(--light-text);
}

.about-hero-banner {
    background-image: url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 180px 0 150px;
    text-align: center;
    margin-top: 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-banner .hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-hero-banner .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-banner .hero-title {
    color: white;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Degular Display', 'Roboto', sans-serif;
}

.about-hero-banner .hero-subtitle {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Degular Display', 'Roboto', sans-serif;
}

.about-hero-banner .hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Futura', 'Roboto', sans-serif;
}

/* About History Section */
.about-history-section {
    padding: 80px 0;
}

.history-content-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(97, 193, 18, 0.1);
    height: 100%;
}

.history-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.history-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.history-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.history-text {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.history-highlights {
    margin-top: 2rem;
}

.history-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(97, 193, 18, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.history-highlight-item:hover {
    background: rgba(97, 193, 18, 0.1);
    transform: translateX(5px);
}

.history-highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.history-highlight-item span {
    color: var(--light-text);
    font-size: 1rem;
}

.history-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    min-height: 400px;
}

.history-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.history-image-wrapper:hover .history-image {
    transform: scale(1.05);
}

.history-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.history-image-wrapper:hover .history-image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1rem;
    margin: 0;
}

/* History Timeline */
.history-timeline {
    position: relative;
    padding: 2rem 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(97, 193, 18, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    border: 1px solid rgba(97, 193, 18, 0.1);
}

@media (min-width: 992px) {
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: right;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Vision Mission Section Enhanced */
.vision-mission-section-enhanced {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.03) 0%, rgba(97, 193, 18, 0.01) 100%);
}

.vision-mission-section-enhanced .row {
    align-items: flex-start !important;
}

.mission-vision-card-enhanced {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 3rem;
    padding-top: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(97, 193, 18, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.mission-vision-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
}

.mission-vision-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(97, 193, 18, 0.2);
}

.card-icon-header {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.1) 0%, rgba(97, 193, 18, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mission-vision-card-enhanced .card-icon-header {
    margin-top: 0;
    margin-bottom: 2rem;
}

.mission-vision-card-enhanced:hover .card-icon-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1) rotate(5deg);
}

.card-icon-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mission-vision-card-enhanced:hover .card-icon-header i {
    color: white;
}

.mission-vision-card-enhanced h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.mission-text {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
    flex-shrink: 0;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.card-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(97, 193, 18, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card-feature-item:hover {
    background: rgba(97, 193, 18, 0.1);
    transform: translateX(5px);
}

.card-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.card-feature-item span {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Values Section Enhanced */
.values-section-enhanced {
    padding: 80px 0;
}

.value-card-enhanced {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(97, 193, 18, 0.1);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.value-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(97, 193, 18, 0.2);
    border-color: var(--primary-color);
}

.value-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.1) 0%, rgba(97, 193, 18, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card-enhanced:hover .value-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1) rotate(5deg);
}

.value-icon-wrapper i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card-enhanced:hover .value-icon-wrapper i {
    color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Founder Section Enhanced */
.founder-section-enhanced {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(97, 193, 18, 0.03) 0%, rgba(97, 193, 18, 0.01) 100%);
}

.founder-card-enhanced {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(97, 193, 18, 0.1);
    position: relative;
    overflow: hidden;
}

.founder-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.founder-image-wrapper-enhanced {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    height: 650px;
    min-height: 650px;
    background: #f5f5f5;
}

.founder-image-wrapper-enhanced .founder-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center 5%;
    transition: transform 0.5s ease;
    display: block;
}

.founder-image-wrapper:hover .founder-image,
.founder-image-wrapper-enhanced:hover .founder-image {
    transform: scale(1.05);
}

.founder-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(97, 193, 18, 0.3);
}

.founder-image-badge i {
    font-size: 1.5rem;
    color: white;
}

.founder-content {
    padding-left: 2rem;
}

@media (max-width: 991px) {
    .founder-content {
        padding-left: 0;
        padding-top: 2rem;
    }
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.founder-quote {
    background: rgba(97, 193, 18, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
}

.founder-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 15px;
}

.founder-quote p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    padding-left: 2rem;
}

.founder-bio p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: rgba(97, 193, 18, 0.05);
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(97, 193, 18, 0.1);
    transform: translateY(-3px);
}

.achievement-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.achievement-item div {
    display: flex;
    flex-direction: column;
}

.achievement-item strong {
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.achievement-item span {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Team Section Enhanced */
.team-section-enhanced {
    padding: 80px 0;
}

.team-member-card-enhanced {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(97, 193, 18, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-member-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.team-member-card-enhanced:hover::before {
    transform: scaleX(1);
}

.team-member-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(97, 193, 18, 0.2);
    border-color: var(--primary-color);
}

.team-member-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--bg-light);
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card-enhanced:hover .team-member-image {
    transform: scale(1.1);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member-card-enhanced:hover .team-member-overlay {
    opacity: 1;
}

.team-member-social {
    display: flex;
    gap: 1rem;
}

.team-member-social a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-member-social a:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.team-member-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-description {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.team-member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.skill-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(97, 193, 18, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.team-member-card-enhanced:hover .skill-tag {
    background: rgba(97, 193, 18, 0.15);
    transform: translateY(-2px);
}

/* Mission & Vision Cards */
.mission-vision-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    height: 100%;
    border-left: 5px solid var(--primary-color);
}

.mission-vision-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Sticky Footer */
html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

main {
    flex: 1 0 auto;
    width: 100%;
    position: relative;
}

footer {
    flex-shrink: 0;
    width: 100%;
    position: relative;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
        max-height: none;
    }
    
    .hero-carousel .carousel-item {
        height: 70vh !important;
        min-height: 500px !important;
        max-height: none !important;
    }
    
    .hero-carousel .carousel-item.active {
        height: 70vh !important;
        min-height: 500px !important;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-text {
        font-size: 1rem;
    }
    
    .carousel-content-wrapper {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-icon-wrapper {
        font-size: 1.2rem;
    }
    
    .carousel-control-prev {
        left: 20px;
    }
    
    .carousel-control-next {
        right: 20px;
    }
    
    .carousel-indicators {
        bottom: 30px;
    }
    
    .carousel-content-wrapper {
        padding: 40px 30px;
        border-radius: 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-number-enhanced {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content-enhanced {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .vision-image-wrapper,
    .mission-image-wrapper {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .founder-card {
        padding: 30px 20px;
    }
    
    .founder-achievements {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-custom-enhanced {
        padding: 50px 0 20px;
    }
    
    .stats-section-enhanced {
        padding: 50px 0;
    }
    
    .section-title-white h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px;
    }
    
    .hero-carousel {
        height: 60vh !important;
        min-height: 400px !important;
        max-height: none !important;
    }
    
    .hero-carousel .carousel-item {
        height: 60vh !important;
        min-height: 400px !important;
        max-height: none !important;
    }
    
    .hero-carousel .carousel-item.active {
        height: 60vh !important;
        min-height: 400px !important;
    }
    
    .carousel-caption {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        bottom: auto !important;
        padding: 0 !important;
    }
    
    .carousel-content-wrapper {
        padding: 30px 20px;
        max-width: 95%;
        border-radius: 15px;
    }
    
    .carousel-content-wrapper::after {
        border-radius: 15px;
    }
    
    .carousel-title {
        font-size: 1.5rem;
    }
    
    .carousel-title::after {
        width: 50px;
        height: 3px;
        margin: 15px auto 0;
    }
    
    .carousel-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .carousel-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .carousel-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-icon-wrapper {
        font-size: 1.1rem;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 25px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicators button.active {
        width: 30px;
    }
    
    .footer-custom-enhanced {
        padding: 50px 0 20px;
        overflow: visible !important;
    }
    
    .footer-custom-enhanced .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-custom {
        padding: 40px 0 15px;
    }
}

/* Enhanced About Section */
.about-section-enhanced {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.about-main-image:hover {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.about-badge i {
    font-size: 1.2rem;
}

.about-content-enhanced {
    padding-left: 30px;
}

.about-main-title {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-features {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Enhanced Stats Section */
.stats-section-enhanced {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.section-title-white {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-title-white h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title-white p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.stat-card-enhanced {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
}

.stat-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.stat-content {
    position: relative;
}

.stat-number-enhanced {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    line-height: 1;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-left: 5px;
}

.stat-label-enhanced {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-top: 15px;
    margin-bottom: 10px;
}

.stat-description {
    color: var(--light-text);
    font-size: 0.95rem;
    margin: 0;
}

/* Vision & Mission Enhanced */
.vision-mission-section {
    background: #f8f9fa;
}

.mission-vision-card-enhanced {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    border-top: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.mission-vision-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon-header {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.mission-vision-card-enhanced h3 {
    color: var(--dark-text);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mission-vision-card-enhanced p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 25px;
}

.card-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.card-feature-item i {
    font-size: 1.1rem;
}

.vision-image-wrapper,
.mission-image-wrapper {
    padding: 0 20px;
}

/* Ensure equal spacing for vision and mission sections */
.vision-mission-section .row {
    margin-bottom: 60px;
}

.vision-mission-section .row:last-child {
    margin-bottom: 0;
}

.vision-mission-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.vision-mission-image:hover {
    transform: scale(1.05);
}

/* Enhanced Founder Section */
.founder-section-enhanced {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.founder-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.founder-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 10px;
    background: transparent;
}

.founder-image-wrapper:not(.founder-image-wrapper-enhanced) .founder-image {
    width: 100%;
    max-width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 8%;
    border: 5px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    display: block;
}

.founder-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 3px solid white;
}

.founder-name {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.founder-role {
    font-size: 1.1rem;
    font-weight: 600;
}

.founder-quote {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.founder-title {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.4;
    font-style: italic;
}

.founder-description {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.founder-achievements {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-text);
}

.achievement-item i {
    font-size: 1.3rem;
}

/* Enhanced CTA Section */
.cta-section-enhanced {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 0;
}

.cta-section-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.cta-feature i {
    font-size: 1.3rem;
}

/* Enhanced Footer */
.footer-custom-enhanced {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 30px;
    margin-top: 0;
    position: relative;
    overflow: visible;
    clear: both;
    width: 100%;
    z-index: 10;
    min-height: auto;
}

.footer-custom-enhanced .container {
    position: relative;
    z-index: 11;
}

.footer-custom-enhanced .row {
    position: relative;
    z-index: 11;
    margin-left: 0;
    margin-right: 0;
}

.footer-custom-enhanced .row > [class*="col-"] {
    position: relative;
    z-index: 12;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(97,193,18,0.1)"/></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
}

.footer-brand {
    position: relative;
    z-index: 12;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links-enhanced {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
    margin: 0;
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    color: white;
}

.social-link.facebook:hover {
    background: #3b5998;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube:hover {
    background: #ff0000;
}

.footer-heading {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 12;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 12;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.8rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 12;
}

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 12;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours .day {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-hours .time {
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter {
    position: relative;
    z-index: 12;
}

.footer-newsletter h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 10px 20px;
    border-radius: 5px;
}

.footer-bottom-enhanced {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 12;
    width: 100%;
}

.footer-bottom-enhanced p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

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

.shadow-custom {
    box-shadow: var(--shadow-md) !important;
}

.mt-custom {
    margin-top: 60px;
}

.mb-custom {
    margin-bottom: 60px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Styles for Services Page */
@media (min-width: 1200px) {
    .services-hero-banner {
        min-height: 700px;
        padding: 200px 0 180px;
    }
}

@media (min-width: 992px) {
    .services-hero-banner {
        min-height: 650px;
        padding: 180px 0 160px;
    }
}

@media (max-width: 991px) {
    .services-hero-banner {
        min-height: 500px;
        padding: 150px 0 120px;
    }
    
    .services-hero-banner .hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-banner .hero-subtitle {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero-banner {
        min-height: 400px;
        padding: 120px 0 100px;
    }
    
    .about-hero h1,
    .about-hero .hero-title,
    .services-hero-banner .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle,
    .services-hero-banner .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .about-hero p,
    .about-hero .hero-description,
    .services-hero-banner .hero-description {
        font-size: 1rem;
    }
    
    .service-category-section {
        margin-bottom: 60px;
    }
    
    .category-header {
        margin-bottom: 30px;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .service-card-premium .service-icon-wrapper {
        padding: 2rem 1.5rem 1rem;
    }
    
    .service-title-premium {
        padding: 0 1.5rem;
        font-size: 1.4rem;
    }
    
    .service-description-premium {
        padding: 0 1.5rem;
        font-size: 0.95rem;
    }
    
    .service-features {
        padding: 0 1.5rem;
    }
    
    .service-card-footer {
        padding: 1.25rem 1.5rem;
    }
    
    .service-card-premium .service-image {
        height: 180px;
    }
    
    .service-team-card {
        padding: 2rem 1.5rem;
    }
    
    .team-icon {
        font-size: 3.5rem;
    }
    
    .additional-service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .additional-icon {
        width: 60px;
        height: 60px;
    }
    
    .additional-icon i {
        font-size: 1.75rem;
    }
}

/* Contact Page Responsive */
@media (min-width: 1200px) {
    .contact-hero-banner {
        min-height: 700px;
        padding: 200px 0 180px;
    }
}

@media (min-width: 992px) {
    .contact-hero-banner {
        min-height: 650px;
        padding: 180px 0 160px;
    }
}

@media (max-width: 991px) {
    .contact-hero-banner {
        min-height: 500px;
        padding: 150px 0 120px;
    }
    
    .contact-hero-banner .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-banner .hero-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-banner {
        min-height: 400px;
        padding: 120px 0 100px;
    }
    
    .contact-hero-banner .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-banner .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper,
    .map-section-wrapper {
        padding: 2rem 1.5rem;
        padding-top: 2rem !important;
    }
    
    .form-title,
    .map-title {
        font-size: 1.5rem;
    }
    
    .form-icon,
    .map-icon {
        font-size: 2.5rem;
        margin-top: 0 !important;
    }
    
    .form-header,
    .map-header {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .contact-card-image-wrapper {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .contact-card-content {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    
    .map-container-enhanced {
        height: 350px;
        min-height: 350px;
    }
    
    .office-details-card {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .contact-form-section .row {
        align-items: flex-start;
    }
    
    .contact-benefits-section {
        padding: 60px 0;
    }
    
    .benefits-card,
    .get-started-card {
        padding: 2rem 1.5rem;
    }
    
    /* Projects Page Responsive - Tablet */
    .projects-hero-banner {
        padding: 150px 0 120px;
        min-height: 550px;
    }
    
    .projects-hero-banner .hero-title {
        font-size: 2.5rem;
    }
    
    .projects-hero-banner .hero-subtitle {
        font-size: 2rem;
    }
    
    .projects-hero-banner .hero-description {
        font-size: 1.1rem;
    }
    
    .projects-section {
        padding: 60px 0;
    }
    
    .project-image-wrapper {
        height: 250px;
    }
    
    .project-content {
        padding: 1.75rem;
    }
    
    .project-title {
        font-size: 1.4rem;
    }
    
    .project-stats-section {
        padding: 60px 0;
    }
    
    .project-stat-card {
        padding: 2.25rem 1.75rem;
    }
    
    .project-stat-card .stat-number-enhanced {
        font-size: 2.75rem;
    }
    
    .stat-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .stat-icon-wrapper i {
        font-size: 2.25rem;
    }
    
    /* About Page Responsive - Tablet */
    .about-hero-banner {
        padding: 150px 0 120px;
        min-height: 550px;
    }
    
    .about-hero-banner .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-banner .hero-subtitle {
        font-size: 2rem;
    }
    
    .about-hero-banner .hero-description {
        font-size: 1.1rem;
    }
    
    .about-history-section {
        padding: 60px 0;
    }
    
    .history-content-card {
        padding: 2.5rem 2rem;
    }
    
    .history-image-wrapper {
        min-height: 350px;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .timeline-year {
        position: relative;
    }
    
    .timeline-content {
        margin: 0 1.5rem;
    }
    
    .vision-mission-section-enhanced {
        padding: 60px 0;
    }
    
    .mission-vision-card-enhanced {
        padding: 2.5rem 2rem;
    }
    
    .values-section-enhanced {
        padding: 60px 0;
    }
    
    .value-card-enhanced {
        padding: 2.25rem 1.75rem;
    }
    
    .founder-section-enhanced {
        padding: 60px 0;
    }
    
    .founder-card-enhanced {
        padding: 2.5rem 2rem;
    }
    
    .founder-image-wrapper-enhanced {
        min-height: 420px;
        aspect-ratio: 3 / 4;
    }
    
    .founder-image-wrapper-enhanced .founder-image {
        object-position: center 8%;
    }
    
    .founder-content {
        padding-left: 1.5rem;
    }
    
    .team-section-enhanced {
        padding: 60px 0;
    }
    
    .team-member-image-wrapper {
        height: 280px;
    }
    
    .benefits-title,
    .get-started-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .services-hero-banner,
    .contact-hero-banner,
    .about-hero-banner {
        min-height: 350px;
        padding: 100px 0 80px;
    }
    
    .contact-hero-banner .hero-title,
    .about-hero-banner .hero-title {
        font-size: 1.75rem;
    }
    
    .contact-hero-banner .hero-subtitle,
    .about-hero-banner .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .contact-hero-banner .hero-description,
    .about-hero-banner .hero-description {
        font-size: 0.9rem;
    }
    
    /* About Page Mobile Styles */
    .about-history-section {
        padding: 40px 0;
    }
    
    .history-content-card {
        padding: 1.5rem 1.25rem;
        margin-bottom: 2rem;
    }
    
    .history-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .history-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .history-title {
        font-size: 1.3rem;
    }
    
    .history-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .history-image-wrapper {
        min-height: 250px;
    }
    
    .history-timeline::before {
        left: 50px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 70px;
        margin-bottom: 2rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
    
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1rem;
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 0.5rem;
        padding: 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    .vision-mission-section-enhanced {
        padding: 40px 0;
    }
    
    .mission-vision-card-enhanced {
        padding: 1.5rem 1.25rem;
        margin-bottom: 2rem;
    }
    
    .mission-vision-card-enhanced h3 {
        font-size: 1.3rem;
    }
    
    .mission-text {
        font-size: 0.95rem;
    }
    
    .card-icon-header {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .card-icon-header i {
        font-size: 2rem;
    }
    
    .values-section-enhanced {
        padding: 40px 0;
    }
    
    .value-card-enhanced {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .value-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .value-icon-wrapper i {
        font-size: 2rem;
    }
    
    .value-title {
        font-size: 1.2rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
    
    .founder-section-enhanced {
        padding: 40px 0;
    }
    
    .founder-card-enhanced {
        padding: 1.5rem 1.25rem;
    }
    
    .founder-image-wrapper-enhanced {
        height: 420px;
        min-height: 420px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .founder-image-wrapper-enhanced .founder-image {
        object-position: center top;
        border-radius: 15px;
    }
    
    .founder-image-wrapper:not(.founder-image-wrapper-enhanced) {
        max-width: 320px;
        padding: 8px;
    }
    
    .founder-image-wrapper:not(.founder-image-wrapper-enhanced) .founder-image {
        max-width: 100%;
        height: 320px;
        object-position: center top;
    }
    
    .founder-content {
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .founder-name {
        font-size: 1.75rem;
    }
    
    .founder-title {
        font-size: 1.1rem;
    }
    
    .founder-quote {
        padding: 1.25rem;
    }
    
    .founder-quote p {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .founder-bio p {
        font-size: 0.9rem;
    }
    
    .founder-achievements {
        flex-direction: column;
        gap: 1rem;
    }
    
    .achievement-item {
        min-width: 100%;
        padding: 0.75rem;
    }
    
    .achievement-item i {
        font-size: 1.5rem;
    }
    
    .team-section-enhanced {
        padding: 40px 0;
    }
    
    .team-member-card-enhanced {
        margin-bottom: 2rem;
    }
    
    .team-member-image-wrapper {
        height: 220px;
    }
    
    .team-member-content {
        padding: 1.25rem;
    }
    
    .team-member-name {
        font-size: 1.2rem;
    }
    
    .team-member-role {
        font-size: 0.9rem;
    }
    
    .team-member-description {
        font-size: 0.9rem;
    }
    
    .stats-section-enhanced,
    .about-stats-section {
        padding: 40px 0;
    }
    
    .stat-card-enhanced {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card-enhanced .stat-number-enhanced {
        font-size: 2rem;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .stat-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .contact-info-section {
        padding: 50px 0;
    }
    
    .contact-form-section {
        padding: 50px 0;
    }
    
    .contact-form-wrapper,
    .map-section-wrapper {
        padding: 1.5rem 1.25rem;
        padding-top: 1.5rem !important;
    }
    
    .form-title,
    .map-title {
        font-size: 1.3rem;
    }
    
    .form-icon,
    .map-icon {
        font-size: 2rem;
        margin-top: 0 !important;
    }
    
    .form-header,
    .map-header {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .contact-card-image {
        width: 60px;
        height: 60px;
    }
    
    .contact-card-title {
        font-size: 1.3rem;
    }
    
    .contact-card-text {
        font-size: 0.9rem;
    }
    
    .map-container-enhanced {
        height: 300px;
        min-height: 300px;
    }
    
    .office-details-card {
        padding: 1.25rem;
        margin-top: 1.25rem;
    }
    
    .contact-form-section .row {
        align-items: flex-start;
    }
    
    .contact-form-wrapper {
        margin-bottom: 2rem;
    }
    
    .office-details-title {
        font-size: 1.1rem;
    }
    
    .contact-benefits-section {
        padding: 50px 0;
    }
    
    .benefits-card,
    .get-started-card {
        padding: 1.5rem 1.25rem;
    }
    
    /* Projects Page Responsive */
    .projects-hero-banner {
        padding: 120px 0 100px;
        min-height: 500px;
    }
    
    .projects-hero-banner .hero-title {
        font-size: 2rem;
    }
    
    .projects-hero-banner .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .projects-hero-banner .hero-description {
        font-size: 0.9rem;
    }
    
    .projects-section {
        padding: 50px 0;
    }
    
    .project-image-wrapper {
        height: 220px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-title {
        font-size: 1.3rem;
    }
    
    .project-description {
        font-size: 0.9rem;
    }
    
    .project-stats-section {
        padding: 50px 0;
    }
    
    .project-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .project-stat-card .stat-number-enhanced {
        font-size: 2.5rem;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon-wrapper i {
        font-size: 2rem;
    }
    
    .benefits-header,
    .get-started-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .benefits-icon,
    .get-started-icon {
        font-size: 2rem;
    }
    
    .benefits-title,
    .get-started-title {
        font-size: 1.3rem;
    }
    
    .benefits-list li,
    .get-started-list li {
        font-size: 0.9rem;
    }
    
    .map-container-enhanced iframe {
        height: 300px;
    }
    
    .service-category-section {
        margin-bottom: 50px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-icon {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .service-card-premium .service-icon-wrapper {
        padding: 1.5rem 1.25rem 1rem;
    }
    
    .service-icon-fa {
        font-size: 3rem;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .service-title-premium {
        padding: 0 1.25rem;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description-premium {
        padding: 0 1.25rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .service-features {
        padding: 0 1.25rem;
        gap: 8px;
    }
    
    .feature-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .service-card-premium .service-image {
        height: 150px;
    }
    
    .service-card-footer {
        padding: 1rem 1.25rem;
    }
    
    .service-link-btn {
        font-size: 0.9rem;
    }
    
    .service-team-card {
        padding: 1.75rem 1.25rem;
    }
    
    .team-icon {
        font-size: 3rem;
    }
    
    .team-title {
        font-size: 1.3rem;
    }
    
    .team-description {
        font-size: 0.9rem;
    }
    
    .team-features li {
        font-size: 0.9rem;
    }
    
    .additional-service-card {
        padding: 1.5rem 1rem;
    }
    
    .additional-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1.25rem;
    }
    
    .additional-icon i {
        font-size: 1.5rem;
    }
    
    .additional-service-card h5 {
        font-size: 1.1rem;
    }
    
    .additional-service-card p {
        font-size: 0.9rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

