@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    font-family:  "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.navbar{
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #1A202C;
    height: 75px;
    color: white;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav{
    display:flex;
    background-color: #1A202C;
    gap: 20px;
    font-size: 14px;
}

.appointment{
    display: none;
}

.nav a{
    text-decoration: none;
    color: white;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #63B3ED;
}

/* Underline animation */
.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #63B3ED;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav-button {
    text-decoration: none;
    padding: 8px 15px;
    color: #F7FAFC; /* Light Gray */
    background-color: #1A202C; /* Same as Navbar */
    border: 2px solid #63B3ED; /* Light Blue Border */
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-button:hover {
    background-color: #63B3ED; /* Light Blue */
    color: #1A202C; /* Dark Text for contrast */
    border-color: #63B3ED; /* Keeps border consistent */
}


.celebrate{
    display: none;
    text-align: center;
    padding: 10px;
}

.emoji{
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero{
    display: grid;
    align-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/cover7.jpeg');
  background-size: cover;
  background-position: center;
  height: 100vh;
    text-align: center;
    color: white;
    min-height: 60vh;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 200px;
    padding-right: 200px;
}

.hero-d{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/cover7.jpeg');
  background-size: cover;
  background-position: center;
  height: 50vh;
    text-align: center;
    color: white;
    min-height: 50vh;
    padding-top: 120px;
    padding-bottom: 50px;
}

.hgitbutton{
    display: none;
}

.hero div{
    font-size: 55px;
    font-weight: 600;
    line-height: 60px;
    padding: 20px;
}

.hero p{
    padding: 10px 0;
}

.hero .gitbutton{
    display: none;
}

.mp{
    display: none;
}

.serviceSection h1{
    text-align: center;
    font-size: 48px;
    padding-top: 60px;
}


.serviceContainer{
    display: flex;
    justify-content: center;
    align-items:center;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.simgm{
    display: none;
}

.left{
    width: 40vw;
}

.left h1{
    text-align: left;
    font-size: 40px;
}

.left p{
    font-size: 14px;
    color: #2d3748;
    margin: 14px 0;
}

.gitbutton{
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    background-color: #2a665b;
    color:white;
    padding: 17px 25px 15px 25px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 20px;
}

.gitbutton:hover{
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    background-color: #24584e;
}

.team{
    background-color: #142b54;
    text-align: center;
    color: white;
    padding: 70px 150px;
}

.team div {
    font-size: 48px;
}

.cardContainer{
    display: flex;
    justify-content: center;
    padding: 50px;
    gap: 10px;
}

.card{
    width: 250px;
    padding: 10px;
    background-color: #06345d;
    border-radius: 10px;
}

.card img{
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
    display: none;
}

.card .name{
    font-weight: bold;
    font-size: 20px;
    margin: 0;
    padding: 5px;
}

.card .designation{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1em;
}

footer {
    background-color: #1A202C; /* Dark Green */
    padding: 20px 40px;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: start;
    margin-bottom: 20px;
    padding: 30px 0;
}

.footer-left {
    text-align: left;
}

.footer-logo {
    width: 80px;
    margin-bottom: 10px;
}

.footer-left h3 {
    font-size: 1.5rem;
    color: #F2C94C; /* Gold */
    margin: 0;
}

.footer-links h4,
.footer-support h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links ul li a:hover {
    color: #F2C94C; /* Gold on Hover */
    text-decoration: underline;
}

.footer-support a {
    color: #F2C94C;
    text-decoration: none;
    font-weight: bold;
}

.footer-support a:hover {
    text-decoration: underline;
}

.footer-support p,
.footer-support a {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-support .meeting-link {
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #2F6356; /* Slightly lighter green */
    padding-top: 10px;
    text-align: center;
}

.social-icons a {
    color: #fff;
    margin: 0 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #F2C94C; /* Gold on hover */
}

.footer-bottom p {
    font-size: 0.8rem;
    margin-top: 10px;
}

table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin-bottom: 40px;
    table-layout: fixed;
}

caption {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
    padding-top: 40px;
}

td {
    border: 1px solid #e0e0e0;
    padding: 15px;
    text-align: center;
    font-size: 22px;
    color: #A6A6A6;
}


strong {
    font-weight: 700;
    color: #000;
    text-align: left;
}

/* Download button styling */
.download-btn {
    background-color: #2a6c64;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.download-btn:hover {
    background-color: #1d4f4a;
    transition: 0.3s ease;
}

.close{
    display: none;
    filter: invert(1);
}

.hamburger{
    display: none;
    filter: invert(1);}

 /* Offset for Sticky Navbar */
section{
    scroll-margin-top: 60px; /* Adjust to match navbar height */
}

  /* Smooth Scrolling */
html{
    scroll-behavior: smooth;
}


/* Mobile Responsive Styles */
@media (max-width: 960px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 0 10px;
    }

    .nav {
        display: none; /* Initially hide navigation links */
        flex-direction: column;
        text-align: center;
        width: 100%;
        background-color: #1A202C;
        position: absolute;
        top: 75px;
        left: 0;
        z-index: 1;
    }
    
    .appointment{
        display: block;
    }

    
    

    .nav a {
        padding: 10px 0;
    }

    .nav-button{
        display: none;
    }

    .hamburger {
        display: block;
        width: 30px;
        cursor: pointer;
    }

    .close {
        display: none;
        width: 30px;
        cursor: pointer;
    }

    /* Show Navigation Links */
    .nav.active {
        display: flex;
    }

    .hero {
        padding: 20px;
    }

    .serviceContainer {
        flex-direction: column;
        text-align: center;
    }

    .serviceContainer img {
        width: 100%;
        height: auto;
    }

    .left {
        width: 90vw;
    }

    .team {
        padding: 20px;
    }

    .cardContainer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 90%;
        margin-bottom: 20px;
    }

    footer {
        padding: 20px;
        text-align: left;
    }

    .footer-container {
        flex-direction: column;
        text-align: left;
    }
/*
    table {
        display: block; /* Converts the table into a block element 
        border: 0; /* Removes table border 
}

/*
tbody tr {
    display: block; /* Makes each row a block element 
    margin-bottom: 15px; /* Adds space between rows 
    border: 1px solid #ddd; /* Optional: Add a border to individual rows 
}

tbody tr td {
    display: flex;
    justify-content: space-between; /* Aligns label and content *
    padding: 10px;
    font-size: 14px;
}
*/

/*
table tr {
    display: table-row;
    border: none;
  }

  .responsive-table td {
    display: table-cell;
    padding: 1rem;
    text-align: center;
  }
*/
}

