:root {
    --color-primary: #0097b2;
    --color-secondary: #d5a34d;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-neutral: #79817c;
    --color-bg-light: #f8f9fa;
    --transition: all 0.3s ease;
  
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    height: 100%;
    overflow-y: scroll;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-black);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Header & Navigation */
header {
    background-color: var(--color-white);
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    background-color: var(--color-white);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

header .logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

header .logo img:hover {
    transform: scale(1.05);
}

header .nav-links {
    display: flex;
    align-items: center;
}

header .nav-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

header .nav-links ul li a {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 0;
    position: relative;
}

header .nav-links ul li a i {
    color: var(--color-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

header .nav-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

header .nav-links ul li a:hover::after {
    width: 100%;
}

header .nav-links ul li a:hover {
    color: var(--color-secondary);
}

header .nav-links ul li a:hover i {
    transform: translateY(-2px);
}

header .menu-icons {
    display: none;
}

header .fa-bars, header .fa-times {
    color: var(--color-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

header .fa-bars:hover, header .fa-times:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* Mobile Menu Styles */
@media screen and (max-width: 968px) {
    header .menu-icons {   
        display: block;
        position: relative;
        z-index: 1001;
    }

    header .fa-times {
        display: none;
    }

    header .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 280px;
        background-color: var(--color-white);
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
        transition: var(--transition);
        padding: 80px 20px 20px;
        z-index: 1000;
    }

    header .nav-links.active {
        left: 0;
    }

    header .nav-links ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    header .nav-links ul li {
        width: 100%;
    }

    header .nav-links ul li a {
        padding: 0.8rem;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        border-radius: 8px;
    }

    header .nav-links ul li a:hover {
        background-color: var(--color-bg-light);
    }

    header .nav-links ul li a::after {
        display: none;
    }

    header .body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('https://images.unsplash.com/photo-1569154941061-e231b4725ef1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.plane-icon {
    top: 20%;
    right: 15%;
    font-size: 4rem;
    color: var(--color-secondary);
    transform: rotate(-45deg);
    text-shadow: 0 0 20px rgba(213, 163, 77, 0.5);
}

@keyframes float {
    0%, 100% {
        transform: rotate(-45deg) translate(0, 0);
    }
    50% {
        transform: rotate(-45deg) translate(20px, -20px);
    }
}

.hero-content {
    position: relative;
    max-width: 1000px;
    color: var(--color-white);
    z-index: 1;
    padding: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--color-secondary);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
    color: #f0f0f0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
}

.cta-btn.secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-secondary);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    background-color: #007d94;
}

.cta-btn.secondary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }
.hero-content > *:nth-child(5) { animation-delay: 1s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .plane-icon {
        font-size: 3rem;
    }
}

@media screen and (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .hero-features {
        gap: 2rem;
    }

    .feature i {
        font-size: 1.5rem;
    }

    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .plane-icon {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature {
        flex-direction: row;
        justify-content: center;
    }

    .feature i {
        margin-bottom: 0;
        margin-right: 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--color-bg-light) 0%, #ffffff 100%);
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--color-primary);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-badge {
    position: absolute;
    top: 30px;
    left: -10px;
    background: var(--color-secondary);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-badge i {
    font-size: 2rem;
}

.trusted-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
}

.section-header {
    margin-bottom: 30px;
}

.section-header .subtitle {
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 45px;
}

.section-header .subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--color-secondary);
    transform: translateY(-50%);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    line-height: 1.2;
}

.about-description {
    margin-bottom: 40px;
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--color-black);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--color-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--color-neutral);
    font-weight: 500;
}

.about-description p {
    color: var(--color-neutral);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.about-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-features .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-features .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: rotateY(180deg);
}

