body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #111;
}

header {
    background: #000;
    color: #fff;
    border-bottom: 2px solid #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 90px;
}

.logo-title {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 18px;
    border-radius: 8px;
    background: #fff;
    object-fit: contain;
}

.logo-title h1 {
    margin: 0;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-align: left;
}

.tagline {
    margin: 2px 0 0 0;
    font-size: 1em;
    color: #bbb;
    text-align: left;
    font-weight: 400;
}

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 22px;
    background: #fff;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08em;
    border: 2px solid #111;
    transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

nav ul li a.active,
nav ul li a:hover,
nav ul li a:focus {
    background: #111;
    color: #fff;
    border: 2px solid #111;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    outline: none;
}

/* Responsive for mobile */
@media (max-width: 700px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    nav ul li a {
        width: 100%;
        text-align: center;
        font-size: 1em;
        padding: 10px 0;
    }
}

.hero {
    width: 100%;
    min-height: 320px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    box-sizing: border-box;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    background: #fff;
    padding: 8px;
}

.hero-content h2 {
    font-size: 2.2em;
    margin-bottom: 12px;
    color: #fff;
    word-break: break-word;
}

.hero-content p {
    font-size: 1.15em;
    margin-bottom: 18px;
    color: #eee;
    word-break: break-word;
}