/* For very small screens */
@media (max-width: 650px) {
    .hero {
        font-size: 14px;
        padding: 10px;
        display: grid;
        align-content: center;
    }

    .hero-d {
        font-size: 14px;
        padding: 10px;
        display: grid;
        align-content: center;
    }

    .hero div{
        font-size: 27px;
        line-height: 36px;
    }

    .hero-d div{
        font-size: 27px;
        line-height: 36px;
    }
    .hgitbutton{
        display: block;
        font-size: 14px;
        font-weight: 500;
        border-radius: 5px;
        background-color: #dfc079;
        color:white;
        padding: 17px 25px 15px 25px;
        border: none;
        outline: none;
        cursor: pointer;
        margin-top: 20px;
        text-align: center;
        margin: 20px auto;
    }

    .gitbutton:hover{
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    }

    .hero p{
        display:none;
    }

    .mp{
        display: block;
        text-align: center;
        font-weight: 600;
        color: #000;
        padding: 10px;
    }

    .serviceSection h1 {
        font-size: 32px;
    }

    .simgd{
        display: none;
    }

    .simgm{
        display: block;
    }

    .left h1 {
        font-size: 24px;
        text-align: center;
    }

    .card .name {
        font-size: 18px;
    }

    .team div {
        font-size: 32px;
    }
    table {
        display: block; /* Converts the table into a block element */
        border: 0; /* Removes table border */
        width: 56%;
}
tbody tr {
    display: block; /* Makes each row a block element */
    margin-bottom: 15px; /* Adds space between rows */
    border: 1px solid #ddd; /* Optional: Add a border to individual rows */
}

tbody tr td {
    display: flex;
    justify-content: space-between; /* Aligns label and content */
    padding: 10px;
    font-size: 14px;
}

}