:root {
    --primary-color: #000000;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.heading-font {
    font-family: 'Roboto Slab', serif;
}




.navbar {
    transition: all 0.3s ease;
    padding: 10px 0;
    border-bottom: 5px solid #FEBA17;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-name {
    font-size: 35px;
    font-family: Optima, sans-serif;
    font-weight: 600;
}

.line {
    width: 50px;
    background-color: white;
    height: 2px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 30px;
    color: var(--primary-color);
    font-family: Optima, sans-serif;
}

.btn-yellow {
    background-color: #FEBA17;
    color: white;
    font-weight: 600;
    padding: 5px 30px;
    border-radius: 5px;

}

a{
    text-decoration: none;
}

.nav-item {
    padding: 0px 10px;
}

.nav-link {
    font-weight: 700;
    margin: 0 8px;
    position: relative;
    font-family: Optima, sans-serif;
    color: #000000;
    font-size: 17px;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover:after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="30" cy="30" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    transform: rotate(30deg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #3aa8d8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 30px;
    background: white;
    padding: 15px 15px 35px 15px;
    border-radius: 20px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 20px;
    padding-top: 20px;
    font-family: Optima, sans-serif;
    font-weight: 600;
}

.twobutton a {
    text-decoration: none;
    width: 47%;
}

.twobutton {
    display: flex;
    justify-content: space-between;
}

.whatsapp-button {
    background-color: #107033;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    width: 100%;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.white-box{
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 30px;
}

.call-button {
    background-color: #FEBA17;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    width: 100%;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.service-card p {
    font-size: 14px;
}

.service-icon img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.section-title span {
    font-size: 16px;
    border-radius: 20px;
    border: 1px solid black;
    padding: 2px 8px;
    font-weight: 600;
}

.leader {
    font-size: 35px;
    font-weight: 600;
    font-family: Optima, sans-serif;
}

.about-section {
    background-color: #f9f9f9;
    position: relative;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(76, 201, 240, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 20px 0;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: rgba(76, 201, 240, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
    border-top: 5px solid #FEBA17;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.floating-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(76, 201, 240, 0.1);
    z-index: 0;
}

.shape-1 {
    top: -100px;
    left: -100px;
}

.shape-2 {
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
}

.btn-primary{
    background-color: #FEBA17 !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .leader{
        font-size:28px;
    }

.shape-2{
    right: 0;
}
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav{
        margin-bottom: 20px;
    }
    
    .nav-item{
        padding: 7px 10px;
    }
    
     /* Navbar Panel Styles */
    .navbar-collapse {
        position: fixed;
        left: -100%;
        /* Hidden by default */
         background-color: white; 
        
        background-size: cover;
        width: 70%;
        height: 100%;
        top: 0;
        transition: left 0.3s ease;
        /* Smooth transition */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        z-index: 1050;
        /* Ensures it appears above other content */
        padding-top: 1.5rem;
        /* Space for content */
    }

    /* Show the sidebar when the navbar is expanded */
    .navbar-collapse.show {
        left: 0;
    }

.btn-yellow {
    margin-left:20px;
    margin-top: 10px;
}

    .navbar-collapse .navbar-nav {
        margin-top: 30px;
    }

    /* Close button styles for improved accessibility */
    .navbar-collapse .close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
    }
}











