/* Genel Stiller */
body {
    padding-top: 120px;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    font-size: 0.9rem;
    background: #0f172a !important;
    color: #fff !important;
}

.top-bar a {
    color: #fff !important;
    transition: all 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.top-bar .bi {
    font-size: 1.1rem;
    color: #fff !important;
}

/* Sosyal Medya İkonları */
.top-bar .bi-youtube:hover {
    color: #FF0000 !important;
}

.top-bar .bi-instagram:hover {
    color: #E1306C !important;
}

.top-bar .bi-twitter-x:hover {
    color: #000000 !important;
}

/* Navbar */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.3s ease;
    top: 40px;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1020;
}

.navbar .navbar-brand,
.navbar .navbar-brand span,
.navbar .navbar-brand i {
    color: #0f172a !important;
}

.nav-link {
    font-weight: 600;
    color: #0f172a !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #0f172a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar .btn-dark {
    background: #0f172a !important;
    color: #fff !important;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(15,23,42,0.08);
}

.navbar .btn-dark:hover {
    background: #1e293b !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15,23,42,0.15);
}

/* Hero/Slider Section */
.hero-slider-section {
    min-height: 520px;
    background: #0f172a !important;
    position: relative;
    overflow: hidden;
}
.hero-slider-section .display-3 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}
.hero-slider-section .btn-danger {
    background: #c00 !important;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(200,0,0,0.08);
    transition: background 0.2s;
}
.hero-slider-section .btn-danger:hover {
    background: #a00 !important;
}
.hero-truck-img {
    filter: drop-shadow(0 8px 32px rgba(30,51,80,0.18));
}

/* Booking & Call Section */
.hero-booking-section {
    margin-top: -60px;
    z-index: 2;
    position: relative;
}
.hero-booking-section .bg-white {
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(30,51,80,0.10);
}
.hero-booking-section input.form-control {
    border-radius: 8px;
    font-size: 1rem;
}
.hero-booking-section .btn-danger {
    background: #c00 !important;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.05rem;
}
.hero-booking-section .btn-danger:hover {
    background: #a00 !important;
}

