@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.logo-img {
    width: 50px;
    height: auto; 
}

.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}


.card1-container1{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
}
.card1{
    width: 325px;
    background-color: #222 ;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px(0,0,0,0.2);
    margin: 20px;
}
.card1 img{
    width: 100%;
    height: auto;
}
.card1-content{
    padding: 16px;
}
.card1-content h3{
    font-size: 28px;
    margin-bottom: 8px;
}
.card1-content p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;
}


/*navbar styling*/

.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    background-color: transparent; /* Transparent by default */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    /*background: #671B61;*/
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 15px 0;
    background: #986195;

}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo a span{
    color: #671B61;
    transition: all 0.3s ease;

}
.navbar.sticky .logo a span{
    color: #FFF;

}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: #F1A5AD;

}

.navbar.sticky .menu li a:hover{
    color: #FFF;

}

/*menu btn-styling*/
.menu-btn{
    color: #FFF;
    font-size: 23px;
    cursor: pointer;
    display: none;
}


/*home section styling*/
.home{
    display: flex;
    background: url("eduford_img/banner\ -\ Copy.jpg") no-repeat center;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    font-family: 'Ubuntu', sans-serif;  
}
.home .max-width{
    margin: auto 0 auto 40px;
}
.home .home-content .text-1{
    font-size: 21px;
}
.home .home-content .text-2{
    font-size: 70px;
    font-weight: 600;
    margin-left: -3px;
}
.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
}
.home .home-content a{
    display: inline-block;
    background: #671B61;
    color: #FFF;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #671B61;
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: #671B61;
    background: none;
}
/*All similar style*/
section{
    padding: 100px 0;
    padding-top: 125px;
}
.about, .services, .teams, .contact{
    font-family: 'Poppins', sans-serif;
}
.about .about-content,
.services .serv-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    color: #986195;
    padding: 5px;
    background: #FFF;
    transform: translateX(-50%);
}
/*About Section*/
.about{
    background: #FFF;
    color: #111;
}
.about, .services{
    font-family: 'Poppins', sans-serif;
}

.about .title::after{
    content: "What we do";
}
.about .about-content,
.services .serv-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.about .about-content .left{
    width: 45%;

}
.about .about-content .left img{
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}
.about .about-content .right{
    width: 55%;

}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
    color: #671B61;
}
.about .about-content .right p{
    text-align: justify;
}
.about .about-content .right a{
    display: inline-block;
    background: #671B61;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #671B61;
    transition: all 0.3s ease;
    
}
.about .about-content .right a:hover{
    color: #671B61;
    background: none;
}


/*Service Section*/

/* Example CSS for index-card */
.services, .teams {
    color: #FFF;
    background: #111;
}
.services .title::before,
.teams .title::before{
    background: #FFF;
}
.services .title::after,
.teams .title::after{
    background: #111;
    

}
.services .serv-content .index-card{
    width: calc(33% - 20px);
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;

}
.services .serv-content .index-card:hover{
    background: #671B61;
}
.services .serv-content .index-card .box{
    transition: all 0.3s ease;
}
.services .serv-content .index-card:hover .box{
    transform: scale(1.05);

}
.services .serv-content .index-card i{
    font-size: 50px;
    color: #671B61;
    transition: color 0.3s ease;
}
.services .serv-content .index-card:hover i{
    color: #fff;
}
.services .serv-content .index-card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.services .serv-content .index-card {
    min-height: 300px; /* Adjust as needed */
}
/* Service Section */
.serv-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Adds space between cards */
}

.card {
    flex: 1 1 calc(50% - 20px); /* Responsive cards for two in a row */
    margin: 30px 0; /* Vertical spacing */
    padding: 20px;
    border: 1px solid #671B61; /* Optional border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
    height: 420px;
}

.card:hover {
    transform: translateY(-10px); /* Hover effect */
    border: 1px solid #fff;
}

