/* ==========================================================================
   Header / Navbar - Tüm Tipler
   ========================================================================== */
.iwebt-header {
    transition: var(--iwebt-transition);
}

.navbar {
    padding: 15px 0;
    transition: var(--iwebt-transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    position:relative;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--iwebt-gray-800);
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--iwebt-gradient);
    transform: scaleX(0);
    transition: var(--iwebt-transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--iwebt-primary);
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: var(--iwebt-radius);
    box-shadow: var(--iwebt-shadow-lg);
    padding: 10px 0;
    min-width: 220px;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: var(--iwebt-transition-fast);
}

.dropdown-item:hover {
    background: var(--iwebt-gray-100);
    color: var(--iwebt-primary);
}

/* Header CTA Button */
.header-cta .btn {
    padding: 10px 24px;
}

/* ==========================================================================
   Topbar
   ========================================================================== */
/* ==========================================================================
   Topbar - Beyaz Arka Plan Versiyonu
   ========================================================================== */
.iwebt-topbar {
    background: #fff;
    color: var(--iwebt-gray-700);
    padding: 10px 0;
    border-bottom: 1px solid var(--iwebt-gray-200);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   Topbar Sol Taraf - Ayırıcılı İletişim Bilgileri
   ========================================================================== */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--iwebt-gray-700);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0 20px;
    position: relative;
}

/* İlk item için sol padding kaldır */
.topbar-item:first-child {
    padding-left: 0;
}

/* Son item için sağ padding kaldır */
.topbar-item:last-child {
    padding-right: 0;
}

/* Ayırıcı çizgi (|) */
.topbar-item:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    color: var(--iwebt-gray-400);
    font-weight: 300;
}

.topbar-item i {
    font-size: 0.9rem;
    color: var(--iwebt-primary);
}

a.topbar-item:hover {
    color: var(--iwebt-primary);
}

a.topbar-item:hover i {
    color: var(--iwebt-primary-dark);
}

/* ==========================================================================
   Topbar Sağ Taraf - Sosyal Medya İkonları
   ========================================================================== */
