@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nata+Sans:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nata Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #0090c0;
    --dark: #006287;
    --white: #fff;
    --black: #000;
    --lgray: #eee;
    --lblack: #333;
    --padding: 2.5em;
    --rpadding: 20px 1em
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo {
    max-width: 180px;
}

.header .logo img {
    width: 100%;
}

.header .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 2.5em;
}

.header .navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .navigation ul li {
    list-style: none;
    position: relative;
}

.header .navigation ul li a {
    display: block;
    padding: 20px 15px;
    text-decoration: none;
    color: var(--black);
    transition: .3s linear;
    font-size: 1.05em;
}

.header .navigation ul li a:hover {
    color: var(--primary);
}

.header .navigation ul>a {
    padding: 12px 20px;
    text-decoration: none;
    background: var(--dark);
    color: var(--white);
    font-size: 1.05em;
    border-radius: 50px;
    transition: .3s linear;
}

.header .navigation ul>a:hover {
    background: var(--primary);
}

.header .navigation .toggleMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    display: none;
    z-index: 1000;
}

.header .navigation .toggleMenu i {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .navigation .toggleMenu i.close {
    display: none;
}

.navigation.active .toggleMenu i.open {
    display: none;
}

.navigation.active .toggleMenu i.close {
    display: block;
}

/* hero section start */
/* Side-by-side hero section styles */
.heroSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}
.heroContent {
    flex: 1;
    min-width: 320px;
}
.heroImages {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 400px;
    max-width: 650px;
}
.heroImages .swiper {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}
.heroImages img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.heroSection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    padding: var(--padding);
}

.heroSection .heroContent {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heroSection .heroContent h1 {
    font-size: 2.5em;
    font-weight: 900;
    line-height: 100%;
}

.heroSection .heroContent h1 span {
    background-image: linear-gradient(to right, var(--primary) 0%, var(--dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heroSection .heroContent p {
    font-size: 1em;
    color: #333;
}

.heroBtn {
    display: flex;
    gap: 20px;
}

.heroBtn a {
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
    gap: 10px;
}

.heroBtn a:nth-child(1) {
    background: var(--black);
}

.heroBtn a:nth-child(1):hover {
    background: var(--primary);

}

.heroBtn a:nth-child(2) {
    background: var(--lgray);
    color: var(--black);
    padding: 5px 20px 5px 10px;
}

.heroBtn a i {
    background: var(--black);
    color: var(--white);
    padding: 5px;
    border-radius: 50%;
    font-size: 1.1em;
}

.heroSection .heroImages {
    flex: 1 1 600px;
    width: 100%;
}

.heroSection .heroImages img {
    width: 100%;
    border-radius: 20px;
}

/* Container for the section */
.customer-section-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 32rem;
}

.customer-section-container h2 {
    font-size: 1.5em;
    line-height: 150%;
    width: 100%;
    text-align: left;
}

/* Avatars container */
.avatars-container {
    display: flex;
    align-items: left;
    margin-left: 1rem;
    /* -space-x-4 (approximate) */
}

/* Individual avatar style */
.avatar {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-left: -1rem;
}

.avatar:nth-child(4) {
    background-color: var(--primary);
}

/* orange-500 */

/* Image within avatar */
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 6k+ text style */
.k-plus-text {
    color: #ffffff;
    /* text-white */
    font-size: 1.125rem;
    /* text-lg */
    line-height: 1.75rem;
    font-weight: 700;
    /* font-bold */
}

/* Responsive adjustments for medium screens and up */
@media (min-width: 768px) {

    /* md: breakpoint */
    .customer-heading {
        font-size: 2.5rem;
        /* md:text-4xl */
    }

    .avatar {
        width: 4rem;
        /* md:w-20 */
        height: 4rem;
        /* md:h-20 */
        margin-left: -1rem;
        /* Maintain overlap */
    }

    .k-plus-text {
        font-size: 1.10rem;
        /* md:text-xl */
    }
}

/* Styles for the new customer review card */
.review-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    /* Light border */
    border-radius: 0.75rem;
    /* Rounded corners */
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align items to the start */
    max-width: 24rem;
    /* Default max-width for smaller screens */
    width: 100%;
    /* Ensure it takes full width within its container */
    box-sizing: border-box;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
    /* Ensure header takes full width */
}

.review-avatar {
    width: 3.5rem;
    /* Slightly smaller avatar for the review card */
    height: 3.5rem;
    border-radius: 9999px;
    background-color: #cbd5e1;
    /* Light gray placeholder color */
    margin-right: 1rem;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;

}

.customer-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.customer-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.customer-designation {
    font-size: 0.875rem;
    color: #6b7280;
}

.review-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    margin-top: 0.5rem;
    font-style: italic;
}

/* hero section end */

/* services section start */
.servicesSection {
    padding: var(--padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
}

.servicesSection h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5em;
    text-align: center;
}

/* Bento grid layout for odd elements */
.serviceCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 1em;
    width: 100%;
    max-width: 1200px;
}

