/*
 * MAGIC RENDERING - CUSTOM COLOR SCHEME
 * Blue & Green Color Palette
 * Overrides TOPBuilder default colors
 */

:root {
    /* Primary Colors - Blue */
    --primary-blue: #1976D2;        /* Main Blue */
    --primary-blue-dark: #0D47A1;   /* Dark Blue */
    --primary-blue-light: #42A5F5;  /* Light Blue */

    /* Secondary Colors - Green */
    --primary-green: #388E3C;       /* Main Green */
    --primary-green-dark: #1B5E20;  /* Dark Green */
    --primary-green-light: #66BB6A; /* Light Green */

    /* Accent Colors */
    --accent-teal: #00897B;         /* Teal */
    --accent-lime: #7CB342;         /* Lime Green */

    /* Neutral Colors */
    --text-dark: #263238;
    --text-light: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #BDBDBD;
}

/* ===== TOP HEADER ===== */
.top_header_area {
    background: var(--primary-blue-dark) !important;
}

.top_header_area *,
.top_header_area a,
.top_header_area li,
.top_header_area span,
.top_header_area i,
.top_header_area p,
.top_header_area .top_nav li,
.top_header_area .top_nav li a,
.top_header_area .top_nav a,
.top_header_area .navbar-nav > li > a {
    color: var(--text-light) !important;
}

.top_header_area .social_nav a:hover {
    color: var(--primary-green-light) !important;
}

/* ===== MAIN NAVIGATION ===== */
.header_aera {
    background: var(--text-light) !important;
    border-bottom: 3px solid var(--primary-blue) !important;
}

.header_aera::before {
    content: '';
    position: absolute;
    top: 0;
    left: -9999px;
    right: -9999px;
    bottom: 0;
    background: var(--text-light);
    z-index: -1;
    border-bottom: 3px solid var(--primary-blue);
}

.header_aera {
    position: relative;
}

.navbar-nav > li > a {
    color: var(--text-dark) !important;
}

.navbar-nav > li > a:hover {
    color: var(--primary-blue) !important;
}

/* Remove active state background */
.navbar-nav > li.active > a,
.navbar-nav > li.active > a:hover,
.navbar-nav > li.active > a:focus {
    color: var(--primary-blue) !important;
    background-color: transparent !important;
    background: none !important;
}

.dropdown-menu {
    border-top: 3px solid var(--primary-green) !important;
}

.dropdown-menu > li > a:hover {
    background: var(--primary-blue) !important;
    color: var(--text-light) !important;
}

/* ===== BUTTONS ===== */
.button_all,
.btn-primary,
.submit-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%) !important;
    border: none !important;
    color: var(--text-light) !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    padding: 12px 28px !important;
    display: inline-block !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button_all:hover,
.btn-primary:hover,
.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-green-dark) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(25, 118, 210, 0.4) !important;
    color: var(--text-light) !important;
    text-decoration: none !important;
}

.button_all span,
.btn-primary span,
.submit-btn span {
    color: var(--text-light) !important;
}

/* ===== SLIDER ===== */
.camera_wrap {
    min-height: 550px;
    max-height: 750px;
}

.camera_overlay {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.85) 0%, rgba(56, 142, 60, 0.85) 100%) !important;
}

.camera_caption h2,
.camera_caption h3,
.camera_caption p {
    color: var(--text-light) !important;
}

/* ===== SECTION SPACING ===== */
section {
    margin-bottom: 40px;
}

section:last-of-type {
    margin-bottom: 0;
}

/* ===== PROFESSIONAL BUILDER SECTION ===== */
.professional_builder {
    background: var(--gray-light);
    padding: 60px 0;
}

.professional_builder .tittle h2 {
    color: var(--primary-blue-dark);
}

.professional_builder .icon_box {
    border: 2px solid var(--primary-blue-light);
    transition: all 0.3s ease;
}

.professional_builder .icon_box:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(56, 142, 60, 0.05) 100%);
}