@media (max-width: 991px) {
    .hero-slider-section {
        min-height: 400px;
        padding: 40px 0 0 0;
    }
    .hero-booking-section {
        margin-top: 0;
    }
    .hero-truck-img {
        max-height: 180px !important;
    }
}
@media (max-width: 767px) {
    .hero-slider-section {
        min-height: 320px;
        padding: 32px 0 0 0;
    }
    .hero-slider-section .display-3 {
        font-size: 2.1rem;
    }
    .hero-booking-section .bg-white {
        border-radius: 10px;
        padding: 1.2rem !important;
    }
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn-primary {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
}

/* Footer */
footer {
    margin-top: auto;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .hero-slider-section {
        margin-top: -100px;
        text-align: center;
    }
    
    .hero-slider-section .btn {
        margin-top: 20px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .navbar .btn-primary {
        margin-top: 1rem;
        width: 100%;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1.25rem;
        line-height: 1;
        background-color: transparent;
        border: 1px solid #0f172a;
        border-radius: 0.375rem;
    }
    
    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(15, 23, 42, 0.25);
    }
    
    .navbar-toggler-icon {
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }
}

.aracimi-sat-btn {
    background: transparent !important;
    border: 3px solid #0f172a !important;
    color: #0f172a !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    border-radius: 18px !important;
}
.aracimi-sat-btn i {
    color: #0f172a !important;
    transition: color 0.25s cubic-bezier(.4,0,.2,1);
}
.aracimi-sat-btn:hover, .aracimi-sat-btn:focus {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
    box-shadow: 0 4px 16px rgba(15,23,42,0.10);
}
.aracimi-sat-btn:hover i, .aracimi-sat-btn:focus i {
    color: #fff !important;
}

.btn-white-custom {
    background: #fff !important;
    color: #0f172a !important;
    border: 2px solid #fff !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
}
.btn-white-custom:hover, .btn-white-custom:focus {
    background: #fff !important;
    color: #0b2447 !important;
    border-color: #fff !important;
    text-decoration: none;
}

.call-card-nextjs {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(15,23,42,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 2rem 2.2rem;
    min-width: 320px;
    min-height: 120px;
}
.call-card-nextjs:hover {
    box-shadow: 0 12px 40px rgba(15,23,42,0.16);
    transform: translateY(-2px) scale(1.02);
}
.icon-circle {
    background: linear-gradient(135deg, #e0e7ef 0%, #f8fafc 100%);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(15,23,42,0.08);
}
.icon-circle i {
    color: #0f172a;
    font-size: 2rem;
}
.call-number-nextjs {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0f172a !important;
    letter-spacing: 1px;
    font-size: 2.1rem;
    transition: color 0.2s;
}
.call-number-nextjs:hover {
    color: #c00 !important;
    text-decoration: underline;
}

.services-section {
    background: #f8fafc;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.services-grid {
    row-gap: 2.2rem;
}
.service-card-nextjs {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.08);
    transition: box-shadow 0.22s, transform 0.22s;
    border: none;
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 270px;
}
.service-card-nextjs:hover {
    box-shadow: 0 12px 40px rgba(15,23,42,0.16);
    transform: translateY(-4px) scale(1.03);
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ef 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15,23,42,0.08);
    margin-bottom: 1rem;
    transition: background 0.2s, color 0.2s;
}
.service-card-nextjs:hover .service-icon {
    background: #0f172a;
    color: #fff;
}
.service-card-nextjs h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0f172a;
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
}
.service-card-nextjs p {
    font-size: 1.01rem;
    color: #64748b;
}
@media (max-width: 991px) {
    .service-card-nextjs {
        min-height: 220px;
        padding: 1.5rem 1rem 1.2rem 1rem;
    }
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

.about-section {
    background: #fff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.about-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #0f172a;
    font-size: 2.1rem;
    letter-spacing: -1px;
}
.about-section p.lead {
    font-size: 1.15rem;
    color: #334155;
    font-weight: 500;
}
.about-section ul {
    margin-bottom: 1.5rem;
}
.about-section .btn-outline-primary {
    background: #fff;
    color: #0f172a !important;
    border: 2px solid #0f172a !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.about-section .btn-outline-primary:hover {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
}
.about-section img {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.10);
    max-width: 100%;
    height: auto;
}
@media (max-width: 991px) {
    .about-section {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }
    .about-section img {
        max-height: 180px;
    }
}

.about-section-modern {
    background: #f8fafc;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.about-modern-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 40px rgba(15,23,42,0.13);
    border: none;
    position: relative;
    z-index: 2;
}
.about-modern-card h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #0f172a;
    font-size: 2.2rem;
    letter-spacing: -1px;
}
.about-modern-card p.lead {
    font-size: 1.13rem;
    color: #334155;
    font-weight: 500;
}
.about-stat {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ef 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #0f172a;
    margin: 0 auto 0.5rem auto;
    box-shadow: 0 2px 8px rgba(15,23,42,0.08);
    transition: background 0.2s, color 0.2s;
}
.about-modern-card .btn-outline-primary {
    background: #fff;
    color: #0f172a !important;
    border: 2px solid #0f172a !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.about-modern-card .btn-outline-primary:hover {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
}
.about-modern-img {
    border-radius: 50%;
    box-shadow: 0 8px 40px rgba(15,23,42,0.13);
    max-width: 320px;
    max-height: 320px;
    object-fit: cover;
    z-index: 2;
}
.about-img-bg {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #e0e7ef 0%, #f8fafc 100%);
    z-index: 1;
    filter: blur(2px);
}
@media (max-width: 991px) {
    .about-section-modern {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }
    .about-modern-img, .about-img-bg {
        max-width: 180px;
        max-height: 180px;
        width: 180px;
        height: 180px;
    }
}

