/* Custom CSS for Shripur Infra Projects - Builder Theme Style */

:root {
    /* Builder Theme Colors from Reference */
    --primary-color: #ff6600;         /* Orange primary color */
    --secondary-color: #333333;       /* Dark secondary */
    --accent-color: #ffaa44;          /* Light orange accent */
    --dark-color: #2c2c2c;           /* Almost black */
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --danger-color: #dc3545;
    
    /* Additional Builder Colors */
    --orange-gradient-start: #ff6600;
    --orange-gradient-end: #ff8833;
    --gray-dark: #495057;
    --gray-medium: #6c757d;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
}

/* General Styles */
body {
    padding-top: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
}

.main-content {
    min-height: calc(100vh - 200px);
}

/* Navigation */
.top-header-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%) !important;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.top-contact-info .contact-item {
    font-size: 0.85rem;
    color: white;
}

.top-contact-info i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.social-link-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 102, 0, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

.social-link-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.main-nav {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    margin-top: 0;
    position: sticky;
    top: 46px;
    z-index: 1029;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-nav.navbar-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo-img {
    transition: all 0.3s ease;
}

.brand-text {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 8px;
    padding: 0.7rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(255, 102, 0, 0.1);
    transform: translateY(-1px);
}

.nav-link.contact-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white !important;
    margin-left: 15px;
    font-weight: 600;
}

.nav-link.contact-btn:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 102, 0, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 102, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slideshow .carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
    transition: opacity 0.6s ease-in-out;
}

.hero-slideshow .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-slideshow .carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-slideshow .carousel-fade .carousel-item-next,
.hero-slideshow .carousel-fade .carousel-item-prev {
    opacity: 0;
}

.hero-slideshow .carousel-fade .carousel-item-next.carousel-item-start,
.hero-slideshow .carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-slideshow .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
    text-align: center;
}

.slide-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.slide-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.slide-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.hero-slideshow .carousel-indicators {
    bottom: 30px;
    z-index: 4;
}

.hero-slideshow .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.hero-slideshow .carousel-indicators .active {
    background-color: var(--accent-color);
}

.hero-slideshow .carousel-control-prev,
.hero-slideshow .carousel-control-next {
    width: 5%;
    z-index: 4;
}

.hero-slideshow .carousel-control-prev-icon,
.hero-slideshow .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 100%;
}

