html {
    scroll-behavior: smooth;
}

body {
    font-family: auto;
    margin: 0;
    padding: 0;
    background-color: white;
}

/* Navigation styles */
nav {
    height: 83px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    color: black;
    padding: 10px 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1001;
}

.logo img {
    width: 150px;
    padding: 11px;
    margin-top: -5px;
    height: 100px;
    border-radius: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: rgb(8, 8, 8);
    text-decoration: none;
    font-size: 22px;
    padding: 10px 15px;
}

.nav-links a:hover {
    text-decoration: underline;
}

.login-btn {
    background-color: orangered;
    margin-top: 6px;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

/* Hamburger menu icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px 0;
}

/* Close button for mobile menu */
span.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #4b98cf;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    span.close-menu {
        display: block;
    }

    .login-btn {
        margin-top: 15px;
    }

    .nav-links a {
        font-size: 24px;
        color: white;
    }
}

/* Links div styles */
.links-div {
    background-color: #4b98cf;
    padding: 15px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 1%;
}

.links-div a {
    color: #fdf4f4;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    white-space: nowrap; /* Prevents links from breaking */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.links-div a:hover {
    text-decoration: underline;
    color: #f1f1f1;
    background-color: rgba(255, 255, 255, 0.1); /* subtle hover effect */
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .links-div {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .links-div a {
        display: block;
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Welcome section styles */
.welcome-div {
    padding:15px;
    text-align: center;
    background-color:#eaf6fc;
    height:450px;
}

.welcome-div h1 {
    color: #00796b;
    /*font-size: 5vw;*/
    margin-bottom: 20px;
    margin-left: -49%;
    font-family: "Poppins", Sans-serif;

}
h2 {
    margin-left: -91%;
}

.welcome-div p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-left: -81%;
    color: rgb(14, 12, 12);
}
.get-started-btn {
    font-family: auto;
    font-weight: 500;
    font-size: 21px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 11px 70px;
    border-radius: 50px;
    transition: 0.3s;
    color: #fff;
    background: #4b98cf;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    float: left;
    margin-left: 9%;
    margin-top: 30px;
}

.get-started-btn:hover {
    border-color: rgba(255, 255, 255, 0.904); /* Highlights border on hover */
}

.get-started-btn:active {
    background:  rgba(255, 255, 255, 0.2); /* Adds slight effect on click */
}



/* Squares section styles */
.squares-div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: -64px;
    padding: 0 20px;
}

/* Square card style */
.square {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 185px;
    height: 185px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 2px #010114;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    opacity: 0;
    transform: scale(0.5);
    animation: popIn 0.6s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.square:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px 4px #010114aa;
}

/* Pop-in animation */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered animation delays */
.square:nth-child(1) { animation-delay: 0.2s; }
.square:nth-child(2) { animation-delay: 0.4s; }
.square:nth-child(3) { animation-delay: 0.6s; }
.square:nth-child(4) { animation-delay: 0.8s; }
.square:nth-child(5) { animation-delay: 1s; }
.square:nth-child(6) { animation-delay: 1.2s; }

/* Image inside square */
.square img {
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
}

/* Text inside square */
.square p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Tablet responsiveness */
@media screen and (max-width: 768px) {
    .square {
        width: 140px;
        height: 140px;
        padding: 8px;
    }

    .square p {
        font-size: 12px;
    }

    .square img {
        max-width: 70%;
    }
}

/* Mobile responsiveness */
@media screen and (max-width: 480px) {
     .squares-div {
        gap: 15px;
        width: 100%;
    }

    .square {
        width: 110px;
        height: 110px;
        padding: 6px;
    }

    .square p {
        font-size: 11px;
    }

    .square img {
        max-width: 65%;
    }
}

/* About Us styles */
.about-us-div {
    padding: 40px 20px;
    background-color: #eaf6fc;
    text-align: center;
    margin: 20px;
    border-radius: 10px;
}

.about-us-div h2 {
    font-size: 35px;
    color: #00796b;
    margin-bottom: 30px;
    font-family: auto;
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about-content p {
    flex: 2;
    font-size: 22px;
    color: #00796b;
    margin: 20px;
    text-align: left;
    font-family: auto;
    font-weight: 300;
    line-height: 1.6;
    min-width: 280px;
}

.about-img {
    flex: 1;
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Tablet and below */
@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-content p {
        text-align: center;
        font-size: 20px;
        margin: 20px 10px;
    }

    .about-img {
        max-width: 100%;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .about-us-div {
        padding: 20px 10px;
    }

    .about-us-div h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 18px;
        margin: 15px 5px;
    }
}

/* Stats Section */
.stats-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 10px;
    margin: 20px;
    gap: 20px;
}

.stats-img {
    width: 45%;
    height: auto;
    border-radius: 10px;
    max-width: 500px;
    min-width: 250px;
}

.stats-content {
    flex: 1;
    font-size: 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-left: 40px;
    min-width: 280px;
}

.stats-content p {
    font-size: 25px;
    font-weight: bold;
    font-family: auto;
    margin: 0;
    padding: 20px;
    line-height: 1.5;
}

.stats-content b {
    font-size: 2rem;
    color: #2c8099;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .stats-div {
        flex-direction: column;
        padding: 30px 15px;
    }

    .stats-img {
        width: 90%;
        margin-bottom: 20px;
    }

    .stats-content {
        margin-left: 0;
        text-align: center;
    }

    .stats-content p {
        padding: 10px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .stats-content p {
        font-size: 18px;
    }

    .stats-content b {
        font-size: 1.6rem;
    }
}



/* Section Container */
/* Section Container */
.our-services-div {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.our-services-div h1 {
    font-size: 40px;
    font-family: auto;
    margin-bottom: 10px;
    color: #00796b;
}

.our-services-div h4 {
    font-size: 1.2rem;
    color: #00796b;
    margin-bottom: 40px;
    font-family: auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 10px;
    font-family: auto;
}

/* Individual Service Card */
.service {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    font-family: auto;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.service img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.service h3 {
    font-size: 25px;
    font-weight: 700;
    font-family: auto;
    color: var(--color-default, #34495e);
    margin-bottom: 10px;
    padding-bottom: 8px;
    position: relative;
}

.service p {
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 0;
    font-family: auto;
}

.service h6 {
    font-size: 20px;
    color: #00796b;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .our-services-div h1 {
        font-size: 32px;
    }

    .our-services-div h4 {
        font-size: 1rem;
    }

    .service h3 {
        font-size: 1.5rem;
    }

    .service p,
    .service h6 {
        font-size: 1rem;
    }

    .service img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .our-services-div h1 {
        font-size: 28px;
    }

    .our-services-div h4 {
        font-size: 0.95rem;
    }

    .service h3 {
        font-size: 1.2rem;
    }

    .service p,
    .service h6 {
        font-size: 0.9rem;
    }

    .service img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .our-services-div h1 {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service {
        padding: 20px 15px;
    }

    .service h3 {
        font-size: 1rem;
    }

    .service p,
    .service h6 {
        font-size: 0.85rem;
    }

    .service img {
        width: 50px;
        height: 50px;
    }
}

/* ---------- */
.h6 {
    margin-top: -14px;
}

.happy-clients-carousel {
    padding: 30px 20px;
    background-color: #eaf6fc;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
}

.happy-clients-carousel h3 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #00796b;
    font-family: auto;
}

/* Clients container */
.clients-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual client box */
.client {
    flex: 1 1 300px;
    max-width: 320px;
    padding: 20px;
    font-size: 16px;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: white;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}

/* Client image */
.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: -11px;
    object-fit: cover;
}

/* Star rating */
.stars {
    color: #FFD700;
    font-size: 18px;
    margin-top: 8px;
}

/* Pagination dots */
.pagination-indicators {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #0b3b1b;
}

/* Tablet adjustments */
@media screen and (max-width: 768px) {
    .happy-clients-carousel h3 {
        font-size: 20px;
    }

    .client {
        font-size: 15px;
    }

    .stars {
        font-size: 16px;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 480px) {
    .clients-content {
        flex-direction: column;
        align-items: center;
    }

    .client {
        width: 90%;
        padding: 15px;
        font-size: 14px;
    }

    .client-img {
        width: 70px;
        height: 70px;
    }

    .happy-clients-carousel h3 {
        font-size: 18px;
    }

    .stars {
        font-size: 14px;
    }
}


/* Footer styles */
footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #eaf6fc;
    color: #333;
    padding: 30px 20px;
    text-align: left;
}

.footer-div {
    flex: 1 1 250px;
    padding: 10px;
    margin: 10px;
}

.footer-div h3 {
    margin: 0 0 15px;
    color: #00796b;
    font-size: 20px;
    font-family: auto;
}

.footer-div ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-div ul li {
    margin: 8px 0;
}

.footer-div ul a {
    color: #00796b;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-div ul a:hover {
    text-decoration: underline;
    color: #004d40;
}

/* Tablet Responsive */
@media screen and (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-div {
        margin: 15px 0;
    }

    .footer-div h3 {
        font-size: 18px;
    }

    .footer-div ul a {
        font-size: 15px;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
    .footer-div {
        flex: 1 1 100%;
        padding: 10px 5px;
    }

    .footer-div h3 {
        font-size: 16px;
    }

    .footer-div ul a {
        font-size: 14px;
    }
}


/* Container */
.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background: #0056b3;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid #003f82;
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
}
header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Section Styles */
main section {
    background: white;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
main h2 {
    color: #0056b3;
    font-size: 1.8rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}
main p {
    margin: 10px 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    header p {
        font-size: 1rem;
    }
    main h2 {
        font-size: 1.5rem;
    }
    main p {
        font-size: 0.9rem;
    }
    main section {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 0;
    }
    header h1 {
        font-size: 1.8rem;
    }
    header p {
        font-size: 0.9rem;
    }
    main h2 {
        font-size: 1.3rem;
    }
    main p {
        font-size: 0.85rem;
    }
    .container {
        width: 95%;
    }
}

.slideMenu {
    display: none;
    width: 100px;
    border: 1px solid #4b98cf;
    padding: 10px;
    position: absolute;
    background-color: rgb(109, 152, 209);
}

li:hover .slideMenu {
    display: block;
}

/* contact */
/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: auto;
    font-size:26px;
    font-weight:300;
    color:#00796b;
}

/* Contact Section */
.contact-container {
    display: flex;
    max-width: 80%;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Left Sidebar */
.contact-info {
    /* background: #4b98cf; */
    color: #fff;
    padding: 30px;
    width: 35%;
}
.h1{
    font-size: 40px;
}
.info-box {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.info-box i {
    font-size: 20px;
    margin-right: 10px;
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Right Form */
.contact-form {
    width: 65%;
    padding: 30px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row input {
    width: 50%;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: #4b98cf;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #005f56;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info, .contact-form {
        width: 100%;
    }
}
