html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding:0;
    box-sizing: border-box;
}
/* Apply Montserrat as the primary font and Poppins as secondary */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Specific usage of Poppins font for some elements */
h1, h2, h3, p, .view-more {
    font-family: 'Poppins', sans-serif;
}

/* Ensuring that headers and other elements use the correct weights */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600; /* Adjust the weight as needed */
}

p, a, span {
    font-weight: 400; /* Normal text weight */
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.logo-img {
    height: 100px;
}

.contact-btn {
    background-color: #0056b3;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #0066b2;
}

main {
    padding: 50px 20px;
}

.services-heading {
    overflow: hidden;
}

.services-heading h2 {
    font-size: 2.5em;
    margin: 30px;
    color: #4a60db;
    text-align: center;
}

.our-vision h2 {
    font-size: 2em;
    margin: 30px;
    color: #4a60db;
    text-align: center;
}

.services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 10px;
}

.service {
    background-color: #F0F4FF;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    width: 300px;
    color: #002f6c;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px;
}

.service img {
    width: 100%;
    height: 50%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service h2 {
    margin-top: 0;
}

.past-work {
    padding: 50px 20px;
    background-color: #fff;
    overflow: hidden;
}

.past-work h2 {
    font-size: 2.5em;
    margin: 30px;
    color: #4a60db;
    text-align: center;
}

.past-work .row .link {
    background: transparent;
    border: none;
    color: #4a60db;
    font-size: 1rem;
    cursor: pointer;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    flex: 0 0 auto;
    cursor: pointer;
    text-align: center;
    padding: 10px;
}

.project-card:hover {
    background-color:  #F0F4FF;
}

.project-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.project-card .row img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.project-card h3 {
    font-size: 1.5em;
    color: #03346e;
    margin: 15px;
}

.project-card p {
    font-size: 1em;
    color: #333333;
    margin: 0 15px 15px;
    opacity:1;
}

.lets-connect {
    display: inline-block;
    padding: 10px 20px;
    margin: 15px;
    background-color: #03346e;
    color: #fff;
    border-radius: 35px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lets-connect:hover {
    background-color: #03346e;
    transform: scale(1.05);
    color: #ffffff
}

.project-card .view-more {
    display: inline-block;
    padding: 10px 20px;
    margin: 15px;
    background-color: #03346e;
    color: #ffffff;
    border-radius: 35px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-card .view-more:hover {
    background-color: #002d5b;
    transform: scale(1.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


@media screen and (max-width: 768px) {
    .projects {
        justify-content: center;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #720e9e;
    color: #ffffff;
    box-shadow: -3px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: right 0.4s ease;
    z-index: 10000;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-content p {
    margin: 20px 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    float: right;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 500;
}

.overlay.visible {
    opacity: 1;
    visibility: visible;
    z-index: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}


.project-details {
    padding: 50px 20px;
    text-align: center;
}

.project-details h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #03346e;
}

.project-details p {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 30px;
}

.project-details h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #03346e;
}

.project-details ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.project-details ul li {
    font-size: 1.1em;
    color: #333333;
    margin-bottom: 10px;
}

.project-details .view-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #03346e;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-details .view-more:hover {
    background-color: #002d5b;
    transform: scale(1.05);
}
  
  