/* Responsive Design for Slideshow */
@media (max-width: 992px) {
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-slideshow {
        min-height: 70vh;
    }
    
    .hero-slideshow .carousel-item {
        min-height: 70vh;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-buttons .btn {
        padding: 12px 24px;
        font-size: 1rem;
        margin: 5px;
        display: block;
        width: auto;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><polygon fill="white" points="1000,100 1000,0 0,100"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    border-color: white;
}

/* Orange Theme Button Styles */
.btn-orange {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-orange:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.text-left .section-title::after {
    left: 0;
    transform: none;
}

/* Why Choose Us Section - Builder Style */
.why-choose-section {
    background: var(--gray-light);
    padding: 100px 0;
}

.why-choose-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
}

.feature-box h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-box p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card {
    text-align: center;
    padding: 2rem;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.project-card {
    overflow: hidden;
    position: relative;
}

.project-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .card-img-top {
    transform: scale(1.05);
}

.project-category {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}

/* Blog Cards */
.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-meta {
    color: #6c757d;
    font-size: 0.9rem;
}

.blog-meta i {
    margin-right: 5px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0 50px;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><polygon fill="white" points="1000,100 1000,0 0,100"/></svg>') no-repeat bottom;
    background-size: cover;
}

/* Statistics Section */
.stats-section {
    background: var(--light-gray);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-top: 0.5rem;
}

/* Contact Form */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 5px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-right {
    right: 20px;
}

.whatsapp-left {
    left: 20px;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float a:hover {
    background: #20b456;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: var(--accent-color);
    color: var(--dark-color) !important;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 60vh;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
    }
    
    .whatsapp-right {
        right: 15px;
    }
    
    .whatsapp-left {
        left: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Utilities */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-light-custom {
    background-color: var(--light-gray) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
}

.footer-main {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-title {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '▸';
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links-footer {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.contact-info-footer {
    position: relative;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent-color);
}

.bg-dark-deep {
    background: #111111 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-developer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.developer-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: white;
    text-shadow: 0 0 10px var(--accent-color);
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-title::after {
        width: 25px;
    }
    
    .social-links-footer {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-main {
        text-align: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
}

/* Header Responsive Design */
@media (max-width: 991px) {
    .top-header-bar {
        font-size: 0.8rem;
    }
    
    .top-contact-info .contact-item {
        margin-bottom: 5px;
    }
    
    .social-links-top {
        margin-top: 10px;
    }
    
    .social-link-top {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .navbar-brand .logo-img {
        height: 35px;
    }
    
    .nav-link.contact-btn {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .top-contact-info {
        text-align: center;
    }
    
    .social-links-top {
        text-align: center;
        margin-top: 15px;
    }
    
    .main-nav {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .top-header-bar {
        padding: 8px 0;
    }
    
    .contact-item {
        font-size: 0.75rem;
    }
    
    .social-link-top {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
        margin: 0 2px;
    }
    
    .navbar-brand .logo-img {
        height: 30px;
    }
    
    .brand-text {
        font-size: 0.9rem;
    }
}

/* CTA (Call to Action) Section - Builder Style */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Statistics Section */
.stats-section {
    background: var(--gray-light);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Testimonial Section Enhancement */
.testimonial-section {
    background: var(--gray-light);
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 102, 0, 0.15);
}

.testimonial-quote {
    font-size: 1.2rem;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--secondary-color);
    padding: 80px 0;
    color: white;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* ==== NEW SECTIONS STYLING - BUILDER THEME ==== */

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.feature-box {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255,102,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-box h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Enhanced Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6590a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    opacity: 0.5;
}

.stats-box {
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.stats-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats-text {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Enhanced CTA Section */
.enhanced-cta-section {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.enhanced-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,102,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.enhanced-cta-section h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.enhanced-cta-section p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    border: none;
    color: white;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #e6590a, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,102,0,0.3);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.testimonial-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255,102,0,0.15);
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-content p {
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.client-info {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.client-details h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.client-details span {
    color: #777;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,102,0,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.newsletter-section h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.newsletter-section p {
    color: #ccc;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 20px;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    background: rgba(255,255,255,0.95);
}

.newsletter-form .form-control:focus {
    box-shadow: 0 0 15px rgba(255,102,0,0.3);
    border-color: var(--primary-color);
    background: white;
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    border: none;
    color: white;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 0 50px 50px 0;
    white-space: nowrap;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #e6590a, var(--primary-color));
    color: white;
    transform: translateX(-2px);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6590a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,2 25,8 25,22 15,28 5,22 5,8" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
}

.final-cta-section h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.final-cta-section .lead {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-final-cta {
    background: rgba(255,255,255,0.95);
    border: none;
    color: var(--primary-color);
    padding: 18px 40px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-final-cta:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Enhanced Hero Buttons */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    border: none;
    color: white;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #e6590a, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,102,0,0.4);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    border: 2px solid white;
    color: white;
    padding: 13px 28px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Newsletter Form Fix */
.newsletter-form .d-flex {
    max-width: 400px;
    margin-left: auto;
}

@media (max-width: 768px) {
    .newsletter-form .d-flex {
        margin: 0;
        margin-top: 20px;
    }
    
    .newsletter-section h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .newsletter-section p {
        text-align: center;
    }
    
    .final-cta-section h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .final-cta-section .lead {
        text-align: center;
        font-size: 1.1rem;
    }
}

/* ==== ABOUT PAGE SPECIFIC STYLING ==== */

/* About Hero Section */
.about-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.intro-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ceo-quote {
    background: rgba(255,102,0,0.1);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
}

.ceo-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.quote-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.feature-item span {
    color: #555;
    line-height: 1.5;
}

.about-image-wrapper {
    position: relative;
}

.feature-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mission Vision Values Section */
.mvv-section {
    padding: 80px 0;
    background: white;
}

.mvv-box {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.mvv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,102,0,0.15);
    background: white;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.mvv-box h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.mvv-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Working Process Section */
.working-process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-box {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255,102,0,0.15);
}

.process-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,102,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
}

.process-box h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.process-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Why Choose About Section */
.why-choose-about-section {
    padding: 80px 0;
    background: white;
}

.why-choose-about-section .d-flex {
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.why-choose-about-section .d-flex:hover {
    background: rgba(255,102,0,0.05);
    border-radius: 10px;
    border-bottom-color: transparent;
    margin: 0 -15px;
    padding: 25px 15px;
}

.why-choose-about-section .d-flex:last-child {
    border-bottom: none;
}

.why-choose-about-section i {
    background: rgba(255,102,0,0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* About Stats Section */
.about-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6590a 100%);
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aboutpattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutpattern)"/></svg>');
    opacity: 0.5;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-section .card {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.team-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255,102,0,0.15);
}

.team-section .card-body {
    padding: 40px 30px;
}

.team-section .rounded-circle {
    border: 4px solid var(--primary-color);
}

.team-section h5 {
    color: var(--secondary-color);
    font-weight: 700;
}

.team-section .text-muted {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 2rem;
    }
    
    .intro-badge {
        display: block;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .ceo-quote blockquote {
        font-size: 1.1rem;
    }
    
    .feature-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-top: 20px;
    }
    
    .process-number {
        top: -15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .about-hero-section,
    .mvv-section,
    .working-process-section,
    .why-choose-about-section,
    .about-stats-section,
    .team-section {
        padding: 60px 0;
    }
}

/* ==== SERVICES PAGE SPECIFIC STYLING ==== */

/* Services Hero Section */
.services-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.services-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.services-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: white;
}

.service-box {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    transition: all 0.4s ease;
}

.service-box:hover::before {
    left: 0;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255,102,0,0.15);
    background: white;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255,102,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-box:hover .service-icon-wrapper {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.service-box h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-size: 1rem;
}

.service-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-link {
    margin-top: auto;
}

.service-link a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.service-link a:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    color: white;
}

/* Service Features Section */
.service-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-list {
    margin-top: 30px;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,102,0,0.1);
}

.features-list .feature-item:last-child {
    border-bottom: none;
}

.features-list .feature-item i {
    color: var(--primary-color);
    margin-right: 20px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.features-list .feature-item span {
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Consultation Form */
.consultation-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultation-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
    border-top: 4px solid var(--primary-color);
}

.consultation-form h4 {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.consultation-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255,102,0,0.2);
    background: white;
}

.btn-consultation {
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    border: none;
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-consultation:hover {
    background: linear-gradient(135deg, #e6590a, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,102,0,0.3);
    color: white;
}

/* Services Stats Section */
.services-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6590a 100%);
    position: relative;
    overflow: hidden;
}

.services-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="servicespattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23servicespattern)"/></svg>');
    opacity: 0.5;
}

.services-stats-section .stats-box {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.services-stats-section .stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.services-stats-section .stats-number::after {
    content: '+';
    font-size: 2rem;
    position: absolute;
    top: 0;
    margin-left: 5px;
}

.services-stats-section .stats-text {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Mobile Responsive for Services Page */
@media (max-width: 768px) {
    .services-main-title {
        font-size: 2rem;
    }
    
    .service-box {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .consultation-form {
        padding: 30px 20px;
    }
    
    .features-list .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .features-list .feature-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .services-hero-section,
    .services-grid-section,
    .service-features-section,
    .services-stats-section {
        padding: 60px 0;
    }
    
    .services-stats-section .stats-number {
        font-size: 2.5rem;
    }
}

/* ==== CONTACT PAGE SPECIFIC STYLING ==== */

/* Contact Hero Section */
.contact-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-wrapper {
    padding-right: 30px;
}

.simple-contact-form {
    margin-top: 30px;
}

.simple-contact-form .form-group {
    margin-bottom: 20px;
}

.simple-contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.simple-contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255,102,0,0.2);
    background: white;
}

.simple-contact-form .form-control::placeholder {
    color: #999;
    font-weight: 500;
}

.btn-contact-submit {
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    border: none;
    color: white;
    padding: 15px 40px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 20px;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #e6590a, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,102,0,0.3);
    color: white;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    transition: all 0.4s ease;
}

.contact-info-card:hover::before {
    left: 0;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,102,0,0.15);
    background: white;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-info-card h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-size: 1rem;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-info-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-hero-section,
    .contact-form-section {
        padding: 60px 0;
    }
    
    .simple-contact-form .form-control {
        padding: 12px 15px;
    }
    
    .btn-contact-submit {
        width: 100%;
        padding: 15px;
    }
}

/* ==== CONTACT PAGE WITH IMAGE STYLING ==== */

/* Contact Section with Background Image */
.contact-with-image-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Left Side - Image with Overlay */
.contact-image-side {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.contact-image-side {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.contact-image-bg {
    display: none;
}

.contact-overlay {
    position: relative;
    background: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
}

.contact-overlay-content {
    color: var(--dark-color);
    text-align: left;
    padding: 0;
    max-width: 500px;
    width: 100%;
}

.contact-overlay-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: none;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-overlay-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-shadow: none;
    color: var(--text-color);
    font-weight: 400;
}

/* Right Side - Contact Form */
.contact-form-side {
    padding: 60px;
    background: #f8f9fa;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.contact-form-side .intro-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.contact-form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
    width: 100%;
    margin-top: 0;
}

.contact-form-description {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.contact-image-form {
    width: 100%;
    max-width: 500px;
}

/* Contact Form Styling */
.contact-image-form .form-group {
    margin-bottom: 20px;
}

.contact-image-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
    color: #333;
}

.contact-image-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255,102,0,0.2);
    background: white;
}

.contact-image-form .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.btn-image-contact {
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    border: none;
    color: white;
    padding: 15px 50px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
    width: 100%;
}

.btn-image-contact:hover {
    background: linear-gradient(135deg, #e6590a, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,102,0,0.3);
    color: white;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-card-bottom {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info-card-bottom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,102,0,0.15);
}

.contact-card-icon-bottom {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #e6590a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-info-card-bottom:hover .contact-card-icon-bottom {
    transform: scale(1.1);
}

.contact-info-card-bottom h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-size: 1rem;
}

.contact-info-card-bottom p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-info-card-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-card-bottom a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Mobile Responsive for Contact Image Layout */
@media (max-width: 991px) {
    .contact-with-image-section {
        min-height: auto;
    }
    
    .contact-image-side {
        height: 50vh;
        min-height: 400px;
    }
    
    .contact-overlay-content {
        padding: 40px;
        text-align: center;
    }
    
    .contact-overlay-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-side {
        height: auto;
        padding: 60px 40px;
    }
    
    .contact-form-title {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .contact-form-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-image-side {
        height: 40vh;
        min-height: 350px;
    }
    
    .contact-overlay-content {
        padding: 30px 20px;
    }
    
    .contact-overlay-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-overlay-content p {
        font-size: 1rem;
    }
    
    .contact-form-side {
        padding: 40px 20px;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-info-card-bottom {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .contact-card-icon-bottom {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}