/*!
Theme Name: PROBO Theme
Description: PROBO Kurumsal WordPress Theme
Version: 1.0
*/

:root {
    --primary-blue: #001e50;
    --secondary-blue: #001e50;
    --dark-blue: #1e3a8a;
    --light-gray: #f8fafc;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue)) !important;
    font-size: 0.875rem;
}

/* Logo Styles */
.logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-blue);
}

/* Navigation */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #374151 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 0.75rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #eff6ff;
    color: var(--primary-blue);
}

/* Hero Slider */
.hero-slider {
    height: 700px;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 67, 135, 0.7), rgba(14, 67, 135, 0.4));
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30,58,138,0.9), rgba(29,78,216,0.8));
}

.banner-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 1rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

/* Footer */
.footer-logo {
    width: 48px;
    height: 48px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-text {
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-link {
    color: #d1d5db !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .page-banner {
        height: 300px;
    }
}
/* Contact Page Styles */
.contact-section .contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.bg-purple {
    background-color: #6f42c1 !important;
}

/* Certificate Verification */
.verification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-form .form-control {
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.verification-form .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* Map Container */
.map-container {
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* Form Styles */
.form-control-lg {
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-item {
        padding: 1rem !important;
    }
    
    .contact-icon {
        width: 40px !important;
        height: 40px !important;
    }
}
/* Slider Styles */
.hero-slider .carousel-item {
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(29, 78, 216, 0.6));
}

.hero-slider .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-slider .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.hero-slider .carousel-caption .lead {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-slider .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider .carousel-caption .lead {
        font-size: 1.1rem;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}
/* Page Banner */
.page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.banner-content {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* Sidebar */
.service-sidebar .list-group-item {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-sidebar .list-group-item:hover,
.service-sidebar .list-group-item.active {
    border-left-color: #0d6efd;
    background-color: #f8f9fa;
}

.service-sidebar .list-group-item.active {
    font-weight: 600;
    color: #0d6efd;
}
/* Footer Styles */
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-contact span,
.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: white;
}

.footer-brand {
    font-size: 1.5rem;
}

.footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-title {
    color: white;
    font-weight: 600;
}