:root {
    --primary: #1a1a1a;
    --secondary: #4a90e2;
    --accent: #2563eb;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --radius-full: 9999px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    background: #2162AB;
    padding: 20px 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.logo img {
    height: 50px;
    display: block;
}

.main-nav>ul {
    display: flex;
    list-style: none;
    gap: 14px;
}

.main-nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffd700;
    /* Gold/Yellow for active/hover on blue */
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.main-nav .dropdown-menu {
    display: block;
    list-style: none;
    padding: 10px;
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    text-align: left;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: var(--accent);
}

.btn-connect {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-connect:hover {
    background: #333;
    transform: translateY(-2px);
}

.icon-arrow {
    background: var(--white);
    color: var(--primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 35px;
    height: 3px;
    top: 18px;
    left: 2px;
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    width: 35px;
    height: 3px;
    top: 18px;
    left: 2px;
}

@media (max-width: 1200px) {
    .menu-toggle.active {
        position: fixed;
        top: 40px;
        right: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
    }

    .menu-toggle.active span {
        position: absolute;
    }
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.tag-badge .plus {
    color: var(--accent);
    font-weight: 700;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.vision-box {
    position: relative;
    padding: 2px 15px;
    display: inline-block;
}

.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    pointer-events: none;
}

/* Corner Squares */
.vision-box::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    box-shadow:
        calc(100% + 0px) 0 0 var(--primary),
        0 calc(100% + 0px) 0 var(--primary),
        calc(100% + 0px) calc(100% + 0px) 0 var(--primary);
}

.hero-description {
    font-size: 18px;
    color: #4b5563;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-connect.large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-connect.large .icon-arrow {
    width: 32px;
    height: 32px;
}

.phone-support {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.phone-text span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

.phone-text strong {
    font-size: 18px;
    color: var(--primary);
    display: block;
}

/* Hero Image Section */
.hero-image-container {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

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

.stamp-badge {
    position: absolute;
    top: -45px;
    left: -45px;
    background: var(--white);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.stamp-badge svg {
    animation: rotate 12s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Clients Section */
.clients-section {
    padding: 80px 0 120px;
    background: var(--bg-light);
}

.clients-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 60px;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    max-width: 100%;
}

.clients-track {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    padding: 20px 0;
    cursor: grab;
    user-select: none;
}

.clients-track .client-card img {
    pointer-events: none;
}

.clients-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.client-card {
    flex: 0 0 250px;
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.client-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.client-card img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.slider-nav-btn {
    background: var(--white);
    border: none;
    cursor: pointer;
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 10;
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.slider-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* About Section */
.about-section {
    padding: 100px 0 40px;
    background: #ffffff
}

.about-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1.1 / 1;
    background: var(--bg-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Replicating the unique shape from the image */
.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    clip-path: polygon(0 0, 20% 0, 0 50%, 20% 100%, 0 100%);
    z-index: 2;
}

.about-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    clip-path: polygon(100% 0, 80% 0, 100% 50%, 80% 100%, 100% 100%);
    z-index: 2;
}

.dark-triangle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    background: #1e293b;
    clip-path: polygon(0 40%, 0% 100%, 80% 100%);
    z-index: 3;
}

.about-content {
    padding-left: 20px;
}

.tag-badge-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.about-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 32px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: #111827;
    color: var(--white);
}

.services-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-header {
    margin-bottom: 60px;
}

.tag-badge-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.services-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
}

.services-subtitle {
    color: #94a3b8;
    font-size: 18px;
    max-width: 600px;
}

.services-accordion {
    display: flex;
    gap: 0;
    background: #1f2937;
    border-radius: 24px;
    overflow: hidden;
    min-height: 600px;
}

.service-card {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

.service-card:last-child {
    border-right: none;
}

.service-card.active {
    flex: 4;
    background: #374151;
    padding: 50px 40px;
    align-items: flex-start;
    cursor: default;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: #111827;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    color: var(--accent);
}

.service-card.active .service-icon-box {
    margin-bottom: 30px;
}

.service-vertical-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    margin-top: auto;
    margin-bottom: auto;
    transition: all 0.3s;
}

.service-card.active .service-vertical-title {
    display: none;
}

.service-details {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.service-card.active .service-details {
    display: block;
    opacity: 1;
}

.service-card-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-card-desc {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-view-details:hover {
    background: var(--white);
    color: var(--primary);
}

.plus-btn-round {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    color: rgba(255, 255, 255, 0.6);
}

.service-card.active .plus-btn-round {
    display: none;
}

/* How We Work Section */
.how-work-section {
    padding: 120px 0;
    background: #f1f5f9;
    text-align: center;
}

.how-work-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.how-work-header {
    margin-bottom: 80px;
}

.tag-badge-center-grey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.how-work-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
}

.step-card {
    position: relative;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    padding: 120px 0;
    background: var(--white);
}

.why-us-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.why-us-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.feature-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
}

.faq-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 40px;
}

.btn-ask {
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-ask:hover {
    background: #333;
    transform: translateY(-2px);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.faq-icon-circle {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active {
    background: #1e293b;
}

.faq-item.active .faq-header h3 {
    color: var(--white);
}

.faq-item.active .faq-icon-circle {
    background: var(--white);
    color: var(--primary);
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 32px 32px;
    color: #94a3b8;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

/* Footer Section */
.main-footer {
    padding: 100px 0 60px;
    background: #111827;
    color: var(--white);
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 30px;
}

.footer-desc {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 320px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    color: #94a3b8;
    font-size: 15px;
}

.contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

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

@media (max-width: 1024px) {

    .why-us-container,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 20px;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Who We Are Hero Section */
.who-hero-section {
    padding: 100px 0 80px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: auto;
}

.who-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(150deg,
            #f8fafc 0%,
            #f8fafc 25%,
            #f1f5f9 25%,
            #f1f5f9 45%,
            #e2e8f0 45%,
            #e2e8f0 55%,
            #f1f5f9 55%,
            #f1f5f9 75%,
            #ffffff 75%);
    z-index: 1;
}

.who-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 50%;
    height: 100%;
    background: #f1f5f9;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.3;
    z-index: 1;
}

.who-hero-container {
    max-width: 1500px;
    width: 100%;
    padding: 0 60px;
    position: relative;
    z-index: 10;
}

.who-hero-title {
    font-size: 60px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.who-hero-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 48px;
}

.who-hero-section .btn-connect {
    margin: 0 auto;
    width: fit-content;
    padding: 16px 36px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .who-hero-section {
        padding: 100px 0 80px;
    }

    .who-hero-title {
        font-size: 40px;
    }

    .who-hero-subtitle {
        font-size: 16px;
    }
}

/* Quote Section */
.quote-section {
    padding: 60px 0;
    background: #ffffff;
}

.quote-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.quote-box {
    background: #f8fafc;
    padding: 40px 60px;
    border-left: 5px solid #1e293b;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.quote-text {
    font-size: 22px;
    font-style: italic;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 24px;
}

.quote-author {
    font-size: 14px;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-line {
    width: 20px;
    height: 1px;
    background: #cbd5e1;
}

/* CTA Section */
.cta-section {
    padding: 80px 0 120px;
    background: #ffffff;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-card {
    background: #2d3748;
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-contact-white {
    background: #ffffff;
    color: #1a202c;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-contact-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.icon-arrow-dark {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 60px 0;
    background: #ffffff;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.mv-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.mv-icon-box {
    width: 80px;
    height: 80px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.mv-card p strong {
    color: #1e293b;
}

@media (max-width: 1024px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cta-card {
        padding: 60px 24px;
    }

    .cta-title {
        font-size: 32px;
    }

    .quote-box {
        padding: 30px;
    }

    .quote-text {
        font-size: 18px;
    }

    .mv-card {
        padding: 40px 24px;
    }
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.team-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.team-header {
    margin-bottom: 60px;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.team-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-row.reverse {
    direction: rtl;
}

.team-row.reverse .team-content-side {
    direction: ltr;
}

.team-row.reverse .team-image-side {
    direction: ltr;
}

.team-image-side {
    position: relative;
}

.team-image-box {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3 / 2;
    box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.08);
}

.team-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content-side {
    padding: 20px;
}

.team-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.team-role {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.team-social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .team-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .team-row.reverse {
        direction: ltr;
    }

    .team-image-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .team-social {
        justify-content: center;
    }
}

.tag-badge-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Partners Section */
.partners-section {
    padding: 80px 0 60px;
    background: #ffffff;
    text-align: center;
}

.partners-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.partners-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 50px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-logo-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

/* Ready CTA Section */
.ready-cta-section {
    padding: 30px 0;
    background: #ffffff;
}

.ready-cta-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.ready-cta-box {
    background: #334155;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.ready-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ready-cta-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ready-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #1e293b;
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ready-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ready-btn .btn-arrow {
    display: flex;
    align-items: center;
}

.partner-logo-card.dark {
    background: #000000;
    border-color: #000000;
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Partner With Us Section */
.partner-with-us-section {
    padding: 60px 0 120px;
    background: #ffffff;
}

.partner-with-us-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
}

.partner-form {
    background: #ffffff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.form-group input {
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.form-group input:focus {
    outline: none;
    border-color: #1e293b;
    background: #ffffff;
}

.form-group input::placeholder {
    color: #94a3b8;
    opacity: 0.6;
}

.btn-submit {
    background: #1e293b;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-content {
    padding-top: 10px;
}

.partner-content .partner-title {
    font-size: 52px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 32px;
    line-height: 1.1;
}

.partner-content p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .partner-with-us-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .partner-content {
        order: -1;
    }
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .partner-content .partner-title {
        font-size: 36px;
    }
}

/* Service Pages Layout */
.service-hero {
    padding: 40px 0 20px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.03) 1%, transparent 1%, transparent 50%, rgba(37, 99, 235, 0.03) 50%, rgba(37, 99, 235, 0.03) 51%, transparent 51%, transparent 100%);
    background-size: 60px 60px;
    z-index: 1;
}

.service-hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.service-hero-title {
    font-size: 48px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.1;
}

.service-hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.btn-touch {
    background: #1e293b;
    color: var(--white);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
}

.btn-touch:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-touch .icon-arrow {
    width: 32px;
    height: 32px;
    background: var(--white);
    color: #1e293b;
}

.service-content-section {
    padding: 100px 0;
    background: var(--white);
}

.service-content-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.service-image-box {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 1000 / 667;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.service-image-box:hover img {
    transform: scale(1.05);
}

.service-text-content h2 {
    font-size: 48px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 32px;
    line-height: 1.1;
}

.service-text-content p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .service-content-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-hero-title {
        font-size: 48px;
    }

    .service-text-content h2 {
        font-size: 40px;
    }
}

/* Support Includes Section */
.support-includes-section {
    padding: 100px 0;
    background: #F6FAFF;
}

.support-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.support-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 60px;
}

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

.support-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.support-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.support-card p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.support-card.highlighted {
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
}

.support-card.center-card {
    grid-column: 2;
}

.support-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.relative {
    position: relative;
}

.bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.05);
    z-index: 0;
}

.bg-circle.left {
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
}

.bg-circle.right {
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    background: rgba(59, 130, 246, 0.08);
}

@media (max-width: 1200px) {
    .header-container {
        padding: 15px 30px;
        border-radius: 20px;
        margin: 0 auto;
        width: 92%;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 470px;
        height: 100vh;
        background: #2162AB;
        padding: 100px 50px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav>ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        font-size: 19px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        white-space: normal;
        line-height: 1.3;
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    .has-dropdown>a::after {
        content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        border-right: 2.5px solid var(--white);
        border-bottom: 2.5px solid var(--white);
        transform: rotate(45deg);
        transition: 0.3s ease;
        margin-left: 10px;
        margin-top: -5px;
    }

    .has-dropdown.active>a::after {
        transform: rotate(-135deg);
        margin-top: 5px;
    }

    /* Mobile Dropdown Fix - Perfectly Aligned & Consistent */
    .main-nav .has-dropdown .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        box-shadow: none !important;
        background: none !important;
        padding: 0 0 0 20px !important;
        margin: 10px 0 !important;
        border-radius: 0 !important;
        min-width: 100% !important;
        display: none;
        transition: none !important;
        border-left: 2px solid rgba(255, 255, 255, 0.1) !important;
    }

    .main-nav .has-dropdown.active .dropdown-menu {
        display: block !important;
    }

    .main-nav .dropdown-menu li {
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
    }

    .main-nav .dropdown-menu a {
        font-size: 16px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 10px 0 !important;
        background: none !important;
        border-radius: 0 !important;
        text-align: left !important;
        justify-content: flex-start !important;
        display: block !important;
    }

    .dropdown-menu a::after {
        display: none !important;
        /* No arrows for sub-items */
    }

    .header-cta {
        display: none;
    }

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

@media (max-width: 768px) {

    /* Global Mobile Alignment Resets */
    .container,
    .header-container,
    .footer-container,
    .hero-container,
    .service-hero-container,
    .service-content-container,
    .support-container,
    .contact-form-container,
    .ready-cta-container {
        width: 92% !important;
        max-width: none !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    .logo img {
        height: 32px;
    }

    .service-hero-title,
    h1,
    h2,
    h3,
    .form-title,
    .support-title,
    .section-title {
        font-size: 24px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    p,
    .service-hero-desc,
    .form-subtitle,
    .support-card p {
        font-size: 16px !important;
        text-align: justify !important;
        line-height: 1.6 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .service-text-content {
        padding: 0 !important;
        text-align: center !important;
    }

    .service-image-box {
        margin-bottom: 30px !important;
        width: 100% !important;
    }

    .service-image-box img {
        width: 100% !important;
        height: auto !important;
    }

    .support-grid,
    .support-grid.four-cols {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .support-card.center-card {
        grid-column: auto !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .support-card {
        padding: 25px 20px !important;
    }

    .support-card h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 991px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-card.center-card {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-card.center-card {
        grid-column: auto;
    }

    .support-title {
        font-size: 24px !important;
    }

    .section-title {
        font-size: 24px !important;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: none;
    background: #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-submit {
    display: flex;
    justify-content: center;
}

/* Contact Page New Layout */
.contact-info-section {
    padding: 80px 0 40px;
    background: #ffffff;
}

.contact-info-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 40px;
}

.info-card {
    background: #2162AB;
    /* Brand Blue */
    color: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 60px 10px 60px 10px;
    /* Unique leaf shape from photo */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 98, 171, 0.2);
}

.info-icon {
    background: var(--white);
    color: #2162AB;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.form-tag {
    display: block;
    color: #2162AB;
    /* Soft green tag to match layout style */
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.btn-submit {
    background: #ffd700;
    /* Using the orange from photo as requested for the layout */
    color: var(--white);
    border: none;
    padding: 18px 45px;
    border-radius: 35px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.2);
}

.btn-submit:hover {
    background: #2162AB;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 127, 0, 0.4);
}

@media (max-width: 991px) {
    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .info-card {
        padding: 40px 20px;
    }

    .form-title {
        font-size: 32px !important;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    padding: 150px 0 120px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Matching the background pattern from other pages */
.gallery-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(150deg,
            #f8fafc 0%,
            #f8fafc 25%,
            #f1f5f9 25%,
            #f1f5f9 45%,
            #e2e8f0 45%,
            #e2e8f0 50%,
            #f8fafc 50%,
            #f8fafc 100%);
    z-index: 1;
    transform: rotate(-5deg);
}

.gallery-hero-container {
    max-width: 1500px;
    width: 100%;
    padding: 0 60px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-hero h1 {
    font-size: 60px;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.gallery-hero p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.btn-get-touch {
    display: inline-flex;
    align-items: center;
    background: #1e293b;
    color: #ffffff;
    padding: 10px 10px 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    gap: 15px;
}

.btn-get-touch:hover {
    background: #2162AB;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Grid */
.gallery-grid-section {
    padding: 100px 0;
    background: #ffffff;
}

.gallery-grid-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.gallery-grid {
    columns: 3;
    column-gap: 30px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-overlay {
    display: none;
}

.gallery-overlay span {
    display: none;
}

@media (max-width: 1200px) {
    .gallery-hero h1 {
        font-size: 64px;
    }
}

@media (max-width: 991px) {
    .gallery-grid {
        columns: 2;
    }
    .gallery-hero h1 {
        font-size: 54px;
    }
    .gallery-hero {
        padding: 120px 0 80px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        columns: 1;
        padding: 0 20px;
    }
    .gallery-hero h1 {
        font-size: 42px;
    }
}

/* Gallery Section Header Styles */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header .tag-badge {
    display: inline-block;
    padding: 8px 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    color: #475569;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.gallery-header .section-title {
    font-size: 60px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-header .section-title {
        font-size: 42px;
    }
}