.professional_builder .icon_box i {
    color: var(--primary-blue);
}

.professional_builder .icon_box:hover i {
    color: var(--primary-green);
}

.professional_builder .icon_box h4 {
    color: var(--primary-blue-dark);
}

/* ===== ABOUT SECTION ===== */
.about_area {
    background: var(--text-light);
    padding: 60px 0;
}

.about_area .tittle h2,
.about_area .subtittle h2 {
    color: var(--primary-blue-dark);
}

.about_area .subtittle {
    border-left: 4px solid var(--primary-green);
}

/* ===== SERVICES SECTION ===== */
.our_services_area,
.what_we_area {
    background: var(--gray-light);
    padding: 60px 0 40px 0 !important;
    margin-bottom: 0 !important;
}

.our_services_area .tittle h2 {
    color: var(--primary-blue-dark);
}

.service_item {
    border: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.service_item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.2);
    transform: translateY(-4px);
}

.service_item i {
    color: var(--primary-green);
}

.service_item h4 {
    color: var(--primary-blue-dark);
}

.service_item:hover i {
    color: var(--primary-blue);
}

/* ===== LATEST BLOG/NEWS ===== */
.latest_blog_area {
    background: var(--text-light);
    padding: 60px 0 60px 0 !important;
    margin-bottom: 0 !important;
}

.latest_blog_area .tittle h2 {
    color: var(--primary-blue-dark);
}

.latest_blog_area .latest_blog {
    margin-bottom: 0 !important;
}

.latest_blog_area .blog_content {
    margin-bottom: 0 !important;
}

.blog_item {
    border: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

.blog_item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(56, 142, 60, 0.2);
}

.blog_item .blog_date {
    background: var(--primary-blue);
    color: var(--text-light);
}

.blog_item h4 a {
    color: var(--primary-blue-dark);
}

.blog_item h4 a:hover {
    color: var(--primary-green);
}

/* ===== ACHIEVEMENTS/COUNTERS ===== */
.achievments_area,
.our_achievments_area {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%) !important;
    position: relative;
    padding: 0 0 60px 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.achievments_area::before,
.our_achievments_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.achievments_area .container,
.our_achievments_area .container {
    position: relative;
    z-index: 2;
}

.achievments_area .tittle,
.our_achievments_area .tittle {
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    padding-top: 10px !important;
    position: relative;
    z-index: 2;
}

.achievments_area .achievments_row,
.our_achievments_area .achievments_row {
    position: relative;
    z-index: 2;
}

.achievments_area .completed,
.our_achievments_area .completed {
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.achievments_area .completed:last-child,
.our_achievments_area .completed:last-child {
    border-right: none;
}

.achievments_area .completed i,
.our_achievments_area .completed i {
    font-size: 48px;
    color: var(--text-light) !important;
    margin-bottom: 20px;
    display: block;
}

.achievments_item h2,
.achievments_item p,
.our_achievments_area h2,
.our_achievments_area h4,
.our_achievments_area h6 {
    color: var(--text-light) !important;
}

.counter {
    color: var(--text-light) !important;
    font-size: 52px !important;
    font-weight: 700 !important;
    display: block;
    margin-bottom: 10px;
}

.our_achievments_area h6 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .achievments_area .completed,
    .our_achievments_area .completed {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 20px;
    }

    .achievments_area .completed:last-child,
    .our_achievments_area .completed:last-child {
        border-bottom: none;
    }
}

/* ===== GALLERY/PORTFOLIO ===== */
.featured_works {
    background: var(--gray-light);
    padding: 0 0 50px 0 !important;
    margin-top: 30px !important;
}

.featured_works .tittle {
    margin-bottom: 40px !important;
    margin-top: 0 !important;
    padding-top: 10px !important;
}

.featured_works .tittle h2 {
    color: var(--primary-blue-dark);
}

