/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #0a2b2b;
    color: #ffffff;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 43, 43, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(125, 211, 192, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(10, 43, 43, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #7dd3c0;
    text-decoration: none;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #7dd3c0;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #a8d5cc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.nav-link.active,
.nav-link:hover {
    color: #7dd3c0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #7dd3c0;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0d3838;
    border: 1px solid rgba(125, 211, 192, 0.2);
    border-radius: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #a8d5cc;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(125, 211, 192, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: rgba(125, 211, 192, 0.1);
    color: #7dd3c0;
    padding-left: 2rem;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    background: none;
    border: 2px solid #7dd3c0;
    color: #7dd3c0;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-login:hover {
    background-color: #7dd3c0;
    color: #0a2b2b;
    transform: translateY(-2px);
}

.btn-book {
    background-color: #7dd3c0;
    color: #0a2b2b;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #7dd3c0;
}

.btn-book:hover {
    background-color: #6bc7b5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(125, 211, 192, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #7dd3c0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(10, 43, 43, 0.98);
    backdrop-filter: blur(10px);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 2rem 1.5rem;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(125, 211, 192, 0.1);
}

.mobile-nav-item a,
.mobile-dropdown-toggle {
    display: block;
    padding: 1rem 0;
    color: #a8d5cc;
    transition: color 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-item a:hover,
.mobile-dropdown-toggle:hover {
    color: #7dd3c0;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-dropdown-menu.active {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.75rem 0;
    color: #a8d5cc;
    transition: color 0.3s ease;
}

.mobile-dropdown-item:hover {
    color: #7dd3c0;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background-color: #7dd3c0;
    color: #0a2b2b;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #6bc7b5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(125, 211, 192, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-secondary {
    background-color: transparent;
    color: #7dd3c0;
    padding: 0.75rem 1.5rem;
    border: 2px solid #7dd3c0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #7dd3c0;
    color: #0a2b2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(125, 211, 192, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: 2px solid #7dd3c0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: #7dd3c0;
    color: #0a2b2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(125, 211, 192, 0.3);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #a8d5cc;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a2b2b 0%, #0d3838 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-label {
    display: inline-block;
    color: #7dd3c0;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #a8d5cc;
    margin-bottom: 2rem;
}

.hero-images {
    animation: fadeIn 1.5s ease;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hero-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

.hero-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background-color: #0d2e2e;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #a8d5cc;
    margin-bottom: 1.5rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7dd3c0;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #a8d5cc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: #0a2b2b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: #0d3838;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: #7dd3c0;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(125, 211, 192, 0.2);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    color: #7dd3c0;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: #a8d5cc;
    margin-bottom: 1.5rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d3838 0%, #0a2b2b 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-choose-card {
    background-color: rgba(13, 56, 56, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(125, 211, 192, 0.1);
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    border-color: #7dd3c0;
    background-color: rgba(13, 56, 56, 0.8);
    transform: translateX(10px);
}

.why-icon {
    width: 3rem;
    height: 3rem;
    background-color: #7dd3c0;
    color: #0a2b2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: #a8d5cc;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background-color: #0d2e2e;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7dd3c0 0%, transparent 100%);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #7dd3c0;
    margin-bottom: 1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.process-step:hover .step-number {
    opacity: 1;
}

.process-step p {
    color: #a8d5cc;
}

.process-cta {
    text-align: center;
}

/* Courses Section */
.courses-section {
    padding: 6rem 0;
    background-color: #0a2b2b;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.course-slide {
    min-width: 100%;
    background-color: #0d3838;
    border-radius: 1rem;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.course-content p {
    color: #a8d5cc;
    margin-bottom: 1.5rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-duration {
    color: #7dd3c0;
    font-weight: 600;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(125, 211, 192, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #7dd3c0;
    transform: scale(1.3);
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d3838 0%, #0a2b2b 100%);
}

.blog-slider-wrapper {
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: #0d3838;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    border-color: #7dd3c0;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(125, 211, 192, 0.2);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #7dd3c0;
    color: #0a2b2b;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.875rem;
    color: #7dd3c0;
    margin-bottom: 0.75rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content p {
    color: #a8d5cc;
    margin-bottom: 1.5rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #7dd3c0;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 1rem;
}

.blog-link svg {
    width: 1rem;
    height: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #7dd3c0;
    color: #0a2b2b;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: #6bc7b5;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(125, 211, 192, 0.4);
}

.slider-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.blog-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(125, 211, 192, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background-color: #7dd3c0;
    transform: scale(1.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: #0d2e2e;
}

.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial-wrapper {
    overflow: hidden;
    flex: 1;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background-color: #0d3838;
    padding: 3rem;
    border-radius: 1rem;
    border: 2px solid #7dd3c0;
    position: relative;
}

.testimonial-quote {
    font-size: 6rem;
    color: #7dd3c0;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 2rem;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #a8d5cc;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7dd3c0;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    font-size: 0.875rem;
    color: #7dd3c0;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: #0a2b2b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background-color: #0d3838;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #7dd3c0;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(125, 211, 192, 0.2);
}

.pricing-card-featured {
    background: linear-gradient(135deg, #0d3838 0%, #0a2b2b 100%);
    border-color: #7dd3c0;
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background-color: #7dd3c0;
    color: #0a2b2b;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 1.5rem;
    color: #7dd3c0;
    vertical-align: top;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #7dd3c0;
}

.price-period {
    font-size: 1rem;
    color: #a8d5cc;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #a8d5cc;
    border-bottom: 1px solid rgba(125, 211, 192, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d3838 0%, #0a2b2b 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background-color: rgba(13, 56, 56, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(125, 211, 192, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #7dd3c0;
    background-color: rgba(13, 56, 56, 0.8);
}

.faq-item h3 {
    color: #7dd3c0;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #a8d5cc;
}

/* Statistics Section */
.stats-section {
    padding: 6rem 0;
    background-color: #0d2e2e;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: #0d3838;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #7dd3c0;
    transform: translateY(-5px);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #7dd3c0;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #a8d5cc;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #7dd3c0 0%, #6bc7b5 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #0a2b2b;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #0a2b2b;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background-color: #0a2b2b;
    color: #7dd3c0;
}

.cta-content .btn-primary:hover {
    background-color: #0d2e2e;
    box-shadow: 0 10px 25px rgba(10, 43, 43, 0.3);
}

/* Footer */
.footer {
    background-color: #0a2020;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: #7dd3c0;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: #a8d5cc;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #a8d5cc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #7dd3c0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #7dd3c0;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #0d3838;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7dd3c0;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #7dd3c0;
    color: #0a2b2b;
    transform: translateY(-3px);
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(125, 211, 192, 0.1);
    color: #a8d5cc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    

    .pricing-card-featured {
        transform: scale(1);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0;
    }

    .desktop-nav,
    .header-buttons {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

   

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }



    .slider-btn {
        display: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

 

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
       .footer-content {
        grid-template-columns: 1fr;
    }
     .services-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 425px) {

    .blog-grid {
        grid-template-columns: 1fr;
        margin: 0;
    }
}