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

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            background-color: #f5f3ee;
            color: #1a1a2e;
            line-height: 1.6;
        }

        /* ============================================
           ÜST MAVİ BAR
        ============================================ */
        .top-bar {
            background-color: #4b5563;
            color: #fff;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .top-bar-left .firm-name {
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .top-bar-left .phones {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .top-bar-left .phones a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .top-bar-left .phones a:hover {
            color: #fecaca;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar-right .social-icons {
            display: flex;
            gap: 12px;
        }

        .top-bar-right .social-icons a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1.5px solid rgba(255,255,255,0.5);
            border-radius: 50%;
            transition: all 0.2s;
        }

        .top-bar-right .social-icons a:hover {
            background: rgba(255,255,255,0.15);
            border-color: #fff;
        }

        /* ============================================
           LOGO VE İLETİŞİM SATIRI
        ============================================ */
        .header-row {
            background-color: #fff;
            padding: 18px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .header-row .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .header-info-left {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .header-info-left .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #333;
        }

        .header-info-left .info-item .icon {
            color: #4b5563;
            font-size: 14px;
            min-width: 16px;
        }

        .header-info-left .info-item strong {
            color: #1a1a2e;
            font-weight: 700;
            font-size: 13px;
        }

        .header-info-left .info-item small {
            color: #777;
            font-size: 11px;
        }

        .logo-center {
            text-align: center;
        }

        .logo-center .logo-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .logo-center .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4b5563, #991b1b);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            font-weight: 800;
        }

        .logo-center .logo-text {
            font-size: 28px;
            font-weight: 800;
            color: #4b5563;
            letter-spacing: 2px;
        }

        .header-info-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
        }

        .header-info-right .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #333;
        }

        .header-info-right .info-item .icon {
            color: #4b5563;
            font-size: 14px;
        }

        .header-info-right .info-item a {
            color: #1a1a2e;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .header-info-right .info-item a:hover {
            color: #4b5563;
        }

        /* ============================================
           NAVİGASYON MENÜ - YENİ TASARIM
        ============================================ */
        .main-nav {
            background: linear-gradient(135deg, #4b5563, #2b3037);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0,0,0,0.15);
        }

        .main-nav .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .main-nav ul li {
            position: relative;
        }

        .main-nav ul li:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 20px;
            background: rgba(255,255,255,0.25);
        }

        .main-nav ul li a {
            display: block;
            padding: 16px 28px;
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }

        .main-nav ul li a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #b91c1c;
            transition: width 0.3s ease;
        }

        .main-nav ul li a:hover {
            color: #fecaca;
        }

        .main-nav ul li a:hover::after {
            width: 60%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
            padding: 14px 20px;
            width: 100%;
            text-align: center;
            background: rgba(255,255,255,0.08);
            font-family: inherit;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .mobile-menu-btn:hover {
            background: rgba(255,255,255,0.15);
        }

        /* ============================================
           HERO / BANNER
        ============================================ */
        .hero-section {
            position: relative;
            width: 100%;
            height: 420px;
            overflow: hidden;
            background: linear-gradient(135deg, #2b3037 0%, #3f4752 40%, #991b1b 100%);
        }

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.58;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(20, 20, 20, 0.20),
        rgba(40, 20, 20, 0.45)
    );
}

        .hero-section .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-badge {
            text-align: center;
        }

        .hero-badge .badge-name {
            background: #b91c1c;
            color: #fff;
            padding: 8px 30px;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 0;
        }

        .hero-badge .badge-year {
            background: #991b1b;
            color: #fff;
            padding: 8px 30px;
            font-size: 14px;
            font-weight: 700;
            display: inline-block;
        }

        /* ============================================
           ANA BAŞLIK ALANI
        ============================================ */
        .main-title-section {
            background-color: #f5f3ee;
            padding: 50px 20px 30px;
            text-align: center;
        }

        .main-title-section h1 {
            font-size: 36px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .main-title-section h2 {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 20px;
        }

        .main-title-section h2 .highlight {
            color: #b91c1c;
            font-weight: 700;
        }

        .main-title-section .desc {
            max-width: 900px;
            margin: 0 auto;
            font-size: 14px;
            color: #444;
            line-height: 1.8;
        }

        /* ============================================
           HİZMET KUTULARI
        ============================================ */
        .services-section {
            background-color: #e5e7eb;
            padding: 40px 0;
        }

        .services-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .service-box {
            background-color: #e5e7eb;
            padding: 30px 20px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,0.4);
            transition: background-color 0.3s;
        }

        .service-box:last-child {
            border-right: none;
        }

        .service-box:hover {
            background-color: #d1d5db;
        }