.gallery_iner {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.featured_gallery > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.gallery_iner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery_iner:hover img {
    transform: scale(1.05);
}

.gallery_hover {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.95) 0%, rgba(56, 142, 60, 0.95) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery_iner:hover .gallery_hover {
    opacity: 1;
}

.gallery_hover h4,
.gallery_hover a,
.gallery_hover span {
    color: var(--text-light) !important;
    text-decoration: none;
}

.gallery_hover span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 4px;
    margin-top: 10px;
    display: inline-block;
}

.gallery-lightbox {
    display: block;
    text-decoration: none !important;
}

/* ===== FOOTER ===== */
.footer_area {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 30px 0;
}

.footer_about {
    margin-bottom: 30px;
}

.footer_about h2,
.footer_about h3 {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer_about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer_about img {
    max-width: 180px;
    margin-bottom: 20px;
}

.quick_link {
    list-style: none;
    padding: 0;
    column-count: 2;
    column-gap: 20px;
}

.quick_link li {
    margin-bottom: 12px;
    break-inside: avoid;
}

.quick_link li a {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.quick_link li a:hover {
    color: var(--text-light);
    padding-left: 10px;
    text-decoration: none;
}

.quick_link li a i {
    color: var(--text-light);
    margin-right: 8px;
    font-size: 12px;
}

/* Mobile: tek sütun */
@media (max-width: 768px) {
    .quick_link {
        column-count: 1;
    }
}

.socail_icon {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.socail_icon li {
    list-style: none;
}

.socail_icon li a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light) !important;
    transition: all 0.3s ease;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    max-width: 38px;
    max-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    line-height: 1;
    padding: 0;
    aspect-ratio: 1 / 1;
}

.socail_icon li a i {
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}

.socail_icon li a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    color: var(--text-light) !important;
}

.footer_contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer_contact .contact-item i {
    color: var(--text-light);
    font-size: 16px;
    width: 20px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer_contact .contact-item a,
.footer_contact .contact-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer_contact .contact-item a:hover {
    color: var(--text-light);
    text-decoration: none;
}

.copyright_area {
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.copyright_area span,
.copyright_area a {
    color: var(--text-light);
    font-size: 14px;
}

.copyright_area a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SEARCH FORM ===== */
.searchForm .input-group-addon {
    background: var(--primary-blue);
    color: var(--text-light);
    border-color: var(--primary-blue);
}

.searchForm .form-control:focus {
    border-color: var(--primary-green);
}

/* ===== SCROLL TO TOP ===== */
.scrollToTop {
    background: var(--primary-blue) !important;
    color: var(--text-light) !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
    z-index: 999 !important;
}

.scrollToTop:hover {
    background: var(--primary-green) !important;
    transform: translateY(-3px) !important;
}

/* ===== LINKS ===== */
a {
    color: var(--primary-blue);
}

a:hover {
    color: var(--primary-green);
}

/* ===== FORMS ===== */
.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.25);
}

/* ===== HEADINGS ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

.section-title {
    color: var(--primary-blue-dark);
}

.section-subtitle {
    color: var(--primary-green);
}

/* ===== MOBILE MENU - SIDEBAR FROM LEFT ===== */
.navbar-toggle {
    border-color: var(--primary-blue);
    position: relative;
    z-index: 1001;
}

.navbar-toggle .icon-bar {
    background-color: var(--primary-blue);
}

.navbar-toggle:hover {
    background-color: var(--primary-blue);
}

.navbar-toggle:hover .icon-bar {
    background-color: var(--text-light);
}

@media (max-width: 991px) {
    /* Sidebar menu from left */
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: -300px !important;
        width: 300px !important;
        height: 100vh !important;
        background: #fff !important;
        box-shadow: 2px 0 15px rgba(0,0,0,0.3);
        transition: left 0.3s ease-in-out !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        padding-top: 20px !important;
    }

    .navbar-collapse.in {
        left: 0 !important;
    }

    /* Overlay when menu is open */
    .navbar-collapse.in::before {
        content: '';
        position: fixed;
        top: 0;
        left: 300px;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.6);
        z-index: -1;
    }

    .navbar-nav {
        margin: 0 !important;
    }

    .navbar-nav > li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .navbar-nav > li > a {
        padding: 15px 20px !important;
        color: var(--text-dark) !important;
    }

    .navbar-nav > li > a:hover {
        background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(56, 142, 60, 0.1) 100%) !important;
        color: var(--primary-blue) !important;
    }
}