.about-features .feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.about-features .feature-text h4 {
    color: var(--color-black);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.about-features .feature-text p {
    color: var(--color-neutral);
    font-size: 0.95rem;
    margin: 0;
}

.about-actions {
    display: flex;
    gap: 20px;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta.primary-btn {
    background: var(--color-secondary);
    color: white;
}

.about-cta.secondary-btn {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-cta.primary-btn:hover {
    background: var(--color-secondary);
}

.about-cta.secondary-btn:hover {
    background: var(--color-secondary);
    color: white;
}

.about-cta i {
    transition: transform 0.3s ease;
}

.about-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about {
        padding: 80px 0;
    }

    .about-wrapper {
        gap: 40px;
    }

    .about-image img {
        height: 500px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        margin: 0 auto;
        max-width: 500px;
    }

    .about-image img {
        height: 400px;
    }

    .experience-badge {
        right: 20px;
    }

    .trusted-badge {
        left: 20px;
    }

    .section-header {
        text-align: center;
    }

    .section-header .subtitle {
        padding-left: 0;
        display: inline-block;
    }

    .section-header .subtitle::before {
        display: none;
    }

    .about-description {
        text-align: center;
    }

    .highlight-text {
        padding: 20px;
        border-left: none;
        border-radius: 10px;
        background: rgba(var(--color-secondary-rgb), 0.1);
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-actions {
        flex-direction: column;
    }

    .about-cta {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .about {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-image img {
        height: 300px;
    }

    .experience-badge, .trusted-badge {
        padding: 15px;
    }

    .experience-badge .number {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 10px;
    }
}

/* Why Choose USA Section */
.why-usa {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-usa::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%230097b2" opacity="0.1"/></svg>');
    opacity: 0.5;
    z-index: 0;
}




.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--color-neutral);
    margin-top: 20px;
}

.why-usa .section-header .subtitle::before{
    background: var(--color-bg-light);
    left: 50%;
    top: 100%;
   
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.card-icon i {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    color: var(--color-secondary);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 151, 178, 0.1) 0%, rgba(213, 163, 77, 0.1) 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.benefit-card:hover .icon-bg {
    transform: rotate(90deg);
}

.benefit-card:hover .card-icon i {
    transform: rotateY(360deg);
}

.card-content h3 {
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--color-neutral);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-neutral);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.benefit-points li i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.cta-container {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: var(--color-secondary);
    border-radius: 20px;
    padding: 50px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    opacity: 0.2;
}

.cta-content {
    margin-bottom: 30px;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: var(--color-primary);

}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary:hover {
    background: var(--color-secondary);
    color: white;
    border: 2px solid var(--color-white);
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--color-primary);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .why-usa {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .benefit-points li {
        font-size: 0.9rem;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%230097b2" opacity="0.1"/></svg>') repeat;
    opacity: 0.5;
}


.services .section-header .subtitle::before{
    background: var(--color-bg-light);
    left: 50%;
    top: 100%;
   
}

.services-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 151, 178, 0.8), rgba(213, 163, 77, 0.8));
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.5;
}

.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    color: var(--color-black);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 100px;
}

.service-content p {
    color: var(--color-neutral);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-neutral);
    font-size: 1rem;
}

.service-list li i {
    color: var(--color-secondary);
    font-size: 1.1rem;
    padding: 8px;
    background: rgba(213, 163, 77, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-list li i {
    transform: scale(1.2);
}

.services-footer {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 5px;
    background: var(--color-black);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--color-neutral);
    font-size: 1rem;
    font-weight: 500;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-secondary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 151, 178, 0.2);
}

.service-cta:hover {
    transform: translateY(-3px);
    background: #007d94;
    box-shadow: 0 15px 30px rgba(0, 151, 178, 0.3);
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .service-card,
    .service-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(even) .service-image {
        order: 0;
    }

    .service-image {
        min-height: 250px;
    }

    .service-content {
        padding: 30px;
    }

    .service-content h3 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .service-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .service-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .service-image {
        min-height: 200px;
    }

    .service-number {
        font-size: 1.2rem;
        padding: 8px 16px;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .service-list li {
        font-size: 0.9rem;
    }
}

/* Program Overview Section */
.program-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.program-overview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M15 2L2 15l13 13 13-13L15 2z" fill="%230097b2" opacity="0.03"/></svg>') repeat;
    animation: patternFloat 30s linear infinite;
}

.program-overview .section-header .subtitle::before{
    background: var(--color-bg-light);
    left: 50%;
    top: 100%;
   
}

@keyframes patternFloat {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Eligibility Requirements */
.eligibility-wrapper {
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.eligibility-content h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--color-black);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.requirement-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.requirement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.requirement-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.requirement-item:hover .requirement-icon::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    opacity: 0.2;
}

.requirement-icon i {
    font-size: 2rem;
    color: white;
}