.cta-btn {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.cta-btn:hover {
    background: #222;
    color: #fff;
}

main {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    padding: 0 40px 40px 40px;
}

.about-section {
    background: linear-gradient(90deg, #fff 60%, #f5f5f5 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px 32px 32px 32px;
    margin-bottom: 60px;
    display: block; /* Change from flex to block for vertical stacking */
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #e0e0e0 60%, transparent 100%);
    z-index: 0;
}

.about-section h2 {
    color: #000;
    border-left: 5px solid #000;
    padding-left: 12px;
    margin-bottom: 18px;
    z-index: 1;
    /* Remove margin-top if present */
}

.about-section p {
    font-size: 1.2em;
    color: #333;
    margin: 0;
    z-index: 1;
}

@media (max-width: 800px) {
    .about-section {
        flex-direction: column;
        gap: 18px;
        padding: 24px 12px;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(90deg, #f5f5f5 60%, #fff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px 32px 32px 32px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #e0e0e0 60%, transparent 100%);
    z-index: 0;
}

.services-section h2 {
    color: #000;
    border-left: 5px solid #000;
    padding-left: 12px;
    margin-bottom: 18px;
    z-index: 1;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    z-index: 1;
    position: relative;
}

.service-card {
    background: linear-gradient(135deg, #fff 70%, #f0f0f0 100%);
    border: 2px solid #000;
    border-radius: 16px;
    padding: 28px 22px;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
    box-sizing: border-box;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, #e0e0e0 60%, transparent 100%);
    z-index: 0;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25em;
    color: #000;
    font-weight: 700;
    z-index: 1;
    position: relative;
}

.service-card p {
    margin: 0;
    color: #444;
    font-size: 1em;
    z-index: 1;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border-color: #222;
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(135deg, #f8f8f8 70%, #eaeaea 100%);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 8px 12px;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    resize: vertical;
}

.contact-form button {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 0;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #0056b3;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 1em;
    letter-spacing: 1px;
    margin-top: 0;
}

@media (max-width: 900px) {
    .header-container,
    .hero-content-with-logo,
    .services-list,
    .expertise-list,
    .contact-flex {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 18px !important;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin: 0;
    }
    .logo-title {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-content-with-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-logo img {
        max-width: 120px;
        margin-bottom: 12px;
    }
    .service-card,
    .expertise-card,
    .contact-image,
    .contact-left {
        max-width: 100%;
        min-width: 0;
        margin: 0 auto 18px auto;
        box-sizing: border-box;
    }
    .expertise-list {
        grid-template-columns: 1fr !important;
    }
    .contact-flex {
        flex-direction: column !important;
        gap: 18px !important;
    }
    .contact-image {
        margin: 0 auto 18px auto;
        text-align: center;
    }
    .contact-image img {
        max-width: 180px;
        height: auto;
        margin: 0 auto;
    }
    .floating-social-icons-right {
        right: 8px;
        top: auto;
        bottom: 16px;
        flex-direction: row;
        gap: 12px;
        transform: none;
    }
    .thankyou-container {
        padding: 24px 6px 18px 6px;
        margin: 30px 4px 0 4px;
    }
    .home-btn {
        right: 8px;
        bottom: 8px;
        padding: 10px 14px;
        font-size: 1em;
    }
    .section-divider {
        margin: 32px 0 0 0;
    }
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .terms-btn,
    .privacy-btn,
    .disclaimer-btn {
        width: 90%;
        margin: 8px auto 0 auto;
        display: block;
    }
}

/* Make sure images and containers scale */
img, .logo, .hero-logo img, .contact-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

body, html {
    width: 100vw;
    overflow-x: hidden;
}

/* Add this at the end of your styles.css file */
.floating-social-icons {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.floating-social-icons .social-icon img {
    width: 36px;
    height: 36px;
    display: block;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    padding: 6px;
    transition: box-shadow 0.2s;
}

.floating-social-icons .social-icon img:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

/* Add at the end of your CSS file */
.chat-now-btn {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    font-size: 1.15em;
    font-weight: 600;
    padding: 16px 38px;
    border-radius: 32px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    text-decoration: none;
    z-index: 1001;
    transition: background 0.2s, box-shadow 0.2s;
    border: none;
    letter-spacing: 1px;
}
.chat-now-btn:hover {
    background: #0056b3;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
/* filepath: c:\Users\Lenovo\OneDrive\Desktop\Academy\styles.css */
/* Add below your .contact-section styles */
.contact-flex {
    display: flex;
    align-items: stretch;
    gap: 40px;
    justify-content: space-between;
}

.contact-left {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.contact-image {
    flex: 1 1 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px;
    min-height: 100%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    max-width: 380px;
    max-height: 380px;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 24px;
    }
    .contact-image,
    .contact-left {
        max-width: 100%;
    }
    .contact-image img {
        max-width: 100%;
        max-height: 220px;
    }
}

/* Add at the end of your CSS file or after your services section styles */
.why-choose-section {
    background: linear-gradient(90deg, #f5f5f5 60%, #fff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px 32px 32px 32px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.why-choose-section h2 {
    color: #000;
    border-left: 5px solid #000;
    padding-left: 12px;
    margin-bottom: 28px;
    z-index: 1;
}

.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    z-index: 1;
    position: relative;
}

.why-choose-card {
    background: linear-gradient(135deg, #fff 70%, #f0f0f0 100%);
    border: 2px solid #000;
    border-radius: 16px;
    padding: 28px 22px;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 340px;
    box-sizing: border-box;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.why-choose-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.15em;
    color: #000;
    font-weight: 700;
    z-index: 1;
    position: relative;
}

.why-choose-card p {
    margin: 0;
    color: #444;
    font-size: 1em;
    z-index: 1;
    position: relative;
}

.why-choose-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border-color: #222;
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(135deg, #f8f8f8 70%, #eaeaea 100%);
}

@media (max-width: 900px) {
    .why-choose-list {
        flex-direction: column;
        gap: 18px;
    }
}

/* Add at the end of your CSS file */
.section-divider {
    width: 100%;
    height: 3px;
    background: #000;
    border: none;
    margin: 48px 0 0 0;
    opacity: 0.9;
    border-radius: 2px;
}

/* Update or add these styles for expertise section boxes in columns */
.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    z-index: 1;
    position: relative;
    justify-content: center;
}

.expertise-card {
    background: linear-gradient(135deg, #fff 70%, #f0f0f0 100%);
    border: 2px solid #000;
    border-radius: 16px;
    padding: 28px 22px;
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 320px;
    box-sizing: border-box;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.expertise-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.15em;
    color: #000;
    font-weight: 700;
}

.expertise-card p {
    margin: 0;
    color: #444;
    font-size: 1em;
}

.expertise-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border-color: #222;
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(135deg, #f8f8f8 70%, #eaeaea 100%);
}

@media (max-width: 900px) {
    .expertise-list {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
}

/* Make footer buttons static */
.terms-btn,
.privacy-btn,
.disclaimer-btn {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 22px;
    font-size: 1em;
    cursor: pointer;
    margin: 8px 8px 0 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s;
    display: inline-block;
    position: static; /* Remove fixed positioning */
    left: unset;
    right: unset;
    bottom: unset;
    z-index: unset;
}
.terms-btn:hover,
.privacy-btn:hover,
.disclaimer-btn:hover {
    background: #444;
}

.terms-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.45);
}

.terms-modal-content {
    background: #fff;
    margin: 60px auto;
    padding: 32px 24px;
    border-radius: 16px;
    max-width: 600px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    position: relative;
    font-size: 1.05em;
}

.terms-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2em;
    color: #222;
    cursor: pointer;
    font-weight: bold;
}

.terms-modal-content h2 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 1.4em;
    color: #222;
}

/* Add after your .terms-btn styles */
.privacy-btn {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 22px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 16px;
    margin-bottom: 0;
    margin-left: 10px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: inline-block;
}
.privacy-btn:hover {
    background: #444;
}

/* Add after your .privacy-btn styles */
.disclaimer-btn {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 22px;
    font-size: 1em;
    cursor: pointer;
    margin: 8px 8px 0 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s;
    display: inline-block;
    position: static; /* Remove fixed positioning */
    left: unset;
    right: unset;
    bottom: unset;
    z-index: unset;
}
.disclaimer-btn:hover {
    background: #444;
}

/* Add at the end of your styles.css */
.floating-social-icons-right {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.floating-social-icons-right .social-icon img {
    width: 36px;
    height: 36px;
    display: block;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    padding: 6px;
    transition: box-shadow 0.2s;
}

.floating-social-icons-right .social-icon img:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}
.floating-infraguard {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1200;
    display: flex;
    align-items: center;
    background: #171616;
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    padding: 8px 18px 8px 8px;
    transition: background 0.2s;
    min-width: 0;
}
.floating-infraguard a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    gap: 10px;
}
.infraguard-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}
.infraguard-text {
    color: #fff;
    font-size: 1em;
    letter-spacing: 0.5px;
    display: block;
}
.infraguard-desc {
    color: #bbb;
    font-size: 0.93em;
    font-weight: 400;
    margin-top: 2px;
    display: block;
}
.floating-infraguard:hover, .floating-infraguard:focus-within {
    background: #222;
}
@media (max-width: 600px) {
    .floating-infraguard {
        left: 8px;
        bottom: 8px;
        padding: 6px 10px 6px 6px;
    }
    .infraguard-text {
        font-size: 0.95em;
    }
    .infraguard-desc {
        font-size: 0.88em;
    }
    .infraguard-icon {
        width: 26px;
        height: 26px;
        margin-right: 7px;
    }
}

/* Add to your styles.css for the blue WhatsApp Chat Now button */
.whatsapp-chat-btn {
    display: inline-block;
    background: #007bff;
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 22px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1em;
    border: none;
    transition: background 0.18s;
    margin-left: 8px;
}
.whatsapp-chat-btn:hover,
.whatsapp-chat-btn:focus {
    background: #0056b3;
    color: #fff !important;
}