/* Highlight first card for bento effect */
.serviceCard:first-child {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
}

.serviceCard {
    background: var(--white);
    border-radius: 1em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    padding: 2em 1.5em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, border-color 0.2s;
    border: 1px solid #e5e7eb;
    min-width: 0;
    min-height: 220px;
}

.serviceCard:hover {
    box-shadow: 0 8px 24px rgba(0, 144, 192, 0.15);
    border-color: var(--primary);
}

.serviceCard i {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2em;
    margin-bottom: 1em;
}

.serviceCard h3 {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--lblack);
    margin-bottom: 0.5em;
}

.serviceCard p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .serviceCards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em;
    }

    .serviceCard {
        min-height: 180px;
    }

    .serviceCard:first-child {
        grid-column: 1 / span 2;
        grid-row: 1 / span 1;
    }
}

@media (max-width: 600px) {
    .servicesSection {
        padding: var(--rpadding);
    }

    .serviceCards {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .serviceCard {
        padding: 1.2em 1em;
        min-height: 120px;
    }

    .serviceCard:first-child {
        grid-column: auto;
        grid-row: auto;
    }
}

/* services section end */

/* about section start */
.aboutSection {
    padding: var(--padding);
    background: linear-gradient(90deg, #f8fafc 0%, #e0f7fa 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
    max-width: 100%;
    width: 100%;
    background: #fff;
    border-radius: 1.5em;
    box-shadow: 0 8px 32px rgba(0, 144, 192, 0.08);
    overflow: hidden;
    align-items: center;
    padding: 2em;
}

.aboutImage {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutImage img {
    width: 100%;
    height: 450px;
    border-radius: 1em;
    box-shadow: 0 4px 16px rgba(0, 144, 192, 0.10);
    object-fit: cover;
}

.aboutContent {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.aboutContent h2 {
    font-size: 2em;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.aboutContent p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.7;
    margin-bottom: 0.5em;
}

.aboutContent ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7em;
}

.aboutContent ul li {
    position: relative;
    padding-left: 2.2em;
    font-size: 1em;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.7em;
}

.aboutContent ul li i {
    position: absolute;
    left: 0.2em;
    font-size: 1.2em;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aboutContent ul li::before {
    display: none;
}

@media (max-width: 900px) {
    .aboutContainer {
        flex-direction: column;
        padding: 1.2em;
        gap: 1.5em;
    }

    .aboutImage {
        max-width: 100%;
        min-width: 180px;
    }

    .aboutContent h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 600px) {
    .aboutSection {
        padding: var(--rpadding);
    }

    .aboutContainer {
        padding: 1em;
        border-radius: 1em;
    }

    .aboutContent h2 {
        font-size: 1.2em;
    }

    .aboutImage img {
        border-radius: 0.7em;
    }
}

/* about section end */

/* contact section start */
.contactSection {
    padding: var(--padding);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
    max-width: 100%;
    width: 100%;
    border-radius: 1.5em;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 2em;
}

.contactLeft,
.contactRight {
    flex: 1 1 320px;
    min-width: 350px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.contactLeft h2 {
    font-size: 2em;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.contactDetails {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contactDetails li {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    font-size: 1em;
    color: #444;
}

.contactDetails li i {
    font-size: 1.5em;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.contactDetails li a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}

.contactDetails li a:hover {
    color: var(--dark);
    text-decoration: underline;
}

.contactMap {
    width: 100%;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 144, 192, 0.10);
}

.contactMap iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 1em;
    display: block;
}

.contactRight {
    width: 100%;
}

.contactRight iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 1em;
    box-shadow: 0 2px 8px rgba(0, 144, 192, 0.10);
    background: #f8fafc;
}

@media (max-width: 900px) {
    .contactContainer {
        flex-direction: column;
        padding: 1.2em;
        gap: 1.5em;
    }

    .contactLeft,
    .contactRight {
        max-width: 100%;
        min-width: 180px;
    }

    .contactLeft h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 600px) {
    .contactSection {
        padding: var(--rpadding);
    }

    .contactContainer {
        padding: 1em;
        border-radius: 1em;
    }

    .contactLeft h2 {
        font-size: 1.2em;
    }

    .contactMap iframe,
    .contactRight iframe {
        border-radius: 0.7em;
        height: 300px;
    }

    .contactRight iframe {
        height: 600px;
    }
}

/* contact section end */


/* cta section start */
.ctaSection {
    background: linear-gradient(100deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 2.5em 1.5em;
    border-radius: 1.2em;
    box-shadow: 0 6px 24px rgba(0, 144, 192, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers items horizontally in a column layout */
    gap: 1em;
    margin: 2em auto;
    max-width: 93%;
    width: 100%;
    box-sizing: border-box;
}

.ctaHeading {
    font-size: 2em;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.2em;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--white);
}

.ctaText {
    font-size: 1.08em;
    text-align: center;
    color: #e0f7fa;
    margin-bottom: 0.7em;
    line-height: 1.5;
    max-width: 90%;
}

.ctaButton {
    display: inline-block;
    padding: 0.9em 2em;
    background: var(--white);
    color: var(--primary);
    font-size: 1em;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 144, 192, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: 0.3em;
    border: none;
    cursor: pointer;
    outline: none;
    text-align: center;
    /* Ensures text inside the button is centered */
}

.ctaButton:hover,
.ctaButton:focus {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 144, 192, 0.15);
}

@media (max-width: 600px) {
    .ctaSection {
        padding: 1em 0.5em;
        border-radius: 0.7em;
        max-width: 90%;
    }

    .ctaHeading {
        font-size: 1.2em;
    }

    .ctaText {
        font-size: 0.95em;
    }

    .ctaButton {
        font-size: 0.95em;
        padding: 0.7em 1.2em;
    }
}
/* cta section end */

/* footer section start */
.footerCopyright {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 1.2em 0;
    font-size: 1em;
    border-top: 1px solid #e5e7eb;
    width: 100%;
}

.footerCopyright p {
    margin: 0;
    color: var(--white);
    font-size: 1em;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .footerCopyright {
        padding: 0.7em 0;
        font-size: 0.95em;
    }
    .footerCopyright p {
        font-size: 0.95em;
    }
}
/* footer section end */

@media screen and (max-width: 900px) {
    .header .navigation ul>a {
        display: none;
    }
}

@media screen and (max-width: 745px) {
    .header .navigation .toggleMenu {
        display: block;
    }

    .header .navigation ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        background-color: #fff;
        z-index: 999;
        transform: translateX(-500%);
        transition: .3s linear;
    }

    .header .navigation.active ul {
        transform: translateX(0);
    }

    .header .navigation ul li a {
        padding: 15px 0;
        font-size: 1.3em;
    }
}

@media screen and (max-width: 425px) {
    .header .navigation {
        padding: var(--rpadding);
    }

    .heroSection {
        padding: var(--rpadding);
        gap: 30px;
    }
}