.requirement-item h4 {
    font-size: 1.2rem;
    color: var(--color-black);
    margin-bottom: 10px;
}

.requirement-item p {
    color: var(--color-neutral);
    font-size: 1rem;
    line-height: 1.4;
}

/* Timeline */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 100px auto;
    padding: 40px 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    transform: translateX(-50%);
}

.timeline-block {
    display: flex;
    align-items: flex-start;
    margin: 60px 0;
    position: relative;
}

.timeline-block:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 0 4px var(--color-primary);
    flex-shrink: 0;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    position: relative;
}

.timeline-phase {
    display: inline-block;
    padding: 5px 15px;
    background: var(--color-secondary);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: var(--color-black);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    padding: 8px 0;
    color: var(--color-neutral);
    position: relative;
    padding-left: 25px;
}

.timeline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-duration {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: rgba(0, 151, 178, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Program Footer */
.program-footer {
    text-align: center;
    margin-top: 80px;
}

.hours-counter {
    margin-bottom: 40px;
}

.counter-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    position: relative;
}

.counter-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.counter-circle circle {
    fill: none;
    stroke-width: 8;
}

.counter-circle circle:first-child {
    stroke: rgba(0, 151, 178, 0.1);
}

.counter-circle circle:last-child {
    stroke: var(--color-secondary);
    stroke-dasharray: 100;
    stroke-dashoffset: 30;
    transition: stroke-dashoffset 1s ease;
}

.counter-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.counter-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1;
}

.counter-label {
    font-size: 1.2rem;
    color: var(--color-neutral);
}

.hours-counter h4 {
    font-size: 1.5rem;
    color: var(--color-black);
    margin-bottom: 10px;
}

.hours-counter p {
    color: var(--color-neutral);
    max-width: 500px;
    margin: 0 auto;
}

