* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #111827;
    line-height: 1.5;
}

.page-grid {
    display: grid;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    min-height: 100vh;
    width: 100%;
}

.row-header { grid-row: 1; }
.row-hero { grid-row: 2; }
.row-about { grid-row: 3; }
.row-facilities { grid-row: 4; }
.row-services { grid-row: 5; }
.row-doctors { grid-row: 6; }
.row-map { grid-row: 7; }
.row-footer { grid-row: 8; }

/* top bar */
.top-bar {
    background: linear-gradient(to right, #1e1b4b, #312e81);
    color: white;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .top-bar-container {
        flex-direction: row;
    }
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.top-bar-item i {
    color: #fcd34d;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #bfdbfe;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-phone i {
    margin-right: 0.25rem;
}

.emergency-phone a {
    color: white;
    text-decoration: none;
}

.emergency-phone a:hover {
    color: #bfdbfe;
}

/* navbar */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s;
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 40;
}

.navbar.scrolled {
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #111827;
}

.logo-placeholder {
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-text p {
    font-size: 0.75rem;
    color: #2563eb;
}

/* desktop menu */
.desktop-menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-item {
    position: relative;
}

.nav-link, .nav-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
    transition: all 0.2s;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.nav-link i, .nav-button i {
    color: #3b82f6;
    font-size: 1rem;
}

.nav-link:hover, .nav-button:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

.nav-button.active {
    background-color: #eff6ff;
    color: #2563eb;
}

.nav-button.active i {
    color: #2563eb;
}

.chevron {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform 0.2s;
}

.rotate {
    transform: rotate(180deg);
}

/* submenu */
.submenu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.25rem;
    width: 18rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
    z-index: 50;
    padding: 0.5rem 0;
    display: none;
}

.submenu.show {
    display: block;
}

.submenu a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #374151;
    transition: background 0.2s;
}

.submenu a:hover {
    background-color: #eff6ff;
}

.submenu a i {
    margin-top: 0.125rem;
    color: #3b82f6;
    min-width: 1.25rem;
}

.submenu-item-text p:first-child {
    font-weight: 500;
    color: #111827;
}

.submenu-item-text p:last-child {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* book now button */
.book-now {
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: all 0.2s;
    margin-left: 0.5rem;
}

.book-now:hover {
    background: linear-gradient(to right, #ea580c, #b45309);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

/* mobile menu button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* mobile panel */
.mobile-panel {
    background: white;
    border-top: 1px solid #f3f4f6;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
}

.mobile-panel.open {
    max-height: 600px;
}

.mobile-nav-items {
    padding: 0.5rem 1rem 1.5rem;
}

.mobile-nav-item {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.mobile-nav-header i:first-child {
    margin-right: 0.5rem;
    color: #3b82f6;
}

.mobile-submenu {
    padding-left: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s;
}

.mobile-submenu.open {
    max-height: 400px;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    text-decoration: none;
    color: #4b5563;
    border-radius: 0.5rem;
}

.mobile-submenu a:hover {
    background-color: #eff6ff;
}

.mobile-submenu a i {
    color: #3b82f6;
    width: 1.25rem;
}

.mobile-book {
    margin-top: 1rem;
    padding: 0 0.5rem;
}

.mobile-book a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: white;
    padding: 0.75rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero-carousel { height: 700px; }
}

@media (min-width: 768px) {
    .hero-carousel { height: 800px; }
}

@media (min-width: 1024px) {
    .hero-carousel { height: 90vh; max-height: 1000px; }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.prev-btn { left: 1rem; }
.next-btn { right: 1rem; }

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 20;
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 30;
    padding: 0 1.5rem;
    color: white;
    max-width: 36rem;
}

@media (min-width: 768px) {
    .slide-content { padding: 0 3rem; }
}

@media (min-width: 1024px) {
    .slide-content { padding: 0 5rem; }
}

.slide-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    animation: scaleIn 0.5s ease-out;
}

.slide-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .slide-content h2 { font-size: 2.25rem; }
}

@media (min-width: 768px) {
    .slide-content h2 { font-size: 3rem; }
}

.slide-content p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .slide-content p { font-size: 1.125rem; }
}

@media (min-width: 768px) {
    .slide-content p { font-size: 1.25rem; }
}

