/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */
:root {
    --primary-purple: #6B46C1;
    --secondary-purple: #8B5CF6;
    --dark-purple: #4C1D95;
    --primary-blue: #2563EB;
    --light-blue: #3B82F6;
    --dark-blue: #1E40AF;
    --black: #0F172A;
    --dark-gray: #1E293B;
    --light-gray: #F1F5F9;
    --white: #FFFFFF;
    --overlay: rgba(15, 23, 42, 0.7);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

/* ============================================
   LARGE HEADER (Page Load)
   ============================================ */
.large-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 30%, var(--dark-blue) 70%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.8s ease;
    opacity: 1;
    visibility: visible;
}

.large-header.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.large-header-content {
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.header-logo {
    width: 400px;
    height: auto;
    margin-bottom: 30px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.company-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: var(--white);
    opacity: 0.95;
}

.company-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--light-blue);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.header-contact-info {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.header-contact-info p {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.header-contact-info p:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.header-contact-info a:hover {
    color: var(--light-blue);
}

.header-contact-info i {
    color: var(--light-blue);
    font-size: 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding: 1rem 0;
    transition: all 0.8s ease;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    transform: translateY(-100%);
}

.navbar.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar .navbar-brand {
    color: var(--dark-purple) !important;
}

.navbar .nav-link {
    color: var(--black) !important;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 10px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo {
    width: 35px;
    height: 35px;
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    display: inline-block;
}

.navbar-brand i {
    color: var(--light-blue);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    padding: 8px 15px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ============================================
   HERO SECTION WITH PARALLAX
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 30%, var(--dark-blue) 70%, var(--primary-blue) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(75, 29, 149, 0.8) 0%, rgba(107, 70, 193, 0.7) 50%, rgba(30, 64, 175, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
}

.hero-contact-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-contact-info p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.hero-contact-info a:hover {
    color: var(--light-blue);
}

.hero-contact-info i {
    color: var(--light-blue);
    font-size: 1.3rem;
}

.hero-buttons {
    animation: fadeInUp 1.4s ease;
}

.btn-primary {
    background: var(--light-blue);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    color: var(--white);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-purple);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.experience-badge h3 {
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
}

.experience-badge p {
    margin: 0;
    font-size: 0.9rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card p {
    color: #64748B;
    line-height: 1.8;
}

/* ============================================
   GALLERY SECTION - CAROUSEL
   ============================================ */
.gallery-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    max-width: 100%;
}

.gallery-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.gallery-item {
    min-width: calc(33.333% - 14px);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 400px;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-content p {
    font-size: 1rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-purple);
    transition: var(--transition);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(107, 70, 193, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-purple);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #FCD34D;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author h5 {
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--light-blue);
    font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 70, 193, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.contact-info-card p {
    color: #64748B;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-purple);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--primary-blue);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    padding: 15px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(107, 70, 193, 0.1);
}

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B46C1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-title i {
    color: var(--light-blue);
}

.footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-blue);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets and small desktops */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .header-logo {
        width: 200px;
    }
    
    .header-contact-info {
        gap: 20px;
    }
    
    .hero-contact-info {
        gap: 20px;
    }
    
    .navbar-brand span {
        font-size: 1.1rem;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-contact-info {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 1.5rem;
    }
    
    .hero-contact-info p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .experience-badge {
        padding: 15px 20px;
        right: 10px;
        bottom: 10px;
    }
    
    .experience-badge h3 {
        font-size: 1.5rem;
    }
    
    .experience-badge p {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .gallery-item {
        min-width: 100%;
        height: 300px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
    
    .gallery-content h4 {
        font-size: 1.2rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .contact-info-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-info-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-info-card p {
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .footer-subtitle {
        font-size: 1rem;
        margin-top: 25px;
    }
    
    .footer-links {
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
    
    .company-name {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .company-subtitle {
        font-size: 1rem;
    }
    
    .company-tagline {
        font-size: 0.95rem;
    }
    
    .header-logo {
        width: 150px;
    }
    
    .header-contact-info {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .header-contact-info p {
        font-size: 0.95rem;
    }
    
    .navbar-brand {
        font-size: 0.95rem;
    }
    
    .navbar-brand span {
        font-size: 0.85rem;
    }
    
    .navbar-logo {
        width: 35px;
        height: 35px;
    }
    
    .nav-link {
        padding: 10px 15px !important;
        font-size: 0.95rem;
    }
}

/* Small mobile devices */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-contact-info p {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .hero-contact-info i {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .navbar-brand {
        font-size: 0.85rem;
    }
    
    .navbar-brand span {
        font-size: 0.75rem;
    }
    
    .navbar-logo {
        width: 30px;
        height: 30px;
    }
    
    .company-name {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    
    .company-subtitle {
        font-size: 0.9rem;
    }
    
    .company-tagline {
        font-size: 0.85rem;
        padding: 0 15px;
    }
    
    .header-logo {
        width: 120px;
    }
    
    .header-contact-info p {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .contact-info-card {
        padding: 25px 15px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-subtitle {
        font-size: 0.95rem;
    }
    
    .footer-links {
        font-size: 0.9rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .header-logo {
        width: 100px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .btn-lg {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}