.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--iwebt-gray-600);
    background: transparent;
    border: 1.5px solid var(--iwebt-gray-400);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.topbar-social a:hover {
    color: #fff;
    /* transform: translateY(-2px); */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: socialPulse 0.4s ease;
}
@keyframes socialPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Sosyal Medya Özel Hover Renkleri */
.topbar-social a[title="Facebook"]:hover,
.topbar-social a[title="facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.topbar-social a[title="Twitter"]:hover,
.topbar-social a[title="twitter"]:hover,
.topbar-social a[title="X"]:hover {
    background: #000000;
    border-color: #000000;
}

.topbar-social a[title="Instagram"]:hover,
.topbar-social a[title="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

.topbar-social a[title="Linkedin"]:hover,
.topbar-social a[title="linkedin"]:hover,
.topbar-social a[title="LinkedIn"]:hover {
    background: #0A66C2;
    border-color: #0A66C2;
}

.topbar-social a[title="Youtube"]:hover,
.topbar-social a[title="youtube"]:hover,
.topbar-social a[title="YouTube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.topbar-social a[title="Pinterest"]:hover,
.topbar-social a[title="pinterest"]:hover {
    background: #E60023;
    border-color: #E60023;
}

.topbar-social a[title="Tiktok"]:hover,
.topbar-social a[title="tiktok"]:hover,
.topbar-social a[title="TikTok"]:hover {
    background: #000000;
    border-color: #000000;
}

.topbar-social a[title="Whatsapp"]:hover,
.topbar-social a[title="whatsapp"]:hover,
.topbar-social a[title="WhatsApp"]:hover {
    background: #25D366;
    border-color: #25D366;
}

.topbar-social a[title="Telegram"]:hover,
.topbar-social a[title="telegram"]:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.topbar-social a[title="Github"]:hover,
.topbar-social a[title="github"]:hover,
.topbar-social a[title="GitHub"]:hover {
    background: #333333;
    border-color: #333333;
}

.topbar-social a[title="Dribbble"]:hover,
.topbar-social a[title="dribbble"]:hover {
    background: #EA4C89;
    border-color: #EA4C89;
}

.topbar-social a[title="Behance"]:hover,
.topbar-social a[title="behance"]:hover {
    background: #1769FF;
    border-color: #1769FF;
}

/* Email için */
.topbar-social a[title="Email"]:hover,
.topbar-social a[title="email"]:hover,
.topbar-social a[title="Mail"]:hover {
    background: var(--iwebt-primary);
    border-color: var(--iwebt-primary);
}

/* ==========================================================================
   Opacity Header için Topbar (Şeffaf Header)
   ========================================================================== */
.header-type-opacity .iwebt-topbar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-type-opacity .topbar-item {
    color: rgba(255, 255, 255, 0.9);
}

.header-type-opacity .topbar-item i {
    color: rgba(255, 255, 255, 0.8);
}

.header-type-opacity .topbar-item:not(:last-child)::after {
    color: rgba(255, 255, 255, 0.4);
}

.header-type-opacity a.topbar-item:hover {
    color: #fff;
}

.header-type-opacity .topbar-social a {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.header-type-opacity .topbar-social a:hover {
    color: #fff;
    border-color: #fff;
}

/* Scroll sonrası gizle */
.header-type-opacity.header-scrolled .iwebt-topbar {
    display: none;
}

/* ==========================================================================
   Responsive Topbar
   ========================================================================== */
@media (max-width: 1199px) {
    .topbar-item {
        padding: 0 15px;
        font-size: 0.8rem;
    }
    
    .topbar-social a {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .topbar-left {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .topbar-item {
        padding: 0 12px;
    }
    
    .topbar-social {
        gap: 6px;
    }
    
    .topbar-social a {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Hero / Slider Section
   ========================================================================== */
.iwebt-slider-section {
    margin-top: 0;
}

.iwebt-main-slider {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
}

.iwebt-main-slider .swiper-slide {
    overflow: hidden;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.slide-overlay.overlay-light { background: rgba(0, 0, 0, 0.3); }
.slide-overlay.overlay-medium { background: rgba(0, 0, 0, 0.5); }
.slide-overlay.overlay-dark { background: rgba(0, 0, 0, 0.7); }
.slide-overlay.overlay-gradient {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 20px 20px;
}

.slide-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
}

.text-dark .slide-subtitle {
    background: rgba(0, 0, 0, 0.1);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-white .slide-title { color: #fff; }
.text-dark .slide-title { color: var(--iwebt-gray-900); }

.slide-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.text-center .slide-buttons { justify-content: center; }
.text-end .slide-buttons { justify-content: flex-end; }

.slide-btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
}

/* Slider Navigation */
/* .iwebt-main-slider .swiper-button-next,
.iwebt-main-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.iwebt-main-slider .swiper-button-next:hover,
.iwebt-main-slider .swiper-button-prev:hover {
    background: #fff;
    color: var(--iwebt-primary);
}

.iwebt-main-slider .swiper-button-next::after,
.iwebt-main-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

/* Slider Pagination */
.iwebt-main-slider .swiper-pagination {
    bottom: 30px;
} */

.iwebt-main-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.iwebt-main-slider .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

/* Boxed Layout */
.slider-layout-boxed {
    padding-top: 30px;
    padding-bottom: 30px;
    background: var(--iwebt-gray-100);
}



/* Mavi arka plan katmanı - yukarıdan %65 */
.slider-layout-boxed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75%;
    background: #1c3637; /* veya sadece mavi: #667eea */
    z-index: 0;
}

/* Container'ı shape'in üstüne çıkar */
.slider-layout-boxed .container {
    position: relative;
    z-index: 1;
}

/* Boxed Layout - Content Wrapper */
.slider-layout-boxed .slide-content-wrapper {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.slider-layout-boxed .slider-boxed-wrapper {
    border-radius: var(--iwebt-radius-lg);
    overflow: hidden;
    box-shadow: var(--iwebt-shadow-xl);
}

.slider-layout-boxed .iwebt-main-slider {
    height: 500px;
    min-height: 400px;
    max-height: 600px;
}

.slider-layout-boxed .slide-title {
    font-size: 2.5rem;
}

.slider-layout-boxed .slide-desc {
    font-size: 1.1rem;
}



@media (max-width: 768px) {
    
    .iwebt-main-slider {
        height: auto;
        min-height: 450px;
        max-height: none;
    }
    
    .slide-bg {
        min-height: 450px;
        padding: 60px 0;
    }
    
    /* Slide İçerik Padding */
    .slide-content {
        padding: 15px;
    }
    
    /* Subtitle Küçültme */
    .slide-subtitle {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }
    
    /* Başlık Küçültme */
    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    /* ⭐ Description için Line Clamp (Satır Sınırı) */
    .slide-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
        
        /* Satır sayısını sınırla */
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Maksimum 3 satır */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Buton Küçültme */
    .slide-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .slide-buttons {
        gap: 10px;
    }
    
    /* Navigation Gizle */
    .iwebt-main-slider .swiper-button-next,
    .iwebt-main-slider .swiper-button-prev {
        display: none;
    }
    
    /* Pagination Düzenleme */
    .iwebt-main-slider .swiper-pagination {
        bottom: 15px;
    }
    
    .iwebt-main-slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    /* ===== BOXED LAYOUT MOBİL ===== */
    .slider-layout-boxed {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .slider-layout-boxed::before {
        display: none;
    }
    
    .slider-layout-boxed .iwebt-main-slider {
        height: auto;
        min-height: 320px;
        max-height: none;
    }
    
    .slider-layout-boxed .slide-bg {
        min-height: 320px;
        padding: 40px 0;
    }
    
    .slider-layout-boxed .slide-content-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .slider-layout-boxed .slide-title {
        font-size: 1.3rem;
    }
    
    .slider-layout-boxed .slide-desc {
        font-size: 0.85rem;
        -webkit-line-clamp: 2; /* Boxed'da 2 satır */
    }
}

@media (max-width: 768px) {
    .mobvishidden{display:none;}
}

/* ==========================================================================
   Çok Küçük Ekranlar (480px ve altı)
   ========================================================================== */
@media (max-width: 480px) {
    
    .iwebt-main-slider {
        min-height: 380px;
    }
    
    .slide-bg {
        min-height: 380px;
        padding: 50px 0;
    }
    
    .slide-subtitle {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .slide-title {
        font-size: 1.25rem;
    }
    
    .slide-desc {
        font-size: 0.8rem;
        -webkit-line-clamp: 2; /* Çok küçük ekranlarda 2 satır */
    }
    
    .slide-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }
    
    /* Boxed Layout */
    .slider-layout-boxed .iwebt-main-slider {
        min-height: 280px;
    }
    
    .slider-layout-boxed .slide-bg {
        min-height: 280px;
    }
    
    .slider-layout-boxed .slide-title {
        font-size: 1.1rem;
    }
    
    .slider-layout-boxed .slide-desc {
        -webkit-line-clamp: 2;
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Çok Uzun Description için Opsiyonel Scroll
   ========================================================================== */
@media (max-width: 768px) {
    /* Eğer scroll istiyorsanız line-clamp yerine bunu kullanın */
    .slide-desc.scrollable {
        display: block;
        max-height: 60px;
        overflow-y: auto;
        -webkit-line-clamp: unset;
    }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.iwebt-services-section {
    background: var(--iwebt-white);
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--iwebt-radius-lg);
    background: var(--iwebt-white);
    transition: var(--iwebt-transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--iwebt-shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--iwebt-gradient);
    border-radius: 50%;
    transition: var(--iwebt-transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--iwebt-white);
}

.service-icon img {
    max-width: 50px;
    max-height: 50px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--iwebt-gray-900);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--iwebt-gray-600);
    line-height: 1.7;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.iwebt-testimonials-section {
    background: var(--iwebt-gray-100);
}

.testimonial-card {
    background: var(--iwebt-white);
    border-radius: var(--iwebt-radius-lg);
    padding: 30px;
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--iwebt-gray-700);
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: var(--iwebt-gray-200);
    line-height: 1;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--iwebt-gray-200);
}

.author-avatar {
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--iwebt-gray-900);
}

/* ==========================================================================
   References Section
   ========================================================================== */
.iwebt-references-section {
    background: var(--iwebt-white);
}

.reference-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100px;
    background: var(--iwebt-white);
    border: 1px solid var(--iwebt-gray-200);
    border-radius: var(--iwebt-radius);
    transition: var(--iwebt-transition);
}

.reference-card:hover {
    border-color: var(--iwebt-primary);
    box-shadow: var(--iwebt-shadow);
}

.reference-logo {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--iwebt-transition);
}

.reference-card:hover .reference-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.iwebt-about-section {
    background: var(--iwebt-white);
}

.about-image {
    position: relative;
    border-radius: var(--iwebt-radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--iwebt-gradient);
    border-radius: var(--iwebt-radius-lg);
    z-index: -1;
}

.about-content {
    padding-left: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.about-features li i {
    color: var(--iwebt-primary);
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.iwebt-cta-section {
    background: var(--iwebt-gradient);
    padding: 80px 0;
    color: var(--iwebt-white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--iwebt-white);
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.iwebt-contact-section {
    background: var(--iwebt-gray-100);
}

.contact-info-card {
    background: var(--iwebt-white);
    padding: 30px;
    border-radius: var(--iwebt-radius-lg);
    text-align: center;
    transition: var(--iwebt-transition);
    height: 100%;
}

.contact-info-card:hover {
    box-shadow: var(--iwebt-shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--iwebt-gray-100);
    border-radius: 50%;
    transition: var(--iwebt-transition);
}

.contact-icon i {
    font-size: 1.75rem;
    color: var(--iwebt-primary);
}

.contact-info-card:hover .contact-icon {
    background: var(--iwebt-gradient);
}

.contact-info-card:hover .contact-icon i {
    color: var(--iwebt-white);
}

.contact-form {
    background: var(--iwebt-white);
    padding: 40px;
    border-radius: var(--iwebt-radius-lg);
    box-shadow: var(--iwebt-shadow);
}

.map-wrapper {
    border-radius: var(--iwebt-radius-lg);
    overflow: hidden;
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.iwebt-footer {
    background: var(--iwebt-dark);
    color: var(--iwebt-gray-400);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 50px;
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--iwebt-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--iwebt-gradient);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--iwebt-gray-400);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--iwebt-transition);
}

.footer-links a:hover {
    color: var(--iwebt-white);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.75rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-list li i {
    color: var(--iwebt-primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-list li span {
    flex: 1;
}

.footer-social {
    margin-top: 25px;
}

.iwebt-social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--iwebt-white);
    transition: var(--iwebt-transition);
}

.iwebt-social-links li a:hover {
    background: var(--iwebt-gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links li {
    display: inline-block;
    margin-left: 20px;
}

.footer-bottom-links a {
    color: var(--iwebt-gray-400);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--iwebt-white);
}

@media (max-width: 991px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin: 0 10px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.iwebt-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--iwebt-gradient);
    color: var(--iwebt-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--iwebt-transition);
    z-index: 999;
    box-shadow: var(--iwebt-shadow-lg);
}

.iwebt-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.iwebt-back-to-top:hover {
    transform: translateY(-3px);
}

.iwebt-back-to-top i {
    font-size: 1.25rem;
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.iwebt-floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: var(--iwebt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--iwebt-shadow-lg);
    transition: var(--iwebt-transition);
    z-index: 998;
    animation: pulse 2s infinite;
}

.iwebt-floating-whatsapp:hover {
    transform: scale(1.1);
    color: var(--iwebt-white);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 767px) {
    .iwebt-back-to-top,
    .iwebt-floating-whatsapp {
        right: 15px;
    }
    
    .iwebt-floating-whatsapp {
        bottom: 80px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .iwebt-back-to-top {
        width: 45px;
        height: 45px;
    }
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.iwebt-pagination {
    margin-top: 50px;
}

.iwebt-pagination .page-link {
    border: none;
    padding: 12px 18px;
    color: var(--iwebt-gray-700);
    background: var(--iwebt-gray-100);
    margin: 0 3px;
    border-radius: var(--iwebt-radius);
    transition: var(--iwebt-transition);
}

.iwebt-pagination .page-link:hover {
    background: var(--iwebt-primary);
    color: var(--iwebt-white);
}

.iwebt-pagination .page-item.active .page-link {
    background: var(--iwebt-gradient);
    color: var(--iwebt-white);
}

/* ==========================================================================
   Blog / Posts
   ========================================================================== */
.blog-card {
    border-radius: var(--iwebt-radius-lg);
    overflow: hidden;
    background: var(--iwebt-white);
    box-shadow: var(--iwebt-shadow);
    transition: var(--iwebt-transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--iwebt-shadow-lg);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--iwebt-transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--iwebt-gradient);
    color: var(--iwebt-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--iwebt-gray-500);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--iwebt-gray-900);
}

.blog-card-title a:hover {
    color: var(--iwebt-primary);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--iwebt-gray-600);
    margin-bottom: 15px;
}

.blog-card-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-link i {
    transition: var(--iwebt-transition);
}

.blog-card-link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Social Share
   ========================================================================== */
.iwebt-social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid var(--iwebt-gray-200);
    margin-top: 30px;
}

.share-label {
    font-weight: 600;
    color: var(--iwebt-gray-800);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--iwebt-white);
    transition: var(--iwebt-transition);
}

.share-facebook { background: #1877F2; }
.share-twitter { background: #1DA1F2; }
.share-linkedin { background: #0A66C2; }
.share-whatsapp { background: #25D366; }
.share-telegram { background: #0088cc; }

.share-btn:hover {
    transform: translateY(-3px);
    color: var(--iwebt-white);
}

/* ==========================================================================
   Search Button & Modal
   ========================================================================== */
.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    color: var(--iwebt-gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 50%;
    margin-right: 10px;
}

.btn-search:hover {
    background: var(--iwebt-gray-100);
    color: var(--iwebt-primary);
}

.header-type-opacity .btn-search {
    color: #fff;
}

.header-type-opacity .btn-search:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.header-type-opacity.header-scrolled .btn-search {
    color: var(--iwebt-gray-700);
}

.header-type-opacity.header-scrolled .btn-search:hover {
    background: var(--iwebt-gray-100);
    color: var(--iwebt-primary);
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Search Modal */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.search-modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    z-index: 1;
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-modal-close:hover {
    background: #fff;
    color: var(--iwebt-gray-900);
    transform: rotate(90deg);
}

.search-modal-inner {
    text-align: center;
}

.search-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.search-form {
    margin-bottom: 25px;
}

.search-input-wrap {
    display: flex;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.search-input-wrap input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
}

.search-input-wrap input::placeholder {
    color: var(--iwebt-gray-400);
}

.search-submit {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--iwebt-primary);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-submit:hover {
    background: var(--iwebt-primary-dark);
}

.search-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.search-hint span {
    color: rgba(255, 255, 255, 0.5);
}

.search-hint a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.search-hint a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--iwebt-gray-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 8px; }
.hamburger-line:nth-child(3) { top: 16px; }

.header-type-opacity .hamburger-line {
    background-color: #fff;
}

.header-type-opacity.header-scrolled .hamburger-line {
    background-color: var(--iwebt-gray-800);
}

body.mobile-menu-open .hamburger-line:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

body.mobile-menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-open .hamburger-line:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    height: 100dvh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-wrapper {
    right: 0;
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--iwebt-gray-200);
    flex-shrink: 0;
}

.mobile-logo img {
    max-height: 40px;
    width: auto;
}

.mobile-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--iwebt-gray-900);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--iwebt-gray-100);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    color: var(--iwebt-gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: var(--iwebt-gray-200);
    color: var(--iwebt-gray-900);
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav > ul > li {
    border-bottom: 1px solid var(--iwebt-gray-100);
}

.mobile-menu-nav a {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--iwebt-gray-800);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    color: var(--iwebt-primary);
    background: var(--iwebt-gray-50);
}

.mobile-menu-nav .submenu-parent {
    position: relative;
}

.mobile-menu-nav .submenu-parent > a {
    padding-right: 50px;
}

.mobile-menu-nav .submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-left: 1px solid var(--iwebt-gray-100);
    color: var(--iwebt-gray-500);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-nav .submenu-toggle:hover {
    background: var(--iwebt-gray-100);
    color: var(--iwebt-primary);
}

.mobile-menu-nav .submenu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-nav .submenu-parent.open > .submenu-toggle i {
    transform: rotate(180deg);
}

.mobile-menu-nav .submenu {
    display: none;
    background: var(--iwebt-gray-50);
}

.mobile-menu-nav .submenu-parent.open > .submenu {
    display: block;
}

.mobile-menu-nav .submenu a {
    padding: 12px 20px 12px 35px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--iwebt-gray-600);
}

.mobile-menu-nav .submenu a:hover {
    color: var(--iwebt-primary);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--iwebt-gray-200);
    background: var(--iwebt-gray-50);
    flex-shrink: 0;
}

.mobile-contact {
    margin-bottom: 15px;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--iwebt-gray-700);
    text-decoration: none;
}

.mobile-contact a:hover {
    color: var(--iwebt-primary);
}

.mobile-contact i {
    font-size: 1.1rem;
    color: var(--iwebt-primary);
    width: 20px;
}

/* Hide on Desktop */
@media (min-width: 992px) {
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .mobile-menu-wrapper,
    .mobile-actions {
        display: none !important;
    }
}

/* Hover Dropdown (Desktop) */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navbar-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
        margin-top: 0;
    }
    
    .navbar-nav .dropdown-toggle::after {
        transition: transform 0.2s ease;
    }
    
    .navbar-nav .dropdown-item:hover {
        padding-left: 25px;
    }
}






	.reference-image {
		position: relative;
		overflow: hidden;
	}

	.reference-overlay {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(102, 126, 234, 0.9);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		transition: all 0.3s ease;
	}

	.reference-card-full:hover .reference-overlay {
		opacity: 1;
	}

	.reference-card-full:hover .card-img-top {
		transform: scale(1.1);
	}

	.reference-card-full .card-img-top {
		transition: transform 0.5s ease;
	}

	.reference-item {
		transition: opacity 0.3s ease, transform 0.3s ease;
	}