.service-box .service-icon {
    width: 100%;
    max-width: 300px;
    height: 230px;
    margin: 0 auto 22px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.service-box .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

        .service-box h3 {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        .service-box p {
            font-size: 13px;
            color: #333;
            line-height: 1.6;
        }

        /* ============================================
           HAKKIMIZDA
        ============================================ */
        .about-section {
            background-color: #fff;
            padding: 60px 0;
        }

        .about-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            flex: 0 0 45%;
        }

        .about-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border: 3px solid #4b5563;
        }

        .about-content {
            flex: 1;
        }

        .about-content .section-label {
            color: #4b5563;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .about-content h2 {
            font-size: 28px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 20px;
        }

        .about-content p {
            font-size: 14px;
            color: #444;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .about-content .about-list {
            list-style: none;
            margin-top: 20px;
        }

        .about-content .about-list li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            font-size: 14px;
            color: #333;
            border-bottom: 1px dashed #ddd;
        }

        .about-content .about-list li::before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #4b5563;
            font-weight: 700;
        }

        /* ============================================
           NEDEN BİZİ SEÇMELİSİNİZ
        ============================================ */
        .why-us-section {
            background-color: #f5f3ee;
            padding: 60px 0;
        }

        .why-us-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header .section-label {
            color: #4b5563;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .section-header h2 {
            font-size: 28px;
            font-weight: 800;
            color: #1a1a2e;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .why-card {
            background: #fff;
            border: 1px solid #ddd;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.2s;
        }

        .why-card:hover {
            border-color: #4b5563;
            box-shadow: 0 4px 15px rgba(10,95,163,0.1);
        }

        .why-card .why-icon {
            width: 60px;
            height: 60px;
            background: #4b5563;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 15px;
        }

        .why-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        .why-card p {
            font-size: 13px;
            color: #555;
            line-height: 1.6;
        }

        /* ============================================
           İLETİŞİM
        ============================================ */
        .contact-section {
            background: linear-gradient(135deg, #4b5563, #2b3037);
            padding: 60px 0;
            color: #fff;
        }

        .contact-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-section .section-header h2 {
            color: #fff;
        }

        .contact-section .section-header .section-label {
            color: #d1d5db;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
        }

        .contact-info .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.15);
        }

        .contact-info .contact-item .c-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #d1d5db;
            flex-shrink: 0;
        }

        .contact-info .contact-item .c-text strong {
            display: block;
            font-size: 13px;
            color: #d1d5db;
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-info .contact-item .c-text span,
        .contact-info .contact-item .c-text a {
            font-size: 15px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info .contact-item .c-text a:hover {
            color: #d1d5db;
        }

        .contact-form {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 30px;
        }

        .contact-form h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            color: #d1d5db;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.08);
            color: #fff;
            font-size: 14px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #d1d5db;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .btn-submit {
            background: #b91c1c;
            color: #fff;
            border: none;
            padding: 14px 35px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
        }

        .btn-submit:hover {
            background: #7f1d1d;
        }

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            background-color: #0d1b2a;
            color: #aaa;
            padding: 40px 0 20px;
        }

        .footer .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4b5563;
            display: inline-block;
        }

        .footer-col p {
            font-size: 13px;
            line-height: 1.8;
            color: #aaa;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: #aaa;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s;
        }
		.footer-col ul li {
    color: #aaa;
    font-size: 13px;
    line-height: 1.7;
}

        .footer-col ul li a:hover {
            color: #d1d5db;
        }

        .footer-bottom {
            border-top: 1px solid #1a2d3d;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom p {
            font-size: 12px;
            color: #777;
        }

        .footer-phones {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .footer-phones a {
            color: #d1d5db;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
        }

        /* ============================================
           MODERN SABİT BUTONLAR - LOGOSAL
        ============================================ */
        .fixed-call {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .fixed-call a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.25);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .fixed-call a::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50%;
            animation: pulse-ring 2s infinite;
            z-index: -1;
        }

        @keyframes pulse-ring {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
            100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
        }

        .fixed-call a.phone-btn {
            background: linear-gradient(135deg, #4b5563, #2b3037);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .fixed-call a.phone-btn::before {
            background: rgba(10, 95, 163, 0.5);
        }

        .fixed-call a.phone-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(10,95,163,0.4);
        }

        .fixed-call a.whatsapp-btn {
            background: linear-gradient(135deg, #25d366, #128c7e);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .fixed-call a.whatsapp-btn::before {
            background: rgba(37, 211, 102, 0.5);
        }

        .fixed-call a.whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37,211,102,0.4);
        }

