/* ByteGrid Software Custom Styles */

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 20px;
}

/* Custom Font */
.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.hero-section {
    background: #ffffff;
    min-height: calc(100vh - 20px);
    display: flex;
    align-items: center;
    margin-top: -20px;
    padding-top: 20px;
    position: relative;
}

.hero-side-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
}

.hero-text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Buttons - ByteGrid Software Style */
.btn-primary-custom {
    background: #2c3e50;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #34495e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.5);
    text-decoration: none;
}

.btn-outline-custom {
    border: 2px solid #2c3e50;
    color: #2c3e50;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
    text-decoration: none;
}

/* Service Cards */
/* Home Services Section - Match Services Page Style */
.home-services-section .service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #e9ecef;
}

.home-services-section .service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Generic Service Card (Fallback) */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #1e3c72;
}

/* Home Services Section Icons */
.home-services-section .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.home-services-section .service-icon i {
    font-size: 1.8rem;
}

.home-services-section .service-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Generic Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.service-icon.blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1e3c72;
}

.service-icon.green {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    color: #388e3c;
}

.service-icon.purple {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #7b1fa2;
}

.service-icon.red {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #d32f2f;
}

.service-icon.yellow {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    color: #f57c00;
}

.service-icon.indigo {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    color: #303f9f;
}

.service-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-content {
    flex: 1;
    text-align: left;
}

.service-content h1,
.service-content h2,
.service-content h3,
.service-content h4,
.service-content h5,
.service-content h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-content ul,
.service-content ol {
    text-align: left;
    margin-bottom: 15px;
}

.service-content li {
    color: #666;
    margin-bottom: 5px;
}

/* About Section */
.about-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    border-radius: 10px;
}

.about-content {
    text-align: left;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5,
.about-content h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.about-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Project Cards */
/* Project Cards - ByteGrid Style */
.project-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 300px;
    position: relative;
    cursor: pointer;
}

.project-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.project-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.project-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.project-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.project-card:hover .project-overlay-card {
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: white;
}

.project-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    line-height: 1.2;
}

.category-badge {
    background: none;
    color: #666;
    padding: 0;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    transition: all 0.3s ease;
    margin-right: 0;
}

.project-card:hover .category-badge {
    background: none;
    color: white;
    border: none;
}

/* Brands Section */
.brands-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-slider {
    display: flex;
    animation: slide 20s linear infinite;
    width: calc(200% + 40px);
}

.brand-slide {
    flex: 0 0 auto;
    width: calc(16.666% - 20px);
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item {
    padding: 20px;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    width: 100%;
}

.brand-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
}

.brand-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.brand-item:hover .brand-image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #ffffff;
}

