/* Main Styles */

:root {
    --primary-dark: #0B1F3A;
    --primary-light: #1E40AF;
    --secondary: #F59E0B;
    --bg-light: #F8FAFC;
    --text-dark: #1F2937;
    --text-light: #6B7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark) to var(--primary-light));
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #d97706;
    transform: scale(1.05);
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

/* Gradients */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
}

/* Sections */
section {
    position: relative;
    overflow: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Navbar Scroll Effect */
#navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Icons */
.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    border-radius: 12px;
    font-size: 32px;
    color: white;
}

/* Form Styles */
input, textarea, select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Counter Animation */
.counter {
    font-weight: bold;
    font-size: 48px;
    color: var(--secondary);
    display: inline-block;
    min-width: 3ch;
    transform-origin: center;
    will-change: transform, opacity;
}

.counter.is-rotating {
    animation: numberRotate 0.32s ease;
}

@keyframes numberRotate {
    0% {
        opacity: 0.55;
        transform: rotateX(80deg) translateY(8px);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg) translateY(0);
    }
}

/* WhatsApp Button */
.whatsapp-button {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Loading State */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Link Hover Effects */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.logo img{
    height: 58px;
}

.hero-slider {
    padding-top: 80px;
    width: 100%; 
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    height: 650px;
}

.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: rgba(11, 31, 58, 0.75);
    border-radius: 50%;
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.75;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
}

.img-rounded{
    border-radius: 25px;
}

@media (max-width: 640px) {
    .hero-slider {
        height: 300px;
    }
}
