/* ========================================
   MOTHER SAI CONSTRUCTION TECHNOLOGIES
   Theme: Bold Contemporary
   ======================================== */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* CSS VARIABLES */
:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --accent: #F7B801;
    --text: #1a1a1a;
    --light: #fafafa;
    --white: #ffffff;
    --gray: #555;
    --light-gray: #e9ecef;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* UTILITY CLASSES */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 100px 0;
}

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

/* NAVIGATION */
nav {
    background: var(--secondary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
   width: 200px;
   height: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
   margin-right: auto;
   margin-top: 5px;
}

.logo-img {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.5em;
}

.logo-text {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95em;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    height: 4px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8em;
    cursor: pointer;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--secondary);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 40px;
    }
}

/* HERO SECTION */
.hero {
    background: var(--white);
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 40px;
}

.hero-content h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 4.5em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text);
    animation: slideInLeft 0.8s ease;
}

.hero-content h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent);
    opacity: 0.3;
    z-index: -1;
}

.hero .tagline {
    font-size: 1.3em;
    color: var(--gray);
    margin-bottom: 45px;
    line-height: 1.7;
    animation: slideInLeft 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: slideInLeft 0.8s ease 0.4s backwards;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background: #003d6b;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

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

.hero-image {
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: slideInRight 0.8s ease;
}

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

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    background: var(--accent);
    color: var(--text);
    font-weight: 700;
    font-size: 0.85em;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5em;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-title span {
    color: var(--primary);
}

.section-description {
    font-size: 1.2em;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* STATS SECTION */
.stats-section {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 4em;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1em;
    font-weight: 500;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8em;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* GRAPHENE SPOTLIGHT */
.graphene-spotlight {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.graphene-spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.graphene-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.graphene-text h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 4em;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 30px;
}

.graphene-text h2 span {
    color: var(--primary);
}

.graphene-text p {
    font-size: 1.2em;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.graphene-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-family: 'Crimson Pro', serif;
    font-size: 3em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1em;
    color: #666;
    font-weight: 500;
}

/* CLIENT LOGOS */
.clients-section {
    padding: 80px 0;
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.client-logo {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* WHY CHOOSE US */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: var(--white);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8em;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* TEAM SECTION */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.team-photo {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.team-info {
    padding: 35px;
    text-align: center;
}

.team-info h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2em;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 700;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--gray);
    line-height: 1.8;
}

/* TIMELINE */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--light-gray);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-year {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5em;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.8;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--light-gray);
}

/* PROJECTS GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.project-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.project-info {
    padding: 35px;
}

.project-category {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2em;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 700;
}

.project-info p {
    color: var(--gray);
    line-height: 1.8;
}

/* CONTACT FORM */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 3em;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3em;
    flex-shrink: 0;
}

.contact-text h4 {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--gray);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* FOOTER */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 2em;
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3em;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* ANIMATIONS */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 4em;
    }

    .section-title {
        font-size: 3em;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 30px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 3.5em;
    }

    .hero-image {
        height: 400px;
        width: 100%;
    }

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

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

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

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

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

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .logo img {
    height: 65px;
}

    /* Fix all 2-column grids */
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: 1.2fr 1fr"],
    div[style*="grid-template-columns: 1fr 1.3fr"],
    div[style*="grid-template-columns: 1fr 1.5fr"],
    div[style*="grid-template-columns: 1.5fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Fix all repeat grids */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    div[style*="grid-template-columns: repeat(5, 1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show mobile menu */
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--secondary);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        padding: 15px 40px !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Typography */
    .hero-content h1,
    h1[style*="font-size: 5em"],
    h1[style*="font-size: 4.5em"] {
        font-size: 2.5em !important;
    }

    .section-title,
    h2[style*="font-size: 4em"],
    h2[style*="font-size: 3.5em"],
    h2[style*="font-size: 3em"] {
        font-size: 2em !important;
    }

    h3[style*="font-size: 2.5em"] {
        font-size: 1.8em !important;
    }

    .hero .tagline,
    p[style*="font-size: 1.3em"],
    p[style*="font-size: 1.2em"] {
        font-size: 1.1em !important;
    }

    /* All grids to single column */
    .services-grid,
    .features-grid,
    .projects-grid,
    .team-grid,
    .stats-grid,
    .clients-grid,
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: 1.2fr 1fr"],
    div[style*="grid-template-columns: 1fr 1.3fr"],
    div[style*="grid-template-columns: 1fr 1.5fr"],
    div[style*="grid-template-columns: 1.5fr 1fr"],
    div[style*="grid-template-columns: repeat(2, 1fr)"],
    div[style*="grid-template-columns: repeat(3, 1fr)"],
    div[style*="grid-template-columns: repeat(4, 1fr)"],
    div[style*="grid-template-columns: repeat(5, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .logo img {
    height: 55px;
}

    /* Images full width */
    .hero-image,
    div[style*="height: 600px"],
    div[style*="height: 400px"],
    div[style*="height: 350px"],
    div[style*="height: 250px"],
    div[style*="height: 200px"] {
        height: 300px !important;
    }

    /* Padding adjustments */
    .container {
        padding: 0 20px !important;
    }

    .nav-container {
        padding: 0 20px !important;
    }

    .section-padding {
        padding: 60px 0 !important;
    }

    div[style*="padding: 60px"],
    div[style*="padding: 50px"],
    div[style*="padding: 40px 40px"],
    div[style*="padding: 50px 40px"] {
        padding: 30px 20px !important;
    }

    /* Hero CTAs */
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        text-align: center;
        width: 100%;
    }

    /* Timeline adjustments */
    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px) !important;
        margin-left: 60px !important;
        text-align: left !important;
    }

    .timeline-dot {
        left: 20px !important;
    }

    /* Form adjustments */
    .form-row {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
    }

    /* Gap adjustments */
    div[style*="gap: 80px"] {
        gap: 40px !important;
    }

    div[style*="gap: 60px"] {
        gap: 30px !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em !important;
    }

    .section-title {
        font-size: 1.8em !important;
    }

    .container {
        padding: 0 15px !important;
    }

    .nav-container {
        padding: 0 15px !important;
    }

    .logo-text {
        font-size: 1.4em !important;
    }

    .logo img {
    height: 45px;
}

    div[style*="padding: 30px 20px"] {
        padding: 20px 15px !important;
    }
}

/* Mobile - 45px height */
@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }
}

.logo img {
    height: 80px;
   padding-top: 5px;
    width: auto;
}