.program-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--color-secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 151, 178, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 151, 178, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 15px;
    color: var(--color-neutral);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .requirements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    .timeline-wrapper {
        margin: 60px auto;
    }

    .timeline-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-block:nth-child(even) {
        flex-direction: column;
    }

    .timeline-icon {
        margin: 0 0 20px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-list li {
        padding-left: 0;
    }

    .timeline-list li::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-circle {
        width: 150px;
        height: 150px;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .counter-label {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .requirement-icon {
        width: 60px;
        height: 60px;
    }

    .requirement-icon i {
        font-size: 1.5rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-phase {
        font-size: 0.8rem;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }
}

/* Cost & Conversion Section */
.cost-conversion {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.cost-conversion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 0L40 20L20 40L0 20L20 0z" fill="%23D5A34D" opacity="0.03"/></svg>') repeat;
    animation: floatBg 30s linear infinite;
}

.cost-conversion .section-header .subtitle::before{
    background: var(--color-bg-light);
    left: 50%;
    top: 100%;
   
}


@keyframes floatBg {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Cost Card Styles */
.cost-wrapper {
    position: relative;
    z-index: 1;
    margin: 60px 0;
}

.cost-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.cost-header {
    background: var(--color-secondary);
    padding: 40px;
    text-align: center;
    color: white;
    position: relative;
}

.cost-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.cost-badge i {
    font-size: 1.2rem;
}

.cost-range {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 2.5rem;
}

.unit {
    font-size: 1.5rem;
    opacity: 0.8;
}

.cost-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cost-breakdown {
    padding: 40px;
}

.breakdown-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    background: rgba(0, 151, 178, 0.05);
    transform: translateX(10px);
}

.item-icon {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon i {
    font-size: 1.5rem;
    color: white;
}

.item-details h4 {
    color: var(--color-black);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.item-details p {
    color: var(--color-neutral);
    font-size: 1rem;
    line-height: 1.4;
}

/* Payment Options */
.payment-options {
    margin-top: 40px;
    text-align: center;
}

.payment-options h3 {
    font-size: 1.8rem;
    color: var(--color-black);
    margin-bottom: 30px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.option-card i {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.option-card h4 {
    color: var(--color-black);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.option-card p {
    color: var(--color-neutral);
    font-size: 1rem;
    line-height: 1.4;
}

/* Conversion Process */
.conversion-process {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon i {
    font-size: 2rem;
    color: white;
}

.process-header h3 {
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 15px;
}

.process-header p {
    color: var(--color-neutral);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-secondary);
    opacity: 0.1;
    line-height: 1;
}

.step-content h4 {
    color: var(--color-black);
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

.step-content p {
    color: var(--color-neutral);
    font-size: 1rem;
    margin-bottom: 20px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    color: var(--color-neutral);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.conversion-cta {
    text-align: center;
}

.gradient-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--color-secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 151, 178, 0.2);
}

.gradient-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 151, 178, 0.3);
}

.gradient-btn i {
    transition: transform 0.3s ease;
}

.gradient-btn:hover i {
    transform: translateX(5px);
}

.cta-subtext {
    margin-top: 15px;
    color: var(--color-neutral);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cost-range {
        font-size: 3rem;
    }

    .currency {
        font-size: 2rem;
    }

    .unit {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .breakdown-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .breakdown-item:hover {
        transform: translateY(-5px);
    }

    .cost-header {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .cost-range {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    .unit {
        font-size: 1rem;
    }

    .item-icon {
        width: 40px;
        height: 40px;
    }

    .item-icon i {
        font-size: 1.2rem;
    }

    .step-number {
        font-size: 3rem;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%230097b2" opacity="0.05"/></svg>') repeat;
}

.faq .section-header .subtitle::before{
    background: var(--color-bg-light);
    left: 50%;
    top: 100%;
   
}

.faq-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 1.5rem;
    color: white;
}

.faq-content h3 {
    color: var(--color-black);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.faq-content p {
    color: var(--color-neutral);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="M25 0L50 25L25 50L0 25L25 0z" fill="%23ffffff" opacity="0.03"/></svg>') repeat;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact .section-header {
    text-align: left;
    color: white;
}

.contact .section-header .subtitle{
    
    padding: 0;
}

.contact .section-header .subtitle::before{
    display: none;
}

.contact .section-header .section-intro {
    color: var(--color-black);
}

.contact .section-header .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--color-secondary);
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.info-content a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.info-content a:hover {
    opacity: 0.8;
}

.social-proof {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proof-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-form {
    position: relative;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
    color: var(--color-black);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--color-black);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--color-black);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.1);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 151, 178, 0.2);
}

.submit-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .faq-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .social-proof {
        flex-direction: column;
        gap: 20px;
    }

    .form-card {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-icon i {
        font-size: 1.2rem;
    }

    .faq-content h3 {
        font-size: 1.2rem;
    }

    .info-card {
        padding: 15px;
    }

    .proof-number {
        font-size: 2rem;
    }

    .form-card h3 {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--color-white);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.02"/></svg>') repeat;
}

.footer-top {
    position: relative;
    z-index: 1;
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Footer Info */
.footer-info {
    padding-right: 40px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-desc {
    color: var(--color-black);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    color: var(--color-black);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-secondary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--color-black);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-primary);
    margin-right: 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-links ul li a:hover {
    color: var(--color-black);
    padding-left: 10px;
}

.footer-links ul li a:hover::before {
    width: 15px;
    margin-right: 10px;
    opacity: 1;
}

/* Footer Contact */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-list li i {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-list li a,
.contact-list li span {
    color: var(--color-black);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-list li a:hover {
    color: var(--color-black);
}

.footer-cta {
    margin-top: 30px;
}

.footer-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--color-secondary);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-cta .cta-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 25px 0;
    border-top: 1px solid var(--color-black);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--color-black);
    font-size: 0.9rem;
}

.bottom-links {
    display: flex;
    gap: 30px;
}

.bottom-links a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.bottom-links a:hover {
    color: var(--color-secondary);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-info {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul li a::before {
        display: none;
    }

    .contact-list li {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bottom-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-top {
        padding: 60px 0 40px;
    }

    .bottom-links {
        flex-direction: column;
        gap: 15px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Blog Main Page Styles */
.blog-header {
    background: var(--color-primary);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-secondary);
    opacity: 0.9;
}

.blog-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-header p {
    color: #fff;
    font-size: 1.25rem;
    opacity: 0.9;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0 4rem;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all .5s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);

}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s var(--transition);
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 1.75rem;
    position: relative;
}

.blog-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.category-tag {
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s var(--transition);
    color: var(--color-white);
    text-decoration: none;
}

.category-tag:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.blog-title {
    font-size: 1.4rem;
    color: var(--color-text);
    margin: 0.75rem 0;
    line-height: 1.35;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--transition);
    background: linear-gradient(to right, var(--color-primary), var(--color-primary));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding-bottom: 2px;
}


.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin: 1rem 0;
    opacity: 0.85;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.meta-item i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.blog-excerpt {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.9;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all .3s ease;
    position: relative;

}



.read-more-btn:hover {
    color: var(--color-secondary);
}

.read-more-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    
}

.read-more-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s var(--transition);
}

.read-more-btn:hover i {
    transform: translateX(4px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 4rem 0;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: #fff;
    border-radius: 8px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s var(--transition);
    list-style: none;
}

.page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.page-numbers:hover:not(.current) {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-bg-light);
    border-radius: 15px;
    margin: 2rem 0;
}

.no-posts h2 {
    color: var(--color-text);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-posts p {
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .blog-header {
        padding: 3rem 1rem;
    }

    .blog-header h1 {
        font-size: 2.5rem;
    }

    .blog-container {
        padding: 0 1rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .blog-title {
        font-size: 1.25rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Single Post Styles */
.single-post-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    overflow: visible;
}

.single-post-wrapper .single-post {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: visible;
    position: relative;
}

.single-post-wrapper .post-featured-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.single-post-wrapper .post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-post-wrapper .post-header {
    max-width: 1200px;
    margin: -100px auto 0;
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.single-post-wrapper .post-title {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--color-text);
    margin: 1rem 0;
    font-weight: 700;
}

.single-post-wrapper .post-meta {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.single-post-wrapper .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
}

.single-post-wrapper .meta-item i {
    color: var(--color-secondary);
}

.single-post-wrapper .post-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    position: relative;
    z-index: 0;
}

.single-post-wrapper .post-content p {
    margin-bottom: 1.5rem;
}

.single-post-wrapper .post-content h2, 
.single-post-wrapper .post-content h3 {
    margin: 2rem 0 1rem;
    color: var(--color-text);
}

.single-post-wrapper .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}

.single-post-wrapper .post-content blockquote {
    border-left: 4px solid var(--color-secondary);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-text-light);
}

.single-post-wrapper .post-tags {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.single-post-wrapper .post-tags i {
    color: var(--color-secondary);
}

.single-post-wrapper .tag-link {
    background: var(--color-bg-light);
    color: var(--color-text);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-post-wrapper .tag-link:hover {
    background: var(--color-secondary);
    color: #fff;
}

.single-post-wrapper .post-author-box {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: 20px;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.single-post-wrapper .post-author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.single-post-wrapper .author-info h3 {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.single-post-wrapper .author-info p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.single-post-wrapper .post-navigation {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.single-post-wrapper .nav-previous a,
.single-post-wrapper .nav-next a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-post-wrapper .nav-previous a:hover,
.single-post-wrapper .nav-next a:hover {
    color: var(--color-secondary);
}

.single-post-wrapper .related-posts {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.single-post-wrapper .related-posts h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.single-post-wrapper .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.single-post-wrapper .related-post-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.single-post-wrapper .related-post-card:hover {
    transform: translateY(-5px);
}

.single-post-wrapper .related-post-image {
    display: block;
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
}

.single-post-wrapper .related-post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-post-wrapper .related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.single-post-wrapper .related-post-content {
    padding: 1.5rem;
}

.single-post-wrapper .related-post-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.single-post-wrapper .related-post-content h3 a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-post-wrapper .related-post-content h3 a:hover {
    color: var(--color-secondary);
}

.single-post-wrapper .related-post-date {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .single-post-wrapper {
        padding: 1rem;
    }

    .single-post-wrapper .post-featured-image {
        height: 300px;
    }

    .single-post-wrapper .post-header {
        margin-top: -50px;
        padding: 1.5rem;
    }

    .single-post-wrapper .post-title {
        font-size: 2rem;
    }

    .single-post-wrapper .post-meta {
        gap: 1rem;
    }

    .single-post-wrapper .post-author-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .single-post-wrapper .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .single-post-wrapper .post-header {
        margin-top: -30px;
        padding: 1rem;
    }

    .single-post-wrapper .post-title {
        font-size: 1.75rem;
    }

    .single-post-wrapper .post-content {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .single-post-wrapper .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .single-post-wrapper .related-posts-grid {
        grid-template-columns: 1fr;
    }
}