.slide-cta {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.slide-cta:hover {
    background: #1d4ed8;
    transform: scale(1.05);
    box-shadow: 0 8px 20px -5px rgba(59,130,246,0.3);
}

.slide-stats {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    display: inline-block;
}

.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.375rem;
    z-index: 30;
    background: transparent;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #3b82f6;
    width: 0%;
    transition: width 7s linear;
}

.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 30;
}

.indicator {
    width: 2rem;
    height: 0.25rem;
    border-radius: 1rem;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: rgba(255,255,255,0.8);
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* about section */
.about-section {
    width: 100%;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-text h2 { font-size: 2.5rem; }
}

.about-text p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: background 0.3s;
}

.about-btn:hover {
    background: #1d4ed8;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* section headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 { font-size: 2.5rem; }
}

.section-header p {
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

.facilities-section {
    width: 100%;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #ecfdf5, white, #ecfdf5);
}

.facilities-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.facility-card {
    background: white;
    border: 1px solid #ccfbf1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.facility-card:hover {
    transform: translateY(-0.5rem);
    border-color: #2dd4bf;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.facility-image {
    position: relative;
    height: 12rem;
    width: 100%;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.facility-card:hover .facility-image img {
    transform: scale(1.15);
}

.facility-content {
    padding: 1.5rem;
}

.facility-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.facility-header i {
    color: #0d9488;
    font-size: 1.5rem;
}

.facility-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.facility-desc {
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.facility-details {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.facility-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.facility-footer a {
    color: #0d9488;
    text-decoration: none;
    font-weight: 500;
}

.facility-footer a:hover {
    color: #115e59;
}

.facility-footer span {
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.services-section {
    width: 100%;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #f9fafb, white, #f9fafb);
}

.services-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    border-color: #9fc5ff;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.service-image {
    position: relative;
    height: 14rem;
    width: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: 2rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header i {
    color: #2563eb;
    font-size: 1.5rem;
}

.service-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.service-desc {
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.service-details {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.service-footer a:hover {
    color: #1d4ed8;
}

.service-footer span {
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.facilities-cta, .services-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    background: #0d9488;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.cta-button.blue {
    background: #2563eb;
}

.cta-button:hover {
    background: #0f766e;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.cta-button.blue:hover {
    background: #1d4ed8;
}

/* doctors section */
.doctors-section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #f9fafb, white, #f9fafb);
}

.doctors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .doctors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.doctor-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: 1px solid #e5e7eb;
    position: relative;
}

.doctor-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: #bfdbfe;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background: linear-gradient(to right, #2563eb, #14b8a6);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.doctor-image {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 4px solid #dbeafe;
}

@media (min-width: 640px) {
    .doctor-image {
        width: 10rem;
        height: 10rem;
    }
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    text-align: center;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .doctor-card h3 {
        font-size: 1.25rem;
    }
}

.doctor-qualification {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 0.25rem;
}

.doctor-dept {
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
}

.view-profile {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    color: #2563eb;
    border: 1px solid #2563eb;
    border-radius: 9999px;
    background: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.view-profile:hover {
    background: #eff6ff;
}

/* modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 42rem;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
}

.modal-close:hover {
    color: #374151;
}

.modal-image {
    position: relative;
    width: 100%;
    height: 15rem;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.modal-role {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-qualification {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.modal-dept {
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.modal-description {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-subhead {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.modal-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.modal-list li {
    margin-bottom: 0.25rem;
}

.modal-experience {
    color: #6b7280;
    margin-bottom: 1rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

.modal-footer button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.modal-footer button:hover {
    background: #1d4ed8;
}

/* map section */
.map-section {
    width: 100%;
    padding: 3rem 1rem;
    background: linear-gradient(to bottom, #f9fafb, white);
}

.map-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .map-container {
        flex-direction: row;
    }
}

.map-wrapper {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .map-wrapper {
        width: 66.666%;
    }
}

.reviews-panel {
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
    .reviews-panel {
        width: 33.333%;
    }
}

.reviews-panel h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.review-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.reviewer-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.review-content h4 {
    font-weight: 500;
    color: #111827;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.review-content p {
    color: #4b5563;
    font-style: italic;
    line-height: 1.5;
}

.more-reviews {
    color: #4b5563;
    margin: 1rem 0;
}

.more-reviews a {
    color: #2563eb;
    text-decoration: none;
}

.more-reviews a:hover {
    text-decoration: underline;
}

.write-review {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.write-review:hover {
    background: #1d4ed8;
}

.write-review i {
    margin-right: 0.5rem;
}


.footer {
    background-color: #111827;
    color: #f3f4f6;
}

.get-in-touch {
    background: linear-gradient(to bottom right, #1e1b4b, #312e81, #3730a3);
    color: white;
    padding: 2rem 1rem;
}

.get-in-touch-content {
    max-width: 1280px;
    margin: 0 auto;
}

.get-in-touch-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fcd34d;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(49, 46, 129, 0.2);
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(67, 56, 202, 0.5);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}

.contact-icon {
    background: rgba(55, 48, 163, 0.5);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #fcd34d;
    font-size: 1.25rem;
}

.contact-item a, .contact-item p {
    color: #fde68a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #fef3c7;
}

.footer-main {
    background-color: #111827;
    padding: 2.5rem 1rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col p {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fbbf24;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.footer-social a {
    background-color: #1e1b4b;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #f59e0b;
    color: #111827;
    transform: scale(1.1);
}

.footer-bottom {
    background-color: #1e1b4b;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #312e81;
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer-bottom a {
    color: #fbbf24;
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #f59e0b;
    color: #111827;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    cursor: pointer;
    display: none;
    z-index: 50;
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.back-to-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background-color: #d97706;
    transform: scale(1.1);
}

.whatsapp-float {
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    background-color: #25d366;
    color: white;
    border-radius: 9999px;
    padding: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    background-color: #20b859;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.about-section-new {
    width: 100%;
    padding: 3rem 0 5rem;
    background: linear-gradient(to bottom, #f0f9ff, white, #f0f9ff);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.commitment-card {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    margin-bottom: 4rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(to bottom right, #1e1b4b, #312e81);
    backdrop-filter: blur(4px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.commitment-grid {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .commitment-grid {
        flex-direction: row;
    }
}

.commitment-image {
    width: 100%;
    position: relative;
    height: 400px;
}

@media (min-width: 1024px) {
    .commitment-image {
        width: 40%;
        height: auto;
        min-height: 500px;
    }
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.commitment-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
}

@media (min-width: 1024px) {
    .commitment-image-overlay {
        background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
    }
}

.commitment-image-caption {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    color: white;
    z-index: 10;
}

.commitment-image-caption h4 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.commitment-image-caption p {
    color: #dbeafe;
    font-weight: 500;
}

.commitment-content {
    width: 100%;
    padding: 2rem;
    text-align: center;
    position: relative;
}

@media (min-width: 1024px) {
    .commitment-content {
        width: 60%;
        padding: 3rem 4rem;
        text-align: left;
    }
}

.commitment-content-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="300" height="300"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
    background-size: 300px;
    background-position: center;
}

.commitment-content-inner {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    color: #93c5fd;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.commitment-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .commitment-content h3 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.commitment-content h3 span {
    color: #93c5fd;
}

.commitment-text {
    color: #dbeafe;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .commitment-text {
        margin-left: 0;
        margin-right: 0;
        font-size: 1.125rem;
    }
}

.commitment-text p {
    margin-bottom: 1rem;
}

.commitment-text p:last-child {
    margin-bottom: 0;
}

.journey-card {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    margin-bottom: 4rem;
    background: linear-gradient(to right, #1e1b4b, #1e3a8a);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
}

.journey-grid {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .journey-grid {
        flex-direction: row;
    }
}

.journey-content {
    width: 100%;
    padding: 2rem;
    text-align: center;
    position: relative;
}

@media (min-width: 1024px) {
    .journey-content {
        width: 50%;
        padding: 3rem 4rem;
    }
}

.journey-content-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200"><circle cx="50" cy="50" r="10" fill="white"/></svg>');
    background-size: 200px;
}

.journey-content-inner {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .journey-content h3 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.journey-content h3 span {
    color: #93c5fd;
}

.journey-content p {
    color: #dbeafe;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .journey-content p {
        font-size: 1.125rem;
        margin-left: 0;
        margin-right: 0;
    }
}

.journey-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .journey-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .journey-buttons {
        justify-content: flex-start;
    }
}

.btn-white {
    background-color: white;
    color: #1e3a8a;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    text-decoration: none;
}

@media (min-width: 1024px) {
    .btn-white {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

.btn-white:hover {
    background-color: #f9fafb;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transform: scale(1.03);
}

.btn-outline-light {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .btn-outline-light {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transform: scale(1.03);
}

.journey-image {
    width: 100%;
    position: relative;
    height: 350px;
}

@media (min-width: 640px) {
    .journey-image {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .journey-image {
        width: 50%;
        height: auto;
        min-height: 500px;
    }
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.journey-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.journey-image-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    z-index: 10;
}

.journey-image-caption h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
    .journey-image-caption h4 {
        font-size: 1.5rem;
    }
}

.journey-image-caption p {
    color: #dbeafe;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .journey-image-caption p {
        font-size: 1rem;
    }
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.about-header-icon {
    position: relative;
    margin-bottom: 0.75rem;
}

.about-header-icon i {
    color: #2563eb;
    font-size: 2rem;
    position: relative;
    z-index: 10;
}

.about-header-icon::before {
    content: '';
    position: absolute;
    inset: -0.5rem;
    background-color: #dbeafe;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
}

.about-header h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 640px) {
    .about-header h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .about-header h2 {
        font-size: 3rem;
    }
}

.about-subhead {
    color: #4b5563;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1rem;
}

@media (min-width: 1024px) {
    .about-subhead {
        font-size: 1.125rem;
    }
}

.about-subhead span {
    color: #2563eb;
    font-weight: 600;
}

.featured-image {
    position: relative;
    height: 350px;
    width: 100%;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

@media (min-width: 640px) {
    .featured-image {
        height: 450px;
    }
}

@media (min-width: 768px) {
    .featured-image {
        height: 500px;
        border-radius: 2.5rem;
    }
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.featured-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

.featured-image-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    max-width: 36rem;
}

@media (min-width: 768px) {
    .featured-image-caption {
        bottom: 3rem;
        left: 3rem;
    }
}

.featured-image-caption .tag {
    color: #93c5fd;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .featured-image-caption .tag {
        font-size: 0.875rem;
    }
}

.featured-image-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .featured-image-caption h3 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .featured-image-caption h3 {
        font-size: 2.5rem;
    }
}

.featured-image-caption p {
    color: #dbeafe;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .featured-image-caption p {
        font-size: 1rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.stat-card {
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

@media (min-width: 1024px) {
    .stat-card {
        padding: 2rem;
    }
}

.stat-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.stat-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
    .stat-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
}

@media (min-width: 1024px) {
    .stat-label {
        font-size: 1rem;
    }
}

.legacy-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .legacy-section {
        flex-direction: row;
        gap: 3rem;
        margin-bottom: 4rem;
    }
}

.legacy-image {
    width: 100%;
    min-height: 300px;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
    .legacy-image {
        width: 50%;
        min-height: 500px;
        border-radius: 1.5rem;
    }
}

.legacy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.legacy-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .legacy-content {
        width: 50%;
        gap: 2rem;
    }
}

.legacy-tag {
    color: #2563eb;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

@media (min-width: 1024px) {
    .legacy-tag {
        font-size: 0.875rem;
    }
}

.legacy-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .legacy-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .legacy-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

.legacy-title i {
    color: #2563eb;
    margin-right: 0.5rem;
    display: inline-block;
}

.legacy-text {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .legacy-text {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .legacy-text {
        font-size: 1.125rem;
        gap: 1.5rem;
    }
}

.legacy-text span {
    color: #2563eb;
    font-weight: 500;
}

.tech-section {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .tech-section {
        flex-direction: row-reverse;
        gap: 3rem;
        margin-bottom: 4rem;
    }
}

.tech-image {
    width: 100%;
    min-height: 300px;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
    .tech-image {
        width: 50%;
        min-height: 500px;
        border-radius: 1.5rem;
    }
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tech-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.tech-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .tech-content {
        width: 50%;
        gap: 2rem;
    }
}

.tech-tag {
    color: #0891b2;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

@media (min-width: 1024px) {
    .tech-tag {
        font-size: 0.875rem;
    }
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .tech-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .tech-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

.tech-title i {
    color: #0891b2;
    margin-right: 0.5rem;
    display: inline-block;
}

.tech-text {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .tech-text {
        font-size: 1.125rem;
    }
}

.tech-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .tech-list {
        gap: 1rem;
    }
}

.tech-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .tech-list li {
        font-size: 1rem;
    }
}

.tech-list li i {
    background-color: #cffafe;
    color: #0891b2;
    border-radius: 50%;
    padding: 0.25rem;
    font-size: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .tech-list li i {
        padding: 0.35rem;
        font-size: 0.875rem;
    }
}