* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --gray-light: #999999;
    --dark-gray: #111827;
    --beige-dark: #b49164;
    --beige-light: #c7ad8b;
    --gray-border: #e0e0e0;
    --gray-background: #e6e6e6;
    --gray-mid: #373737;
    --gray-dark-mid: #414141;
    --dark: #333333;
    --darker: #23282d;
    --darkest: #23282c;
    --off-white: #fafafa;
    --light-gray-background: #f5f5f5;
}

body {
    font-family: 'Gotham', 'ZaridSans-Regular', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: var(--dark);
    /* background-color: var(--off-white); */
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 5rem;
}

/************************ Navbar Section *************************************/
/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    padding-top: 7px;
    padding-bottom: 7px;
}

.navbar.sticky {
    background-color: var(--darkest);
}

.contact-info {
    font-size: 10px;
    color: var(--off-white);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5px;
    padding-right: 38px;
}

.contact-info p {
    padding: 0 !important;
    margin: 0 !important;
}

.separator {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    width: 100vw;
    position: absolute;
    left: 0;
    margin-top: 5px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 5px;
}

.navbar .logo img {
    height: 50px;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
}

.nav-links li a {
    font-size: 12px;
    color: var(--off-white);
    font-weight: 500;
    padding: 8px 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-links li a:hover {
    color: var(--beige-light);
}

.nav-links .login-button {
    font-size: 12px;
    font-weight: 600;
    color: rgb(35, 40, 44) !important;
    background-color: rgb(180, 145, 100);
    box-shadow: rgba(199, 173, 139, 0.5) 0px 5px 15px;
    padding: 5px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: rgb(185, 146, 94);
    color: #111 !important;
}

/* Dropdown Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--darkest);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    list-style-type: none;
    padding: 10px 0;
    margin-top: 8px;
    z-index: 1000;
}

.dropdown-menu li a {
    color: var(--off-white);
    padding: 8px 20px;
    display: block;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu.active {
    display: block;
    /* Show the dropdown when active */
}

.dropdown-icon {
    margin-left: 5px;
    /* Add some space between text and icon */
    font-size: 10px;
    /* Adjust size as needed */
    color: var(--off-white);
    /* Ensure the icon is visible */
    vertical-align: middle;
    /* Center vertically with text */
}

.dropdown-toggle:hover .dropdown-icon {
    color: var(--beige-light);
    /* Change color on hover */
}

.nav-links li:hover .dropdown-menu {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: var(--off-white);
    margin: 4px 0;
}

.close-icon {
    display: none;
    color: var(--off-white);
    font-size: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1002;
}
.service-grid-section{
    max-width: 1360px;
    margin: 0 auto;
   padding-top: 8rem;
   padding-left: 3rem;
   padding-right: 6rem;
}
.service-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem;
}
.service-section {
    max-width: 1360px;
    margin: 0 auto;
    padding-top: 2.5rem;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;

}

.service-title-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 1rem;
    padding-left: 3.8vw;
    padding-right: 3vw;
}

.service-title-section h3 {
    color: rgb(35, 40, 45);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    font-family: Gotham-Regular, ZaridSans-Regular, sans-serif;
}

.service-button {
    border: 1px solid #b49164;
    background-color: transparent;
    color: #b49164;
    padding: 10px 7px;
    font-weight: 600;
    border-radius: 2px;
}

.slider-container {
    overflow: hidden;
    position: relative;
    padding-left: 3.2vw;
}

.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.card {
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 3px;
    text-align: left;
    flex: 0 0 auto;

}
.card h3 {
    color: rgb(51, 51, 51) !important;
    font-size: 20px !important;
    font-weight: 600;
}

.card p {
    font-size: 16px;
}
.card:hover {
    transform: translateY(-5px);
}

.icon-container {
    display: flex;
    align-items: center;
}

.icon-bg {
    background-color: #e0d2b250;
    border-radius: 50%;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.service-icon {
    width: 20px;
}

.service-logo {
    width: 40px;
    margin: 0;
    padding: 0;
}

.title {
    font-size: 16px;
    color: #111;
    font-weight: 500;
    margin: 10px 0 20px;
}

.description {
    font-size: 10px;
    margin-bottom: 25px;
    color: #666;
}

.features {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    font-size: 9px;
}

.features {
    color: #ccc !important;
}

.feature-icon {
    margin-right: 5px;
    filter: grayscale();
}

.divider {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 15px 0;
}

.service-section-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}

.service-section-footer .logo {
    width: 100px;
    height: auto;
    padding: 0;
    margin: 0;
}