.brand-item:hover .brand-name {
    color: #2c3e50;
    border-color: #2c3e50;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

/* Sliding Animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.brands-carousel:hover .brands-slider {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-slide {
        width: calc(25% - 15px);
        margin-right: 15px;
    }
    
    .brands-slider {
        width: calc(300% + 30px);
    }
}

@media (max-width: 576px) {
    .brand-slide {
        width: calc(33.333% - 10px);
        margin-right: 10px;
    }
    
    .brands-slider {
        width: calc(400% + 20px);
    }
}

/* Testimonials Section */
.testimonials-slider-container {
    position: relative;
}

.testimonial-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.testimonial-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.testimonial-card-slider {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card-slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card-slider:hover .testimonial-image {
    transform: scale(1.05);
}

.testimonial-content-slider {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-name-slider {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.testimonial-stars-slider {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-quote-slider {
    color: #666;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
}

/* Carousel Controls Styling */
.testimonials-slider-container .carousel-control-prev,
.testimonials-slider-container .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.testimonials-slider-container .carousel-control-prev:hover,
.testimonials-slider-container .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
}

.testimonials-slider-container .carousel-control-prev {
    left: -25px;
}

.testimonials-slider-container .carousel-control-next {
    right: -25px;
}

.testimonials-slider-container .carousel-control-prev-icon,
.testimonials-slider-container .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

.testimonials-slider-container .carousel-indicators {
    bottom: -60px;
}

.testimonials-slider-container .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonials-slider-container .carousel-indicators button.active {
    background-color: #007bff;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-image-container {
        height: 180px;
    }
    
    .testimonial-content-slider {
        padding: 20px;
    }
    
    .testimonial-name-slider {
        font-size: 1.1rem;
    }
    
    .testimonial-stars-slider {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .testimonial-quote-slider {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonials-slider-container .carousel-control-prev,
    .testimonials-slider-container .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-slider-container .carousel-control-prev {
        left: -20px;
    }
    
    .testimonials-slider-container .carousel-control-next {
        right: -20px;
    }
    
    .testimonials-slider-container .carousel-control-prev-icon,
    .testimonials-slider-container .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}


.about-content ul,
.about-content ol {
    margin-bottom: 15px;
}

.about-content li {
    color: #666;
    margin-bottom: 5px;
}



/* Blog Cards - Project Style */
.blog-card-project-style {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 300px;
    position: relative;
    cursor: pointer;
}

.blog-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.blog-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.blog-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.blog-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    max-height: 120px;
    overflow: hidden;
}

.blog-card-project-style:hover .blog-bg-image {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    position: relative;
}

.cta-section .container {
    background: linear-gradient(180deg, #3377B4 0%, #164C7E 100%);
    color: white;
    padding: 60px 40px;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: white !important;
    line-height: 1.2;
    word-wrap: break-word;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-title {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFE132 0%, #FFA500 100%);
    border: none;
    color: #000000;
    padding: 15px 39px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0px 11px 35px 0px rgba(255, 225, 50, 0.65);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}

.btn-cta:hover {
    background-color: #000000;
    background-image: none;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0px 11px 35px 0px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section .container {
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    /* .cta-subtitle {
        font-size: 2.2rem;
        line-height: 1.3;
    } */
    
    .cta-title {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.blog-card-project-style:hover .blog-overlay-card {
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.blog-date-overlay {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card-project-style:hover .blog-date-overlay {
    color: rgba(255, 255, 255, 0.8);
}

.blog-title-overlay {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card-project-style:hover .blog-title-overlay {
    color: white;
}

.blog-excerpt-overlay {
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.blog-card-project-style:hover .blog-excerpt-overlay {
    color: rgba(255, 255, 255, 0.9);
}

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

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Section */
.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
}

.stats-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control-custom {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Contact Info */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon.blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.contact-info-icon.green {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    color: #388e3c;
}

.contact-info-icon.purple {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #7b1fa2;
}

.contact-info-icon.yellow {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    color: #f57c00;
}

/* Social Media */
.social-link {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-link.facebook {
    background: #1877f2;
}

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

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

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

/* Header - Exact match to ByteGrid Software website */
.header-main {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 20px;
    right: 20px;
    z-index: 1000;
    height: 70px;
    border-radius: 0;
    margin: 0 auto;
    max-width: 1200px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.header-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    z-index: 1;
}

/* Header when scrolled */
.header-main.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
}

.header-main .navbar {
    height: 70px;
    padding: 0;
    justify-content: space-between;
}

.header-main .navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    margin: 0;
    padding: 0;
    line-height: 70px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.header-main .navbar-nav {
    margin-left: 80px;
}

.header-main .brand-text {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

/* Header when scrolled - black text */
.header-main.scrolled .navbar-brand {
    color: #000000 !important;
    text-shadow: none !important;
}

.header-main.scrolled .brand-text {
    color: #000000 !important;
    text-shadow: none !important;
}

.header-main .logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.header-main .navbar-nav {
    align-items: center;
}

.header-main .nav-item {
    margin: 0 8px;
}

.header-main .nav-link {
    /* color: #ffffff; */
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-main .nav-link:hover {
    color: #ffffff;
    opacity: 0.8;
}

.header-main .nav-link.active {
    /* color: #ffffff; */
    opacity: 1;
}

/* Header when scrolled - black text for all elements */
.header-main.scrolled .nav-link {
    color: #000000 !important;
    text-shadow: none !important;
}

.header-main.scrolled .nav-link:hover {
    color: #007bff !important;
    opacity: 1;
}

.header-main.scrolled .nav-link.active {
    color: #007bff !important;
}

/* Force all text in scrolled header to be black */
.header-main.scrolled * {
    color: #000000 !important;
}

.header-main.scrolled .navbar-brand,
.header-main.scrolled .brand-text {
    color: #000000 !important;
    text-shadow: none !important;
}

.header-main.scrolled .nav-link:hover,
.header-main.scrolled .nav-link.active {
    color: #007bff !important;
}

/* Additional specificity for any remaining white text */
.header-main.scrolled a,
.header-main.scrolled span,
.header-main.scrolled div,
.header-main.scrolled p {
    color: #000000 !important;
}

.header-main .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #007bff;
}

.header-main .navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.header-main .navbar-toggler:focus {
    box-shadow: none;
}

/* .header-main .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, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
} */

/* Mobile menu button when scrolled */
.header-main.scrolled .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%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Styles - Only for small devices */
@media (max-width: 991.98px) {
    .header-main .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        margin-top: 10px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .header-main .navbar-nav .nav-link {
        color: #333 !important;
        font-weight: 500;
        padding: 12px 20px;
        border-radius: 8px;
        margin: 5px 0;
        transition: all 0.3s ease;
        text-align: center;
        display: block;
    }

    .header-main .navbar-nav .nav-link:hover,
    .header-main .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        color: #ffffff !important;
        transform: translateX(5px);
    }

    .header-main .navbar-nav .nav-item {
        margin: 0;
    }
}

/* Responsive adjustments for floating header */
@media (max-width: 768px) {
    .header-main {
        top: 0;
        left: 10px;
        right: 10px;
        border-radius: 0;
    }
    
    .header-main.scrolled {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .header-main.scrolled * {
        color: #000000 !important;
    }
    
    .header-main.scrolled .navbar-brand,
    .header-main.scrolled .brand-text {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    .header-main.scrolled .nav-link {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    .header-main.scrolled .nav-link:hover,
    .header-main.scrolled .nav-link.active {
        color: #007bff !important;
    }
    
    /* body {
        padding-top: 100px; /* Adjust for mobile floating header */
    } */
    
    .hero-section {
        min-height: calc(100vh - 100px);
        margin-top: -100px;
        padding-top: 100px;
        background: #ffffff;
    }
}

/* Footer */
.footer-custom {
    background: white;
    color: #2c3e50;
    border-top: 1px solid #e9ecef;
}

.footer-custom .logo-icon {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3498db;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .service-card,
    .contact-form {
        padding: 20px;
    }
    
    .home-services-section .service-card {
        padding: 2rem;
    }
    
    .home-services-section .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .home-services-section .service-icon i {
        font-size: 1.5rem;
    }
    
    .hero-gradient {
        min-height: 80vh;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
}

/* Map Placeholder */
.map-placeholder {
    background: #f8f9fa;
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 2px dashed #dee2e6;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

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

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%) 1;
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 15px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.newsletter-icon-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.newsletter-icon-btn:hover {
    background: #5a6fd8;
    transform: translateY(-50%) scale(1.05);
}

.newsletter-icon-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* About Page Styles */
.about-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.who-we-are {
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    border-radius: 2px;
}

.content-wrapper p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-wrapper .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #495057;
}

.why-choose-us {
    background: #f8f9fa;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-cta {
    padding: 80px 0;
    position: relative;
}

.about-cta .container {
    background: linear-gradient(180deg, #3377B4 0%, #164C7E 100%);
    color: white;
    padding: 60px 40px;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.about-cta .cta-title {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .cta-description {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: white !important;
    line-height: 1.2;
    word-wrap: break-word;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn-primary {
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFE132 0%, #FFA500 100%);
    border: none;
    color: #000000;
    padding: 15px 39px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0px 11px 35px 0px rgba(255, 225, 50, 0.65);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}

.about-cta .btn-primary:hover {
    background-color: #000000;
    background-image: none;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0px 11px 35px 0px rgba(0, 0, 0, 0.5);
}

/* About Page Specific CTA Title - Larger and Bolder */
.about-cta .about-cta-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Specific CTA Content - Smaller and Less Bold */
.about-cta .about-cta-content {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: white !important;
    line-height: 1.8;
    word-wrap: break-word;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.what-we-value {
    background: white;
}

.value-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.value-content .section-title::after {
    left: 0;
    transform: none;
}

.value-content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.final-cta {
    background: #f8f9fa;
}

/* .cta-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 500;
} */

.cta-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-image img {
    max-width: 200px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .about-cta {
        padding: 40px 0;
    }
    
    .about-cta .container {
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .about-cta .cta-title {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .about-cta .cta-description {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .about-cta .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .about-cta .about-cta-title {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .about-cta .about-cta-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-main-title {
        font-size: 2rem;
    }
    
    .value-content .section-title {
        text-align: center;
    }
    
    .value-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Services Page Styles */
.services-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.services-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.services-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    background: white;
}

/* Services Page - Use same styling as home page */
.services-grid .service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.services-grid .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.services-grid .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.services-grid .service-card:hover .service-icon {
    transform: scale(1.1);
}

.services-grid .service-icon i {
    font-size: 1.8rem;
}

.services-grid .service-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.service-content {
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-content h3,
.service-content h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1rem;
}

.service-button .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-button .btn:hover {
    transform: translateY(-2px);
}

.our-approach {
    background: #f8f9fa;
}

.approach-content {
    padding-right: 2rem;
}

.approach-subtitle {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.approach-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.approach-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.services-cta {
    background: #f8f9fa;
}

.services-cta .cta-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.services-cta .cta-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.services-cta .cta-image img {
    max-width: 200px;
    height: auto;
}

.services-cta .btn-primary {
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.services-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Services Page Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 80px 0 60px;
    }
    
    .services-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .services-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .approach-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .approach-title {
        font-size: 1.8rem;
    }
    
    .services-cta .cta-main-title {
        font-size: 2rem;
    }
}

/* Project Detail Page Styles */
.project-hero {
    background: #f8f9fa;
}

.project-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.project-images {
    background: white;
}

.project-image-wrapper {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.project-image-wrapper:hover {
    transform: scale(1.02);
}

.project-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.project-details {
    background: white;
}

.project-content {
    margin-bottom: 2rem;
}

.project-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.project-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.project-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    position: sticky;
    top: 100px;
}

.project-info-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #3498db;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 1rem;
    color: #2c3e50;
    margin: 0;
}

.info-item .btn-block {
    width: 100%;
    margin-top: 0.5rem;
}

.related-projects {
    background: #f8f9fa;
}

.related-projects h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .project-detail-title {
        font-size: 2rem;
    }
    
    .project-info-card {
        position: static;
        margin-top: 2rem;
    }
}

/* Projects Page Styles */
.projects-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.projects-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
    line-height: 1.2;
}

.projects-grid {
    background: white;
}

.projects-cta {
    background: #f8f9fa;
}

.projects-cta .cta-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.projects-cta .cta-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.projects-cta .cta-image img {
    max-width: 200px;
    height: auto;
}

.projects-cta .btn-primary {
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.projects-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Projects Page Responsive Design */
@media (max-width: 768px) {
    .projects-hero {
        padding: 80px 0 60px;
    }
    
    .projects-hero .hero-title {
        font-size: 2rem;
    }
    
    .projects-cta .cta-main-title {
        font-size: 2rem;
    }
}

/* Blog Detail Page Styles */
.blog-detail-hero {
    background: white;
}

.blog-detail-image {
    overflow: hidden;
    border-radius: 15px;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-meta {
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-date, .blog-author {
    display: flex;
    align-items: center;
}

.blog-content-section {
    background: white;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.related-blogs {
    background: #f8f9fa;
}

.related-blogs h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 1.8rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start !important;
    }
    
    .blog-content {
        font-size: 1rem;
    }
}

/* Blog Page Styles */
.blog-grid {
    background: white;
    padding-top: 80px;
}

.blog-cta {
    background: #f8f9fa;
}

.blog-cta .cta-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.blog-cta .cta-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.blog-cta .cta-image img {
    max-width: 200px;
    height: auto;
}

.blog-cta .btn-primary {
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.blog-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Blog Page Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        padding-top: 60px;
    }
    
    .blog-cta .cta-main-title {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-page-wrapper {
    background: white;
    min-height: 100vh;
}

.contact-section {
    background: white;
    padding-top: 80px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2c3e50;
    text-decoration: none;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-form-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form-description {
    color: #6c757d;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    outline: none;
}

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

.contact-form .btn-primary {
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

.map-container {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    border: 1px solid #e9ecef;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.map-placeholder h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-cta {
    background: #f8f9fa;
}

.contact-cta .cta-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-cta .cta-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-cta .cta-image img {
    max-width: 200px;
    height: auto;
}

.contact-cta .btn-primary {
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.contact-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding-top: 60px;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
    }
    
    .contact-form-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-cta .cta-main-title {
        font-size: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
}