/* ===== IMAGE CONSISTENCY - ALL IMAGES SAME HEIGHT ===== */

/* Service Section Images - Main homepage service boxes */
.service__thumb {
    width: 100% !important;
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    overflow: hidden !important;
    border-radius: 6px;
    margin-bottom: 0;
    display: block !important;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service__thumb img {
    width: 100% !important;
    height: 100% !important;
    min-height: 240px !important;
    max-height: 240px !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.4s ease;
    display: block !important;
}

.service:hover .service__thumb img {
    transform: scale(1.08);
}

/* Service details below images */
.service__details {
    padding: 20px 10px 10px 10px;
    text-align: center;
}

.service__details h2 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.service__details h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service__details h2 a:hover {
    color: var(--primary-blue);
}

.service {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

/* Service Section Images - FORCED (for other service areas) */
.what_we_area .cns-img,
.our_services_area .cns-img,
.construction .cns-img {
    width: 100% !important;
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    overflow: hidden !important;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block !important;
}

.what_we_area .cns-img img,
.our_services_area .cns-img img,
.construction .cns-img img {
    width: 100% !important;
    height: 100% !important;
    min-height: 280px !important;
    max-height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease;
    display: block !important;
}

.what_we_area .construction:hover .cns-img img,
.our_services_area .construction:hover .cns-img img {
    transform: scale(1.05);
}

/* About Section Images */
.about_area img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Blog/News Images */
.latest_blog_area .blog_content img,
.latest_blog_area img,
.blog_content img,
.latest_blog img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    display: block !important;
    margin-bottom: 15px;
}

.blog_content:hover img {
    transform: scale(1.05);
}

/* Slider Images - Let plugin handle it */

/* ===== FULL MOBILE RESPONSIVE DESIGN ===== */

/* Tablets and Small Desktops */
@media (max-width: 991px) {
    /* Navigation */
    .navbar-nav > li > a {
        padding: 12px 10px;
        font-size: 14px;
    }

    /* Service Images */
    .service__thumb {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

    .service__thumb img {
        height: 100% !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

    .our_services_area .cns-img {
        height: 220px;
    }

    /* Gallery Images */
    .gallery_iner img {
        height: 220px;
    }

    /* Counter Font Size */
    .counter {
        font-size: 42px !important;
    }

    /* Section Padding */
    .professional_builder,
    .about_area,
    .our_services_area,
    .latest_blog_area,
    .featured_works {
        padding: 40px 0 !important;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Navigation */
    .navbar-nav > li > a {
        border-bottom: 1px solid rgba(25, 118, 210, 0.1);
        padding: 15px 20px;
    }

    .navbar-nav > li > a:hover {
        background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(56, 142, 60, 0.1) 100%);
    }

    /* Top Header - Stack Items */
    .top_header_area {
        text-align: center;
        padding: 10px 0;
    }

    .top_header_area .col-md-6 {
        text-align: center !important;
        margin-bottom: 5px;
    }

    /* Logo Size */
    .navbar-brand img {
        max-height: 50px;
    }

    /* Section Titles */
    .tittle h2 {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .tittle p {
        font-size: 14px;
    }

    /* Slider Text */
    .camera_caption h2 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .camera_caption h3 {
        font-size: 20px !important;
    }

    .camera_caption p {
        display: none !important;
    }

    .camera_wrap {
        min-height: 350px;
        max-height: 450px;
    }

    /* Professional Builder Icons */
    .professional_builder .icon_box {
        margin-bottom: 30px;
        padding: 20px;
    }

    .professional_builder .icon_box i {
        font-size: 42px;
    }

    /* Service Section */
    .service {
        margin-bottom: 30px;
    }

    .service__thumb {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }

    .service__thumb img {
        height: 100% !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }

    .our_services_area .construction {
        margin-bottom: 30px;
    }

    .our_services_area .cns-img {
        height: 250px;
    }

    /* About Section */
    .about_area .about_img {
        margin-bottom: 30px;
    }

    .about_area img {
        max-height: 300px;
        margin-bottom: 20px;
    }

    /* Gallery - 2 Columns on Mobile */
    .gallery_iner {
        margin-bottom: 20px;
    }

    .gallery_iner img {
        height: 200px;
    }

    /* Blog Items */
    .latest_blog_area .blog_item {
        margin-bottom: 30px;
    }

    .latest_blog_area .blog_item img {
        height: 200px;
    }

    /* Achievements/Counter */
    .counter {
        font-size: 36px !important;
    }

    .achievments_area .completed i,
    .our_achievments_area .completed i {
        font-size: 36px;
    }

    .our_achievments_area h6 {
        font-size: 12px;
    }

    /* Footer */
    .footer_area .widget {
        margin-bottom: 30px;
    }

    .footer_area h3,
    .footer_area h2 {
        font-size: 20px !important;
    }

    /* Buttons */
    .button_all,
    .btn-primary,
    .submit-btn {
        padding: 10px 24px !important;
        font-size: 13px !important;
        width: 100%;
        margin-bottom: 10px;
    }

    /* Section Padding */
    .professional_builder,
    .about_area,
    .our_services_area,
    .latest_blog_area,
    .featured_works {
        padding: 30px 0 !important;
    }

    .achievments_area,
    .our_achievments_area {
        padding: 0 0 30px 0 !important;
    }

    .achievments_area .tittle,
    .our_achievments_area .tittle {
        margin-top: 30px;
        margin-bottom: 20px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Titles Even Smaller */
    .tittle h2 {
        font-size: 24px !important;
    }

    /* Slider */
    .camera_caption h2 {
        font-size: 20px !important;
    }

    .camera_caption h3 {
        font-size: 18px !important;
    }

    .camera_caption p {
        font-size: 13px !important;
    }

    /* Service Images Smaller */
    .service__thumb {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }

    .service__thumb img {
        height: 100% !important;
        min-height: 180px !important;
        max-height: 180px !important;
    }

    .our_services_area .cns-img {
        height: 200px;
    }

    /* Gallery - Full Width on Extra Small */
    .gallery_iner img {
        height: 180px;
    }

    /* Blog Images */
    .latest_blog_area .blog_item img {
        height: 180px;
    }

    /* Counter */
    .counter {
        font-size: 32px !important;
    }

    /* Achievements Icons */
    .achievments_area .completed i,
    .our_achievments_area .completed i {
        font-size: 32px;
        margin-bottom: 15px;
    }

    /* Padding Reduction */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .professional_builder,
    .about_area,
    .our_services_area,
    .latest_blog_area,
    .featured_works {
        padding: 20px 0 !important;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .camera_caption h2 {
        font-size: 22px !important;
    }

    .camera_caption p {
        font-size: 13px !important;
        max-height: 60px;
        overflow: hidden;
    }

    .our_services_area .cns-img,
    .gallery_iner img,
    .latest_blog_area .blog_item img {
        height: 180px;
    }
}

/* ===== CUSTOM ADDITIONS ===== */
.badge-primary {
    background: var(--primary-blue);
}

.badge-success {
    background: var(--primary-green);
}

.alert-info {
    background-color: rgba(25, 118, 210, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue-dark);
}

.alert-success {
    background-color: rgba(56, 142, 60, 0.1);
    border-color: var(--primary-green);
    color: var(--primary-green-dark);
}

/* ===== ANIMATION ENHANCEMENTS ===== */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animated {
    background: linear-gradient(270deg, var(--primary-blue), var(--primary-green), var(--accent-teal));
    background-size: 600% 600%;
    animation: gradient-shift 8s ease infinite;
}