.about-yellow-section {
    background: linear-gradient(120deg, #ffe066 60%, #fffbe6 100%);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.about-yellow-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #222;
    font-size: 2.5rem;
    letter-spacing: -1px;
}
.about-yellow-section ul {
    margin-bottom: 1.5rem;
}
.about-yellow-section li {
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.about-main-img {
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(30,30,30,0.13);
    max-width: 340px;
    width: 100%;
    height: auto;
}
.about-thumb-img {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(30,30,30,0.18);
    border: 4px solid #fff;
    position: absolute;
    left: 60%;
    bottom: -30px;
    width: 180px;
    z-index: 2;
}
.about-stat-yellow {
    background: #fffbe6;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30,30,30,0.08);
    min-width: 120px;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.about-stat-yellow i {
    color: #f59e42;
    font-size: 2.1rem;
}
.btn-black-custom {
    background: #111 !important;
    color: #fff !important;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.08rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30,30,30,0.08);
}
.btn-black-custom:hover, .btn-black-custom:focus {
    background: #222 !important;
    color: #ffe066 !important;
    box-shadow: 0 4px 16px rgba(30,30,30,0.13);
}
@media (max-width: 991px) {
    .about-main-img {
        max-width: 220px;
    }
    .about-thumb-img {
        width: 110px;
        left: 60%;
        bottom: -18px;
    }
    .about-stat-yellow {
        min-width: 90px;
        padding: 0.7rem 0.5rem;
    }
}

.about-exact-section {
    background: linear-gradient(120deg, #ffe066 60%, #fffbe6 100%);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    min-height: 600px;
}
.about-exact-section h2,
.about-exact-section p,
.about-exact-section li span {
    color: #fff !important;
}
.about-exact-section li i {
    color: #fff !important;
}
.about-exact-section li {
    font-size: 1.08rem;
    color: #111;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.about-img-wrapper {
    width: 410px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
}
.about-main-img2 {
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(30,30,30,0.13);
    width: 100%;
    height: auto;
}
.about-thumb-img2 {
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(30,30,30,0.18);
    border: 4px solid #fff;
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 180px;
    z-index: 2;
}
.about-stat-exact {
    background: rgba(255,255,255,0.08) !important;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30,30,30,0.08);
    min-width: 120px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    align-items: center;
}
.about-stat-exact i,
.about-stat-exact .fw-bold,
.about-stat-exact .text-light {
    color: #fff !important;
}
.btn-white-custom {
    background: #fff !important;
    color: #0f172a !important;
    border: 2px solid #fff !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
}
.btn-white-custom:hover, .btn-white-custom:focus {
    background: #fff !important;
    color: #0b2447 !important;
    border-color: #fff !important;
    text-decoration: none;
}
@media (max-width: 991px) {
    .about-main-img2 {
        max-width: 220px;
    }
    .about-thumb-img2 {
        width: 110px;
        right: -12px;
        bottom: -12px;
    }
    .about-stat-exact {
        min-width: 90px;
        padding: 0.7rem 0.5rem;
    }
    .about-img-wrapper {
        width: 100%;
        max-width: 320px;
    }
}
@media (max-width: 767px) {
    .about-exact-section h2 {
        font-size: 2rem;
    }
    .about-img-wrapper {
        max-width: 100%;
        width: 100%;
    }
    .about-main-img2 {
        max-width: 100%;
    }
    .about-thumb-img2 {
        width: 80px;
        right: -8px;
        bottom: -8px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #f8fafc;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

.gallery-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-item {
        height: 220px !important;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8fafc;
}

.accordion-button {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #0f172a !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(15,23,42,0.12) !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(15,23,42,0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }
    
    .accordion-body {
        font-size: 0.95rem;
        padding: 1.2rem;
    }
} 
/* CKEditor Image Resizing */


/* Mobile Bottom Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.mobile-bottom-bar .btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 12px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-bottom-bar .btn-phone {
    background: #3b82f6;
    color: white;
    border: 2px solid #3b82f6;
}

.mobile-bottom-bar .btn-phone:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
}

.mobile-bottom-bar .btn-whatsapp {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.mobile-bottom-bar .btn-whatsapp:hover {
    background: #22c55e;
    border-color: #22c55e;
    transform: translateY(-2px);
}

/* Show bottom bar only on mobile */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    /* Add bottom padding to body to prevent content overlap */
    body {
        padding-bottom: 80px;
    }
}

/* About Page Styles */
.hero-about {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 60vh;
}

.min-vh-50 {
    min-height: 50vh;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    line-height: 1;
    color: #0f172a;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
}

.timeline-content {
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-icon {
    position: relative;
    z-index: 2;
}

/* About Page Color Overrides */
.hero-about .btn-light {
    background: #fff !important;
    color: #0f172a !important;
    border: 2px solid #fff;
    font-weight: 600;
}

.hero-about .btn-light:hover {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff;
}

.hero-about .btn-outline-light:hover {
    background: #fff !important;
    color: #0f172a !important;
}

.bg-primary {
    background-color: #0f172a !important;
}

.text-primary {
    color: #0f172a !important;
}

.bg-primary.bg-opacity-10 {
    background-color: rgba(15, 23, 42, 0.1) !important;
}

.timeline-icon.bg-primary {
    background-color: #0f172a !important;
}

.timeline-content .text-primary {
    color: #0f172a !important;
}

.timeline-content .bg-primary.bg-opacity-10 {
    background-color: rgba(15, 23, 42, 0.1) !important;
}

.timeline-content .bg-success.bg-opacity-10 {
    background-color: rgba(34, 197, 94, 0.1) !important;
}

.timeline-content .bg-warning.bg-opacity-10 {
    background-color: rgba(251, 191, 36, 0.1) !important;
}

.timeline-content .bg-info.bg-opacity-10 {
    background-color: rgba(59, 130, 246, 0.1) !important;
}

.timeline-icon.bg-success {
    background-color: #22c55e !important;
}

.timeline-icon.bg-warning {
    background-color: #fbbf24 !important;
}

.timeline-icon.bg-info {
    background-color: #3b82f6 !important;
}

.text-success {
    color: #22c55e !important;
}

.text-warning {
    color: #fbbf24 !important;
}

.text-info {
    color: #3b82f6 !important;
}

/* CTA Section */
.bg-primary.text-white {
    background-color: #0f172a !important;
}

.bg-primary .btn-light {
    background: #fff !important;
    color: #0f172a !important;
    border: none;
    font-weight: 600;
}

.bg-primary .btn-light:hover {
    background: #f8fafc !important;
    color: #0f172a !important;
    transform: translateY(-2px);
}

.bg-primary .btn-success {
    background: #25d366 !important;
    border: none;
}

.bg-primary .btn-success:hover {
    background: #22c55e !important;
    transform: translateY(-2px);
}

.bg-primary .btn-outline-light:hover {
    background: #fff !important;
    color: #0f172a !important;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-icon {
        margin-left: 30px;
    }
    
    .hero-about {
        min-height: 50vh;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
.service-card-nextjs {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.08);
    transition: box-shadow 0.22s, transform 0.22s;
    border: none;
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 270px;
}
.service-card-nextjs:hover {
    box-shadow: 0 12px 40px rgba(15,23,42,0.16);
    transform: translateY(-4px) scale(1.03);
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ef 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15,23,42,0.08);
    margin-bottom: 1rem;
    transition: background 0.2s, color 0.2s;
}
.service-card-nextjs:hover .service-icon {
    background: #0f172a;
    color: #fff;
}
.service-card-nextjs h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0f172a;
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
}
.service-card-nextjs p {
    font-size: 1.01rem;
    color: #64748b;
}
@media (max-width: 991px) {
    .service-card-nextjs {
        min-height: 220px;
        padding: 1.5rem 1rem 1.2rem 1rem;
    }
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

.about-section {
    background: #fff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.about-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #0f172a;
    font-size: 2.1rem;
    letter-spacing: -1px;
}
.about-section p.lead {
    font-size: 1.15rem;
    color: #334155;
    font-weight: 500;
}
.about-section ul {
    margin-bottom: 1.5rem;
}
.about-section .btn-outline-primary {
    background: #fff;
    color: #0f172a !important;
    border: 2px solid #0f172a !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.about-section .btn-outline-primary:hover {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
}
.about-section img {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.10);
    max-width: 100%;
    height: auto;
}
@media (max-width: 991px) {
    .about-section {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }
    .about-section img {
        max-height: 180px;
    }
}

.about-section-modern {
    background: #f8fafc;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.about-modern-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 40px rgba(15,23,42,0.13);
    border: none;
    position: relative;
    z-index: 2;
}
.about-modern-card h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #0f172a;
    font-size: 2.2rem;
    letter-spacing: -1px;
}
.about-modern-card p.lead {
    font-size: 1.13rem;
    color: #334155;
    font-weight: 500;
}
.about-stat {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ef 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #0f172a;
    margin: 0 auto 0.5rem auto;
    box-shadow: 0 2px 8px rgba(15,23,42,0.08);
    transition: background 0.2s, color 0.2s;
}
.about-modern-card .btn-outline-primary {
    background: #fff;
    color: #0f172a !important;
    border: 2px solid #0f172a !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.about-modern-card .btn-outline-primary:hover {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
}
.about-modern-img {
    border-radius: 50%;
    box-shadow: 0 8px 40px rgba(15,23,42,0.13);
    max-width: 320px;
    max-height: 320px;
    object-fit: cover;
    z-index: 2;
}
.about-img-bg {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #e0e7ef 0%, #f8fafc 100%);
    z-index: 1;
    filter: blur(2px);
}
@media (max-width: 991px) {
    .about-section-modern {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }
    .about-modern-img, .about-img-bg {
        max-width: 180px;
        max-height: 180px;
        width: 180px;
        height: 180px;
    }
}

.about-yellow-section {
    background: linear-gradient(120deg, #ffe066 60%, #fffbe6 100%);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.about-yellow-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #222;
    font-size: 2.5rem;
    letter-spacing: -1px;
}
.about-yellow-section ul {
    margin-bottom: 1.5rem;
}
.about-yellow-section li {
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.about-main-img {
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(30,30,30,0.13);
    max-width: 340px;
    width: 100%;
    height: auto;
}
.about-thumb-img {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(30,30,30,0.18);
    border: 4px solid #fff;
    position: absolute;
    left: 60%;
    bottom: -30px;
    width: 180px;
    z-index: 2;
}
.about-stat-yellow {
    background: #fffbe6;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30,30,30,0.08);
    min-width: 120px;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.about-stat-yellow i {
    color: #f59e42;
    font-size: 2.1rem;
}
.btn-black-custom {
    background: #111 !important;
    color: #fff !important;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.08rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30,30,30,0.08);
}
.btn-black-custom:hover, .btn-black-custom:focus {
    background: #222 !important;
    color: #ffe066 !important;
    box-shadow: 0 4px 16px rgba(30,30,30,0.13);
}
@media (max-width: 991px) {
    .about-main-img {
        max-width: 220px;
    }
    .about-thumb-img {
        width: 110px;
        left: 60%;
        bottom: -18px;
    }
    .about-stat-yellow {
        min-width: 90px;
        padding: 0.7rem 0.5rem;
    }
}

.about-exact-section {
    background: linear-gradient(120deg, #ffe066 60%, #fffbe6 100%);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    min-height: 600px;
}
.about-exact-section h2,
.about-exact-section p,
.about-exact-section li span {
    color: #fff !important;
}
.about-exact-section li i {
    color: #fff !important;
}
.about-exact-section li {
    font-size: 1.08rem;
    color: #111;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.about-img-wrapper {
    width: 410px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
}
.about-main-img2 {
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(30,30,30,0.13);
    width: 100%;
    height: auto;
}
.about-thumb-img2 {
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(30,30,30,0.18);
    border: 4px solid #fff;
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 180px;
    z-index: 2;
}
.about-stat-exact {
    background: rgba(255,255,255,0.08) !important;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30,30,30,0.08);
    min-width: 120px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    align-items: center;
}
.about-stat-exact i,
.about-stat-exact .fw-bold,
.about-stat-exact .text-light {
    color: #fff !important;
}
.btn-white-custom {
    background: #fff !important;
    color: #0f172a !important;
    border: 2px solid #fff !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
}
.btn-white-custom:hover, .btn-white-custom:focus {
    background: #fff !important;
    color: #0b2447 !important;
    border-color: #fff !important;
    text-decoration: none;
}
@media (max-width: 991px) {
    .about-main-img2 {
        max-width: 220px;
    }
    .about-thumb-img2 {
        width: 110px;
        right: -12px;
        bottom: -12px;
    }
    .about-stat-exact {
        min-width: 90px;
        padding: 0.7rem 0.5rem;
    }
    .about-img-wrapper {
        width: 100%;
        max-width: 320px;
    }
}
@media (max-width: 767px) {
    .about-exact-section h2 {
        font-size: 2rem;
    }
    .about-img-wrapper {
        max-width: 100%;
        width: 100%;
    }
    .about-main-img2 {
        max-width: 100%;
    }
    .about-thumb-img2 {
        width: 80px;
        right: -8px;
        bottom: -8px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #f8fafc;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

.gallery-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-item {
        height: 220px !important;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8fafc;
}

.accordion-button {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #0f172a !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(15,23,42,0.12) !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(15,23,42,0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }
    
    .accordion-body {
        font-size: 0.95rem;
        padding: 1.2rem;
    }
} 
.aracimi-sat-btn {
    background: transparent !important;
    border: 3px solid #0f172a !important;
    color: #0f172a !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    border-radius: 18px !important;
}
.aracimi-sat-btn i {
    color: #0f172a !important;
    transition: color 0.25s cubic-bezier(.4,0,.2,1);
}
.aracimi-sat-btn:hover, .aracimi-sat-btn:focus {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
    box-shadow: 0 4px 16px rgba(15,23,42,0.10);
}
.aracimi-sat-btn:hover i, .aracimi-sat-btn:focus i {
    color: #fff !important;
}

.btn-white-custom {
    background: #fff !important;
    color: #0f172a !important;
    border: 2px solid #fff !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
}
.btn-white-custom:hover, .btn-white-custom:focus {
    background: #fff !important;
    color: #0b2447 !important;
    border-color: #fff !important;
    text-decoration: none;
}

.call-card-nextjs {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(15,23,42,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 2rem 2.2rem;
    min-width: 320px;
    min-height: 120px;
}
.call-card-nextjs:hover {
    box-shadow: 0 12px 40px rgba(15,23,42,0.16);
    transform: translateY(-2px) scale(1.02);
}
.icon-circle {
    background: linear-gradient(135deg, #e0e7ef 0%, #f8fafc 100%);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(15,23,42,0.08);
}
.icon-circle i {
    color: #0f172a;
    font-size: 2rem;
}
.call-number-nextjs {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0f172a !important;
    letter-spacing: 1px;
    font-size: 2.1rem;
    transition: color 0.2s;
}
.call-number-nextjs:hover {
    color: #c00 !important;
    text-decoration: underline;
}

.services-section {
    background: #f8fafc;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.services-grid {
    row-gap: 2.2rem;
}
.service-card-nextjs {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.08);
    transition: box-shadow 0.22s, transform 0.22s;
    border: none;
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 270px;
}
.service-card-nextjs:hover {
    box-shadow: 0 12px 40px rgba(15,23,42,0.16);
    transform: translateY(-4px) scale(1.03);
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ef 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15,23,42,0.08);
    margin-bottom: 1rem;
    transition: background 0.2s, color 0.2s;
}
.service-card-nextjs:hover .service-icon {
    background: #0f172a;
    color: #fff;
}
.service-card-nextjs h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0f172a;
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
}
.service-card-nextjs p {
    font-size: 1.01rem;
    color: #64748b;
}
@media (max-width: 991px) {
    .service-card-nextjs {
        min-height: 220px;
        padding: 1.5rem 1rem 1.2rem 1rem;
    }
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

.about-section {
    background: #fff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.about-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #0f172a;
    font-size: 2.1rem;
    letter-spacing: -1px;
}
.about-section p.lead {
    font-size: 1.15rem;
    color: #334155;
    font-weight: 500;
}
.about-section ul {
    margin-bottom: 1.5rem;
}
.about-section .btn-outline-primary {
    background: #fff;
    color: #0f172a !important;
    border: 2px solid #0f172a !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.about-section .btn-outline-primary:hover {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
}
.about-section img {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.10);
    max-width: 100%;
    height: auto;
}
@media (max-width: 991px) {
    .about-section {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }
    .about-section img {
        max-height: 180px;
    }
}

.about-section-modern {
    background: #f8fafc;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.about-modern-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 40px rgba(15,23,42,0.13);
    border: none;
    position: relative;
    z-index: 2;
}
.about-modern-card h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #0f172a;
    font-size: 2.2rem;
    letter-spacing: -1px;
}
.about-modern-card p.lead {
    font-size: 1.13rem;
    color: #334155;
    font-weight: 500;
}
.about-stat {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ef 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #0f172a;
    margin: 0 auto 0.5rem auto;
    box-shadow: 0 2px 8px rgba(15,23,42,0.08);
    transition: background 0.2s, color 0.2s;
}
.about-modern-card .btn-outline-primary {
    background: #fff;
    color: #0f172a !important;
    border: 2px solid #0f172a !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.about-modern-card .btn-outline-primary:hover {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
}
.about-modern-img {
    border-radius: 50%;
    box-shadow: 0 8px 40px rgba(15,23,42,0.13);
    max-width: 320px;
    max-height: 320px;
    object-fit: cover;
    z-index: 2;
}
.about-img-bg {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #e0e7ef 0%, #f8fafc 100%);
    z-index: 1;
    filter: blur(2px);
}
@media (max-width: 991px) {
    .about-section-modern {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }
    .about-modern-img, .about-img-bg {
        max-width: 180px;
        max-height: 180px;
        width: 180px;
        height: 180px;
    }
}

.about-yellow-section {
    background: linear-gradient(120deg, #ffe066 60%, #fffbe6 100%);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.about-yellow-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #222;
    font-size: 2.5rem;
    letter-spacing: -1px;
}
.about-yellow-section ul {
    margin-bottom: 1.5rem;
}
.about-yellow-section li {
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.about-main-img {
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(30,30,30,0.13);
    max-width: 340px;
    width: 100%;
    height: auto;
}
.about-thumb-img {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(30,30,30,0.18);
    border: 4px solid #fff;
    position: absolute;
    left: 60%;
    bottom: -30px;
    width: 180px;
    z-index: 2;
}
.about-stat-yellow {
    background: #fffbe6;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30,30,30,0.08);
    min-width: 120px;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.about-stat-yellow i {
    color: #f59e42;
    font-size: 2.1rem;
}
.btn-black-custom {
    background: #111 !important;
    color: #fff !important;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.08rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30,30,30,0.08);
}
.btn-black-custom:hover, .btn-black-custom:focus {
    background: #222 !important;
    color: #ffe066 !important;
    box-shadow: 0 4px 16px rgba(30,30,30,0.13);
}
@media (max-width: 991px) {
    .about-main-img {
        max-width: 220px;
    }
    .about-thumb-img {
        width: 110px;
        left: 60%;
        bottom: -18px;
    }
    .about-stat-yellow {
        min-width: 90px;
        padding: 0.7rem 0.5rem;
    }
}

.about-exact-section {
    background: linear-gradient(120deg, #ffe066 60%, #fffbe6 100%);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    min-height: 600px;
}
.about-exact-section h2,
.about-exact-section p,
.about-exact-section li span {
    color: #fff !important;
}
.about-exact-section li i {
    color: #fff !important;
}
.about-exact-section li {
    font-size: 1.08rem;
    color: #111;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.about-img-wrapper {
    width: 410px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
}
.about-main-img2 {
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(30,30,30,0.13);
    width: 100%;
    height: auto;
}
.about-thumb-img2 {
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(30,30,30,0.18);
    border: 4px solid #fff;
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 180px;
    z-index: 2;
}
.about-stat-exact {
    background: rgba(255,255,255,0.08) !important;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30,30,30,0.08);
    min-width: 120px;
    margin-bottom: 1rem;
    margin-top: 1rem;
    align-items: center;
}
.about-stat-exact i,
.about-stat-exact .fw-bold,
.about-stat-exact .text-light {
    color: #fff !important;
}
.btn-white-custom {
    background: #fff !important;
    color: #0f172a !important;
    border: 2px solid #fff !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.06);
}
.btn-white-custom:hover, .btn-white-custom:focus {
    background: #fff !important;
    color: #0b2447 !important;
    border-color: #fff !important;
    text-decoration: none;
}
@media (max-width: 991px) {
    .about-main-img2 {
        max-width: 220px;
    }
    .about-thumb-img2 {
        width: 110px;
        right: -12px;
        bottom: -12px;
    }
    .about-stat-exact {
        min-width: 90px;
        padding: 0.7rem 0.5rem;
    }
    .about-img-wrapper {
        width: 100%;
        max-width: 320px;
    }
}
@media (max-width: 767px) {
    .about-exact-section h2 {
        font-size: 2rem;
    }
    .about-img-wrapper {
        max-width: 100%;
        width: 100%;
    }
    .about-main-img2 {
        max-width: 100%;
    }
    .about-thumb-img2 {
        width: 80px;
        right: -8px;
        bottom: -8px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #f8fafc;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

.gallery-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-item {
        height: 220px !important;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8fafc;
}

.accordion-button {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #0f172a !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(15,23,42,0.12) !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(15,23,42,0.1);
}

.accordion-button::after {