.services, .teams {
    color: #FFF;
    background: #111;
}
.services .title::before,
.teams .title::before{
    background: #FFF;
}
.services .title::after,
.teams .title::after{
    background: #111;
    

}
.services .serv-content .card{
    width: calc(33% - 20px);
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;

}
.services .serv-content .card:hover{
    background: #671B61;
}
.services .serv-content .card .box{
    transition: all 0.3s ease;
}
.services .serv-content .card:hover .box{
    transform: scale(1.05);

}
.services .serv-content .card i{
    font-size: 50px;
    color: #671B61;
    transition: color 0.3s ease;
}
.services .serv-content .card:hover i{
    color: #fff;
}
.services .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.services .serv-content .card {
    min-height: 300px; /* Adjust as needed */
}

/*Team Section*/
/* Team Section */
.teams .title::after {
    content: "Works With US";
}

.teams .carousel .card {
    background: #222;
    border-radius: 6px;
    padding: 25px 35px; /* Decrease padding */
    text-align: center;
    transition: all 0.3s ease;
    height: 270px; /* Adjust height as needed */

}

.teams .carousel .card:hover {
    background: #671B61;
}

.teams .carousel .card .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.teams .carousel .card:hover .box {
    transform: scale(1.05);
}

.teams .carousel .card .text {
    font-size: 25px; /* Adjust font size if needed */
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.teams .carousel img {
    height: 150px !important; /* Decrease image size */
    width: 150px !important; /* Decrease image size */
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #671B61;
    transition: all 0.3s ease;
}

.teams .carousel .card:hover img {
    border-color: #FFF;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #671B61!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: #671B61!important;
}

/*Contact Section*/
.contact .title::after{
    content: "Get In Touch";
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact .contact-content .left p{
    text-align: justify;
     
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .info i{
    font-size: 25px;
    color: #671B61;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

h1, h3 {
    text-align: center;
    color: #fff; /* White headings */
}

h5 {
    margin: 0;
    color: #ddd; /* Light gray for subheadings */
}

p {
    margin: 5px 0;
    color: #ccc; /* Slightly lighter gray for paragraphs */
}

/* Navbar Styles */
.navbar {
    background: #111; /* Darker background for navbar */
    color: #fff;
    padding: 10px 0;
}

.navbar .max-width {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    margin-right: 10px;
}

.navbar .menu {
    list-style: none;
    display: flex;
}

.navbar .menu li {
    margin: 0 15px;
}

.navbar .menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar .menu a:hover {
    color: #f4f4f4; /* Slightly lighter on hover */
}

.menu-btn {
    display: none; /* Hide the menu button by default */
}

/* Contact Section Styles */
.location {
    margin: 20px 0;
    text-align: center;
}

.contact-us {
    background: #222; /* Dark gray background for contact section */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-column {
    flex: 1;
    margin: 10px;
    min-width: 300px; /* Ensures columns stack on smaller screens */
}

.contact-column div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-column i {
    font-size: 24px;
    margin-right: 10px;
    color: #fff; /* White icons */
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #444; /* Dark border */
    border-radius: 4px;
    background: #333; /* Dark background for inputs */
    color: #fff; /* White text for inputs */
}

input::placeholder,
textarea::placeholder {
    color: #aaa; /* Light gray placeholder text */
}

button {
    background: #444; /* Dark button background */
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #555; /* Slightly lighter on hover */
}

/* Footer Styles */
.footer {
    background: #111; /* Darker background for footer */
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer .icons {
    margin-top: 10px;
}

.footer .icons i {
    font-size: 24px;
    margin: 0 10px;
    color: #fff;
    transition: color 0.3s;
}

.footer .icons i:hover {
    color: #f4f4f4; /* Slightly lighter on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar .menu {
        display: none; /* Hide menu on small screens */
    }

    .menu-btn {
        display: block; /* Show menu button on small screens */
        cursor: pointer;
    }

    .row {
        flex-direction: column; /* Stack columns on small screens */
    }
}
@media(max-width: 991px){
    max-width {
        padding: 0 50px;
    };
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        background: #111;
        left: 0;
        top: 0;
        text-align: center;
        padding: 80px;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;

    }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    line-height: 1.6;
}

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

/* Navbar Styles */
.navbar {
    background: #111; /* Darker background for navbar */
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.navbar .max-width {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo a {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.navbar .menu {
    list-style: none;
    display: flex;
}

.navbar .menu li {
    margin: 0 15px;
}

.navbar .menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar .menu a:hover {
    color: #f4f4f4; /* Slightly lighter on hover */
}

/* Contact Section Styles */
.contact {
    padding: 100px 0;
}

.contact .title {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
}

.contact .title::after {
    content: "Get In Touch";
    display: block;
    font-size: 20px;
    color: #986195; /* Light color for emphasis */
    margin-top: 10px;
}

.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact .contact-content .column {
    width: calc(50% - 30px);
    margin: 15px 0;
}

.contact .contact-content .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p {
    text-align: justify;
}

.contact .contact-content .left .icons {
    margin: 10px 0;
}

.contact .contact-content .row {
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .info {
    margin-left: 30px;
}

.contact .contact-content .info i {
    font-size: 25px;
    color: #671B61; /* Accent color for icons */
}

/* Input Styles */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #444; /* Dark border */
    border-radius: 4px;
    background: #333; /* Dark background for inputs */
    color: #fff; /* White text for inputs */
}

input::placeholder,
textarea::placeholder {
    color: #aaa; /* Light gray placeholder text */
}

/* Button Styles */
button {
    background: #671B61; /* Primary button background */
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #986195; /* Lighter on hover */
}

/* Footer Styles */
.footer {
    background: #111; /* Darker background for footer */
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer .icons {
    margin-top: 10px;
}

.footer .icons i {
    font-size: 24px;
    margin: 0 10px;
    color: #fff;
    transition: color 0.3s;
}

.footer .icons i:hover {
    color: #f4f4f4; /* Slightly lighter on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact .contact-content .column {
        width: 100%; /* Stack columns on small screens */
    }
}

/* Menu Button Styles */
.menu-btn {
    display: none; /* Hide the menu button by default */
    color: #fff;
    font-size: 23px;
    cursor: pointer;
}

/* Navbar Styles */
.navbar .menu {
    display: flex; /* Show menu items in a row */
}

/* Responsive Styles */
@media (max-width:768px) {
    .navbar .menu {
        display: none; /* Hide menu on small screens */
        flex-direction: column; /* Stack menu items vertically */
        position: absolute; /* Position the menu */
        top: 60px; /* Adjust based on navbar height */
        left: 0;
        right: 0;
        background: #111; /* Background color for the menu */
        padding: 10px 0; /* Padding for the menu */
        z-index: 999; /* Ensure it appears above other content */
    }

    .navbar .menu li {
        margin: 10px 0; /* Space between menu items */
        text-align: center; /* Center align text */
    }

    .menu-btn {
        display: block; /* Show menu button on small screens */
    }
}
.contact {
    padding: 100px 0;
}

.contact .title {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
}

.contact-content {
    display: flex;
    justify-content: space-between; /* Space between left, center, and right columns */
    align-items: flex-start; /* Align items to the top */
}

.column {
    flex: 1; /* Allow columns to grow equally */
    margin: 0 20px; /* Space between columns */
}

.left {
    flex: 1; /* Left column takes up 1 part */
}

.center {
    flex: 1; /* Center column takes up 1 part */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
}

.right {
    flex: 1; /* Right column takes up 1 part */
}

.map-container {
    margin-bottom: 20px; /* Space below the map */
    text-align: center; /* Center the map title */
}

.map-container h3 {
    font-size: 24px; /* Title size */
    margin-bottom: 10px; /* Space below the title */
}

.map-container iframe {
    width: 1150%; /* Full width */
    max-width: 1150px; /* Max width for larger screens */
    height: 450px; /* Height of the map */
    border: 0; /* No border */
}

form {
    display: flex;
    flex-direction: column; /* Stack form elements vertically */
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #444; /* Dark border */
    border-radius: 4px;
    background: #333; /* Dark background for inputs */
    color: #fff; /* White text for inputs */
}

button {
    background: #671B61; /* Primary button background */
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #986195; /* Lighter on hover */
}

.map-container {
    margin-bottom: 20px; /* Space below the map */
    text-align: center; /* Center the map title */
}

.map-container h3 {
    font-size: 24px; /* Title size */
    margin-bottom: 10px; /* Space below the title */
}

.map-container iframe {
    width: 100%; /* Full width */
    max-width: 800px; /* Set a maximum width for larger screens */
    height: 450px; /* Height of the map */
    border: 0; /* No border */
}
.contact .title {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
}

.contact .title::after {
    content: "Get In Touch";
    display: block;
    font-size: 20px;
    color: #986195; /* Change text color to white for contrast */
    background: #000; /* Set background to black */
    padding: 5px; /* Add some padding for better appearance */
    margin-top: 10px;
}

.about .about-content p {
    color: black; /* Change paragraph text color to black only in the About section */
}

/* Mobile Styles for 600px Orientation */

@media (max-width: 600px) {
    
    /* General Styles */
    body {
        font-size: 14px; /* Adjust base font size for mobile */
        margin: 0;
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    img {
        max-width: 100%; /* Ensure images scale within containers */
        height: auto;
        display: block; /* Avoid inline spacing issues */
    }

    .max-width {
        padding: 0 20px; /* Reduce padding for smaller screens */
        width: 100%;
        box-sizing: border-box;
    }

    /* Navbar Styles */
    .navbar {
        padding: 15px 0; /* Adjust navbar padding */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar .logo a {
        font-size: 25px; /* Smaller logo font size */
        text-decoration: none;
        color: #000;
    }

    .navbar .menu {
        display: none; /* Hide menu by default */
        flex-direction: column; /* Stack menu items vertically */
        background-color: #fff; /* Optional: Background color for menu */
        padding: 10px;
        position: absolute; /* Position it for dropdown effect */
        top: 60px; /* Adjust based on navbar height */
        right: 20px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for visibility */
        border-radius: 8px;
    }

    .menu-btn {
        display: block; /* Show menu button */
        font-size: 24px;
        cursor: pointer;
    }

    /* Home Section */
    .home {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        height: auto; /* Allow height to adjust */
        padding: 20px;
        text-align: center;
    }


    .home .home-content .text-2 {
        font-size: 20px; /* Smaller font size for main text */
    }

    .home .home-content a {
        font-size: 20px; /* Adjust button font size */
        padding: 10px 20px; /* Adjust button padding */
    }

    /* Card Styles */
    .card1 {
        width: 100%; /* Full width for cards */
        margin: 10px 0; /* Adjust margin */
    }

    .card1-content h3 {
        font-size: 24px; /* Smaller heading size */
    }

    .card1-content p {
        font-size: 14px; /* Smaller paragraph size */
    }

    /* Contact Section */
    .contact .contact-content {
        flex-direction: column; /* Stack columns */
    }

    .contact .contact-content .column {
        width: 100%; /* Full width for columns */
        margin: 10px 0; /* Adjust margin */
    }

    /* Footer Styles */
    .footer {
        padding: 15px; /* Adjust footer padding */
    }

    .footer .icons i {
        font-size: 20px; /* Smaller icon size */
    }
}

@media (max-width: 800px) {
    /* General section adjustments */
    section {
        padding: 50px 20px; /* Reduce padding for smaller screens */
    }

    .home {
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
        justify-content: center;
        background-size: cover; /* Ensure background scales properly */
        text-align: left; /* Center-align text for mobile view */
        padding: 85px;
    }

    .home .max-width {
        margin: 0 auto; /* Center content */
    }

    .home .home-content .text-1 {
        font-size: 13px; /* Reduce font size */
    }

    .home .home-content .text-2 {
        padding-top: 50px;
        font-size: 40px; /* Adjust heading size */
        margin-left: 0; /* Remove margin for better centering */
    }

    .home .home-content .text-3 {
        font-size: 25px; /* Adjust subheading size */
    }

    .home .home-content a {
        font-size: 20px; /* Adjust button text size */
        padding: 10px 30px; /* Adjust padding */
    }

    /* About Section Adjustments */
    .about .about-content {
        flex-direction: column; /* Stack content vertically */
        text-align: left; /* Center-align text */
    }

    .about .about-content .left,
    .about .about-content .right {
        width: 100%; /* Full width for both sides */
    }

    .about .about-content .left img {
        width: 300px; /* Scale down the image */
        height: auto; /* Maintain aspect ratio */
        margin: 0 auto 20px; /* Center image with spacing */
    }

    .about .about-content .right .text {
        font-size: 22px; /* Adjust text size */
    }

    .about .about-content .right p {
        font-size: 16px; /* Adjust paragraph size */
    }

    .about .about-content .right a {
        font-size: 18px; /* Adjust button size */
        padding: 8px 25px; /* Adjust padding */
    }

    /* Section Title Adjustments */
    section .title {
        font-size: 30px; /* Reduce title size */
        padding-bottom: 10px; /* Reduce bottom padding */
    }

    section .title::before {
        width: 100px; /* Adjust line width */
    }

    /* Services Section Adjustments */
    .services .serv-content {
        flex-direction: column; /* Stack cards vertically */
        gap: 20px; /* Add spacing between cards */
    }

    .services .serv-content .card,
    .services .serv-content .index-card {
        width: 100%; /* Full-width cards */
        margin: 0 auto; /* Center the cards */
        padding: 20px; /* Maintain padding */
        min-height: auto; /* Adjust minimum height */
        font-size: 18px; /* Adjust text size */
    }

    /* Teams Section Adjustments */
    .teams .title,
    .services .title {
        text-align: center; /* Center-align title */
    }

    .teams .serv-content .card,
    .services .serv-content .index-card {
        margin-bottom: 20px; /* Add spacing between stacked items */
    }
}

@media (max-width: 800px) {
    /* Hide the logo text for smaller screens */
    .navbar .logo a {
        display: none;
    }

    /* Optionally adjust the logo image size */
    .navbar .logo-img {
        width: 40px; /* Adjust as necessary */
        height: auto;
    }
}
@media (max-width: 800px) {
    /* Hide the logo text for smaller screens */
    .navbar .logo a {
        display: none;
    }

    /* Optionally adjust the logo image size */
    .navbar .logo-img {
        width: 40px; /* Adjust as necessary */
        height: auto;
    }

    /* Make the navbar transparent */

    /* Shift the logo to the right */
    .navbar .logo {
        margin-left: 25px; /* Align logo to the right */
    }
}

@media (max-width: 800px) {
    /* Center the image inside the card */
    .services .serv-content .card img {
        display: block;
        margin: 0 auto; /* Centers the image horizontally */
        max-width: 100%; /* Ensures the image is responsive */
        height: auto; /* Maintain aspect ratio */
    }
}
@media (max-width: 800px) {
    /* Center the image inside the card */
    .services .serv-content .card img {
        display: block;
        margin: 0 auto; /* Centers the image horizontally */
        max-width: 100%; /* Ensures the image is responsive */
        height: auto; /* Maintain aspect ratio */
    }

    /* Add padding to the top of the title */
    .services .title {
        padding-top: 50px; /* Adjust this value as needed */
        padding-bottom: 25px;
    }
    .about .title{
        padding-bottom: 25px;
    }
    .teams .title{
        padding-bottom: 25px;
    }
    .contact .title{
        padding-bottom: 40px;
    }
}









































@media (max-width: 800px) {
    /* Show the logo text for smaller screens */
    .navbar .logo a {
        display: inline; /* Ensure the text logo is displayed */
        color: #fff; /* Set text color */
        font-size: 25px; /* Adjust font size as necessary */
    }

    /* Adjust the logo image size */
    .navbar .logo-img {
        width: 40px; /* Adjust as necessary */
        height: auto; /* Maintain aspect ratio */
    }

    /* Align logo and text */
    .navbar .logo {
        display: flex; /* Use flexbox to align items */
        align-items: center; /* Center items vertically */
        gap: 10px; /* Space between image and text */
    }
}





























@media (max-width: 800px) {
    .navbar .menu {
        display: none; /* Hide menu by default */
        flex-direction: column; /* Stack menu items vertically */
        position: absolute; /* Position the menu */
        top: 60px; /* Adjust based on navbar height */
        left: 0;
        right: 0;
        background: #111; /* Background color for the menu */
        padding: 10px 0; /* Padding for the menu */
        z-index: 999; /* Ensure it appears above other content */
    }

    .navbar .menu.active {
        display: flex; /* Show menu when active */
    }

    .menu-btn {
        display: block; /* Show menu button on small screens */
        cursor: pointer;
    }
}