:root {
    --primary: #03045e;
    --primary-dark: #0077B6;
    --primary-light: #48CAE4;
    --accent: #03045e;
    --dark: #1a1a1a;
    --light: #CAF0F8;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --gradient: linear-gradient(135deg, #03045e 0%, #0077b6 100%);
    --shadow: 0 10px 40px rgba(0, 168, 232, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 168, 232, 0.25);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 38px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 9px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: var(--light);
    border-radius: 8px;
    transition: all 0.3s;
    z-index: 1001;
}

.nav-toggle:hover {
    background: var(--primary-light);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--light);
}

.nav-link.active {
    color: var(--primary);
    background: var(--light);
}

.nav-link i {
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.active .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    padding: 15px 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.mega-menu {
    min-width: 350px;
    max-height: 450px;
    overflow-y: auto;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-menu a i {
    color: var(--primary);
    width: 18px;
    font-size: 14px;
    flex-shrink: 0;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 30px;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    margin-left: 10px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s linear forwards;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.88) 0%, rgba(0, 119, 182, 0.85) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(24px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
    opacity: 0;
}

.title-line:nth-child(4) {
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(90deg, #f50a0a, #ff6b6b, #f50a0a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(15px, 3vw, 19px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease 0.8s forwards;
    opacity: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
    padding: 0 10px;
}

.btn {
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: rgba(245, 10, 10, 0.9);
}

.btn-outline:hover {
    background: rgb(245, 10, 10);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 10, 10, 0.4);
}

.slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.slider-dot:hover {
    transform: scale(1.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 35px;
    background: white;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { height: 35px; opacity: 1; }
    50% { height: 18px; opacity: 0.5; }
}

section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.section-subtitle {
    font-size: clamp(15px, 3vw, 17px);
    color: var(--gray);
    margin-top: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-section {
    background: white;
}

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

.lead {
    font-size: clamp(16px, 3vw, 19px);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.6;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: clamp(14px, 2.5vw, 15px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.stat-card {
    text-align: center;
    padding: 25px 18px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-icon {
    font-size: clamp(24px, 4vw, 30px);
    color: var(--primary);
    margin-bottom: 12px;
}

.stat-number {
    font-size: clamp(32px, 6vw, 38px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: clamp(12px, 2.5vw, 14px);
    color: var(--gray);
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image .image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.services-section {
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: visible;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 420px;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.service-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 119, 182, 0.3) 100%);
    transition: background 0.4s;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 119, 182, 0.6) 100%);
}

.service-content {
    padding: 0 22px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: -28px auto 14px;
    transition: all 0.4s;
    box-shadow: 0 8px 24px rgba(0, 168, 232, 0.2);
    z-index: 10;
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: white;
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 168, 232, 0.4);
}

.service-title {
    font-size: clamp(17px, 3vw, 19px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
    text-align: center;
}

.service-desc {
    color: var(--gray);
    margin-bottom: auto;
    line-height: 1.6;
    font-size: clamp(13px, 2.5vw, 14px);
    text-align: center;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: gap 0.3s;
    margin-top: 14px;
    font-size: 14px;
}

.service-link:hover {
    gap: 12px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 45px rgba(0, 168, 232, 0.25);
}

.partners-section {
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 32px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.partner-logo-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 22px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s;
}

.partner-card:hover .partner-logo-wrapper {
    transform: scale(1.05);
    background: var(--light);
}

.partner-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
}

.partner-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: var(--shadow);
}

.partner-name {
    font-size: clamp(18px, 3.5vw, 22px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.partner-tagline {
    color: var(--primary);
    font-size: clamp(12px, 2.5vw, 13px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.98) 0%, rgba(0, 168, 232, 0.98) 100%);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    overflow-y: auto;
    border-radius: 20px;
}

.partner-card:hover .partner-hover-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.hover-header h4 {
    color: white;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 700;
}

.hover-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.hover-desc {
    color: white;
    font-size: clamp(12px, 2.5vw, 13px);
    line-height: 1.6;
    margin-bottom: 18px;
    text-align: left;
}

.hover-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(12px, 2.5vw, 13px);
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    transition: all 0.3s;
    margin: 10px 0;
}

.hover-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 25px;
}

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

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

.footer-title {
    font-size: clamp(22px, 4vw, 26px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-light);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: clamp(13px, 2.5vw, 14px);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: clamp(16px, 3vw, 17px);
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--primary-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: clamp(13px, 2.5vw, 14px);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(13px, 2.5vw, 14px);
}

.footer-contact i {
    color: var(--primary-light);
    width: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(12px, 2.5vw, 13px);
}

.footer-legal {
    display: flex;
    gap: 12px;
    align-items: center;
}

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

.footer-legal a:hover {
    color: var(--primary-light);
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background: white;
        padding: 25px;
        box-shadow: var(--shadow);
        transition: left 0.3s;
        gap: 0;
        overflow-y: auto;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--light);
        padding: 12px 0;
    }
    
    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 8px;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        background: var(--gray-light);
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 600px;
        padding: 10px 0;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }
    
    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .logo-name {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 8px;
    }
    
    .hero {
        min-height: 100vh;
        height: 100vh;
        max-height: none;
        margin-top: -65px;
        padding-top: 65px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        margin-bottom: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }
    
    .slider-controls {
        bottom: 65px;
    }
    
    .hero-scroll {
        bottom: 25px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: auto;
        margin-top: 30px;
    }
    
    .service-image {
        height: 170px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-name {
        font-size: 16px;
    }
    
    .hero-cta {
        max-width: 100%;
    }
    
    .btn {
        font-size: 13px;
        padding: 12px 18px;
    }
    
    .slider-controls {
        gap: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 22px;
    }
    
    .btn {
        font-size: 12px;
        padding: 11px 16px;
        gap: 6px;
    }
}

@media (max-height: 600px) and (max-width: 968px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .slider-controls {
        bottom: 50px;
    }
    
    .hero-scroll {
        display: none;
    }
}