.fixed-call a svg,
.fixed-call a i {
    width: 26px;
    height: 26px;

    color: #fff;
    fill: #fff;

    font-size: 26px;

    display: flex;
    align-items: center;
    justify-content: center;
}
        /* Tooltip */
        .fixed-call a .tooltip {
            position: absolute;
            right: 68px;
            background: #1a1a2e;
            color: #fff;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .fixed-call a .tooltip::after {
            content: "";
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 6px 0 6px 6px;
            border-style: solid;
            border-color: transparent transparent transparent #1a1a2e;
        }

        .fixed-call a:hover .tooltip {
            opacity: 1;
            visibility: visible;
            right: 72px;
        }

        /* ============================================
           MOBİL UYUMLULUK
        ============================================ */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-box {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.4);
            }

            .service-box:nth-child(odd) {
                border-right: 1px solid rgba(255,255,255,0.4);
            }

            .about-section .container {
                flex-direction: column;
            }

            .about-image {
                flex: none;
                width: 100%;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .top-bar-left {
                flex-direction: column;
                gap: 6px;
            }

            .top-bar-left .phones {
                justify-content: center;
            }

            .header-row .container {
                flex-direction: column;
                text-align: center;
            }

            .header-info-left,
            .header-info-right {
                align-items: center;
            }

            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            .main-nav ul.active {
                display: flex;
            }

            .main-nav ul li:not(:last-child)::after {
                display: none;
            }

            .main-nav ul li a {
                border-bottom: 1px solid rgba(255,255,255,0.1);
                padding: 14px 20px;
                text-align: center;
            }

            .main-nav ul li a:hover::after {
                width: 40%;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-section {
                height: 280px;
            }

            .main-title-section h1 {
                font-size: 24px;
            }

            .main-title-section h2 {
                font-size: 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-box {
                border-right: none !important;
                border-bottom: 1px solid rgba(255,255,255,0.4);
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            /* Mobil sabit butonlar */
            .fixed-call {
                position: fixed !important;
                left: auto !important;
                right: 18px !important;
                bottom: 18px !important;

                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;

                gap: 12px !important;
                z-index: 9999 !important;
            }

            .fixed-call a {
                width: 54px;
                height: 54px;
            }

            .fixed-call a i {
                font-size: 25px;
            }

            .fixed-call a .tooltip {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .top-bar-left .phones {
                flex-direction: column;
                gap: 4px;
            }

            .hero-section {
                height: 220px;
            }

            .hero-badge .badge-name {
                font-size: 14px;
                padding: 6px 20px;
            }

            .hero-badge .badge-year {
                font-size: 12px;
                padding: 6px 20px;
            }

            .fixed-call a {
                width: 48px;
                height: 48px;
            }

            .fixed-call a svg {
                width: 22px;
                height: 22px;
            }
        }

        /* LOGO */
        .logo-center .logo-box {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-center .site-logo {
            width: 220px !important;
            max-width: 220px !important;
            height: auto !important;
            display: block;
        }

        /* MOBİL HEADER SADELEŞTİRME */
        @media (max-width: 768px) {
            .top-bar,
            .header-info-left,
            .header-info-right {
                display: none !important;
            }

            .header-row {
                padding: 18px 0 !important;
            }

            .header-row .container {
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
            }

            .logo-center {
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .logo-center img {
                width: 220px !important;
                max-width: 220px !important;
                height: auto !important;
                display: block !important;
            }

            .hero-badge .badge-name {
                display: none;
            }

            .hero-badge .badge-year {
                font-size: 13px;
                padding: 7px 18px;
                background: rgba(153,27,27,0.9);
                position: relative;
                top: 70px;
            }
        }

        /* REFERANSLAR */
        .references-section {
            background: #f5f3ee;
            padding: 60px 0;
        }

        .references-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            overflow: hidden;
        }

        .references-slider {
            width: 100%;
            overflow: hidden;
            margin-top: 35px;
        }

        .references-track {
            display: flex;
            align-items: center;
            gap: 40px;
            width: max-content;
            animation: slideRefs 25s linear infinite;
        }

.reference-logo {
    width: 240px;
    height: 130px;
    background: #fff;
    border: 1px solid #ddd;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    padding: 8px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.reference-logo img {
    max-width: 235px;
    max-height: 120px;
    object-fit: contain;
    display: block;
}

        @keyframes slideRefs {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .references-slider:hover .references-track {
            animation-play-state: paused;
        }

@media (max-width: 768px) {
    .reference-logo {
        width: 210px;
        height: 115px;
        padding: 8px;
    }

    .reference-logo img {
        max-width: 200px;
        max-height: 100px;
        object-fit: contain;
    }
	.footer-address {
    margin-top: 15px;
    line-height: 1.8 !important;
    color: #b8c0c8 !important;
    font-size: 13px !important;
}

    .references-track {
        gap: 25px;
        animation-duration: 18s;
    }
@media (max-width: 768px) {
    .service-box .service-icon {
        max-width: 340px;
        height: 230px;
    }
	
}
