:root {
    --primary: #e5e5e5;
    --secondary: #E08D0D;
    --highlights: #14213d;
    --headings: 'Poppins', sans-serif;
    --sub: 'Montserrat', sans-serif;
    --para: 'Inter', sans-serif;
}
body {
    background-color: var(--primary);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.nav-container {
    max-width: 1500px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}
.hi {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: var(--secondary);
    border-bottom: 3px solid var(--highlights);
    padding: 16px 32px;
}

.nav-image {
    margin-left: -130px;
    max-width:180%;
    height: auto;
}

.hamburger {
    z-index: 1;
    display: block;
    position: relative;
    border: none;
    user-select: none;
    background: none;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.hamburger span{
    display: block;
    width: 33px;
    height: 4px;
    margin-right: -50px;
    margin-bottom: 4px;
    position: relative;
    background-color: var(--highlights);
    border-radius: 6px;
    z-index: 2;
    transform-origin: 0 0;
    transition: 0.4s;
}

.hamburger:hover span:nth-child(2) {
    transform: translateX(10px);
    background-color: var(--primary);
}

.hamburger.is-active span:nth-child(1) {
    transform: translate(1px, -2px) rotate(45deg);
    background-color: #E08D0D;
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(15px);
}
.hamburger.is-active span:nth-child(3) {
    transform: translate(-1.5px, 2.5px) rotate(-45deg);
    background-color: #E08D0D;
}

.hamburger.is-active:hover span {
    background-color: #e6e6e6;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}
@media (min-width: 768px) {
    .nav-links {
        display: flex !important;
    }
    .mobile-menu {
        display: none !important;
        visibility: hidden;
        position: absolute;
    }
    .nav-image {
        margin-left: -130px;
        max-width:103%;
        height: auto;
    }
}
.nav-links {
    display: none;
    flex: 1 1 0;
    justify-content: flex-end;
    margin: 0 -16px;
    font-size: 130%;
}
.nav-links a{
    color: #000;
    margin: 0 16px;
    text-decoration: none;
    transition: 0.4s;
    padding: 8px 16px;
    border-radius: 99px;
    font-family: var(--sub);
}

.nav-links a.is-active {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 250px; 
    height: 50vh;
    margin-top: 3%;
    background: var(--highlights);
    box-shadow: -4px 0px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out;
    z-index: -1;
}

.mobile-menu a {
    padding: 15px;
    text-decoration: none;
    color: var(--secondary);
    font-size: 18px;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: orange;
}

.mobile-menu.open {
    right: 10%; 
}
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: #14213D;
    color: #fff;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: auto;
    width: 350px;
    margin-right: 10px;
}
.column {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}
.column h3 {
    color: #E08D0D;
    font-size: 22px;
}
.column p, .column a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.column a:hover {
    text-decoration: underline;
}
.social-icons {
    margin-top: 10px;
}
.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}
.increased-line-spacing {
    line-height: 1.8;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }
    .column {
        text-align: center;
        max-width: 90%;
    }
    .logo img {
        height: auto;
        width: 250px;
        margin-right: 10px;
    }
}
/* Base Styles */
.company-section {
    margin-top: 100px;
    padding: 60px 20px;
}

.company-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 1100px;
    margin: auto;
}

/* Left Image Section */
.company-image {
    flex: 1;
    min-width: 300px;
    height: 675px;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Content Section */
.company-content {
    flex: 1;
    padding: 40px;
    min-width: 300px;
    margin-left: 50px;
}

.company-content h2 {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--headings);
}
.company-content i{
    color: var(--secondary);
}
.company-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    font-family: var(--para);
}

.key-points {
    margin-top: 20px;
}

.key-points p {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .company-container {
        flex-direction: column;
        text-align: center;
    }

    .company-content {
        padding: 30px;
        margin-left: 0;
    }

    .company-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .company-content h2 {
        font-size: 28px;
    }

    .company-content p {
        font-size: 17px;
    }

    .key-points p {
        font-size: 16px;
    }

    .company-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .company-content {
        padding: 20px;
    }

    .company-content h2 {
        font-size: 24px;
    }

    .company-content p {
        font-size: 16px;
    }

    .key-points p {
        font-size: 15px;
    }

    .company-image {
        height: 250px;
    }
}

/* Section Styling */
.team-section {
    text-align: center;
    padding: 60px 20px;
    background: #f4f4f4;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #222;
}

/* Team Wrapper */
.team-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Individual Member Card */
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1), -6px -6px 12px rgba(255, 255, 255, 0.8);
    padding: 30px;
    width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Hover Effect */
.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.15), -12px -12px 20px rgba(255, 255, 255, 0.9);
}

/* Image Styling */
.image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Details */
.team-details h3 {
    font-size: 23.7px;
    color: #333;
    font-weight: 700;
    font-family: var(--headings);
}

.role {
    font-size: 20px;
    color: #ff7b00;
    font-weight: bold;
    margin-bottom: 8px;
    font-family: var(--sub);
}

.experience {
    font-size: 16px;
    color: var(--highlights);
    text-align: center;
    max-width: 260px;
    font-family: var(--para);
    line-height: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .team-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    
}