.card-btn {
    background-color: transparent;
    color: var(--beige-dark);
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    cursor: pointer;
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.arrow {
    cursor: pointer;
    font-size: 1.5rem;
    color: #b49164;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow i {
    display: inline-block;
}

.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 50%;
    margin: 2px;
}

.dot.active {
    background-color: #b49164;
}

.arrow {
    padding: 5px;
}

.navigation .arrow+.dots {
    margin-left: 5px;
}

.navigation .dots+.arrow {
    margin-right: 5px;
}

/************************************** Footer *****************************************************************/

.footer {
    background-color: #333333;
    /* Dark background */
    color: #e6e6e6;
    /* Light text color */
    font-size: 14px;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 6vw;
    padding-right: 4vw;
}

.footer .description {
    font-size: 9px !important;
}

.footer-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 35px;
}

.footer-col {
    flex: 1;
    padding: 0 10px;
    position: relative;
}

.footer-left {
    flex: 1.5;
}

.footer-col i {
    margin-right: 10px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;

}

.footer-col ul li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

/* Link styles */
.footer-col ul li a {
    color: #c7ad8b;
    /* Light brown color for links */
    text-decoration: none;
    /* Remove underline */
    transition: color 0.3s;
    /* Smooth color transition */
    font-size: 11px;
}

.footer-col ul li a:hover {
    color: #b49164;
    /* Highlight color on hover */
}

.footer-left .logo-section {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-left .logo {
    width: 40px;
    height: auto;
}

.footer-left .logo-2 {
    width: 160px;
    height: auto;
}

.footer-left .logo-3 {
    width: 60px;
    height: auto;
}

.footer-left .description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #999999;
    /* Light grey for description */
}

/* Link styles for footer links */
.footer-links {
    text-align: left;
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 9px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #414141;
    /* Subtle top border */
    padding: 10px 45px 0px 45px;
}

.footer-bottom .footer-links a:hover {
    color: #b49164;
}

.footer-bottom p {
    margin: 0;
    font-size: 10px;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #b49164;
    /* Button color */
    color: #ffffff;
    /* Button text color */
    padding: 10px;
    border-radius: 50%;
    /* Round shape */
    text-align: center;
    display: none;
    /* Hidden by default */
}

/* Vertical lines between columns */
.footer-col::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #414141;
    /* Vertical line color */
}


.footer-col:last-child::after {
    display: none;
    /* No vertical line on the last column */
}


/* Social links */
.social-links {
    display: flex;
    gap: 15px;
    /* Spacing between icons */
    margin-top: 10px;
}

.social-links a {
    color: #b49164;
    /* Color for social icons */
    text-decoration: none;
    /* Remove underline */
}


/************************************** Footer *****************************************************************/

/************************************** Scroll on Top Button *****************************************************************/
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--beige-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: none;
    z-index: 2;
}

.back-to-top:hover {
    background-color: #f8f9fa;
}

.back-to-top i {
    font-size: 24px;
    color: var(--beige-dark);
}

/************************************** Scroll on Top Button ends *****************************************************************/

/************************************************* Responsive Layout *************************************************************/



@media (max-width: 768px) {
    .container{
        width: 100%;
        padding: 0 2rem;
    }
    .contact-info{
        padding: 0;
    }

     .navbar {
        background-color: var(--darkest);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--darkest);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
    }
    .nav-links li {
        margin-top: 70px;
    }

    .nav-links li a {
        padding: 5px 0;
        line-height: 1;
        font-size: 24px;
    }
    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }
    .dropdown-menu {
        width: 90%;
        left: 5%;
        align-items: center;
        padding: 20px;
    }

    .hamburger {
        display: flex;
    }

    .close-icon {
        display: block;
    }
    .service-grid-section{
        width: 100%;
        padding-top: 7rem;
        padding-bottom: 0;
        padding-right: 0;
        padding-left: 0;
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr); 
    }

    .service-section {
        padding-left: 0;
    }

    .service-title-section {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .service-title-section h3 {
        font-size: 16px;
    }

    .card {
        width: calc(100% / 2 - 20px);
    }

    .study-card {
        flex: 0 0 calc(100% / 2 - 20px);
    }
   
   
    .footer-top {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-col {
        width: 100%;
        padding: 15px 0;
        border-top: 1px solid #414141;
    }

    .footer-col::after {
        display: none;
    }

    .footer-col:not(:first-child) {
        border-top: 1px solid #414141;

    }

    .footer-left {
        text-align: center;
    }

    .footer-left .logo-section {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-links {
        text-align: center;
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .footer-bottom p {
        font-size: 9px;
        margin-top: 10px;
    }

    .social-links {
        justify-content: center;
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    .card {
        width: calc(100% - 20px);
    }

    
}



