* {
    margin: 0;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #bfc8ff42;
    overflow-x: hidden;
    /* width: 320px; */
    width: auto;
    
}
.header-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
    align-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top bar */
.top-bar {
    background-color: #2c3e50;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: #3498db;
}

/* .image-gallery::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
} */

.image-gallery::-webkit-scrollbar-thumb {
    background: #4fc3f7;
    border-radius: 10px;
}

.image-item {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


img#Hero_images {
    width: 30%;

}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 126, 0.85);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

.gallery-instruction {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-style: italic;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* position: sticky; */
    top: 0;
    z-index: 1000;
}
/* .mobile-nav.active {
    right: 109px;
} */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: -15px 0; */
    position: relative;
}

.home-container {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 80px;

}

.logo {
    /* width: 100%; */
}


/* Navigation with Mega Menu - FIXED POSITIONING */
nav {
    position: static;
    /* Changed from relative to static */
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    position: static;
    /* Added this line */
}

.nav-menu li.mega-menu-parent {
    position: static;
    /* Ensure mega menu parent has static positioning */
}

.nav-menu li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.nav-menu li a:hover {
    color: #3498db;
}

.nav-menu li a i {
    margin-left: 5px;
    font-size: 12px;
}

/* Mega Menu Styling - FIXED POSITIONING */
.mega-menu {
    position: absolute;
    /* left: 0;
    top: 100%; */
    /* This will position it right below the header */
    width: 50%;
    /* Make it full width */
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    padding: 30px 0;
    /* Changed padding to top/bottom only */
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    z-index: 999;
    /* Lower than header but higher than content */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    max-height: 0;
    overflow: hidden;
    
}

.mega-menu.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
    max-height: 600px;
    /* Set a reasonable max height */
}

.mega-menu-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-menu-column {
    padding: 0 10px;
}

.mega-menu-column h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
}

.mega-menu-column ul li {
    margin-bottom: 12px;
}

.mega-menu-column ul li a {
    padding: 0;
    color: #555;
    font-weight: normal;
    transition: color 0.3s, padding-left 0.3s;
}

.mega-menu-column ul li a:hover {
    color: #3498db;
    padding-left: 8px;
}

.mega-menu-column ul li a i {
    margin-right: 8px;
    color: #3498db;
}

.menu-highlight {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}

.menu-highlight h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 16px;
}

.menu-highlight p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.menu-highlight .btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.menu-highlight .btn:hover {
    background-color: #2980b9;
}

/* Mobile Navigation Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle:hover {
    color: #3498db;
    z-index: 100;
}
/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
position: absolute;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: white;
    z-index: 999;
    overflow-y: auto;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.mobile-nav.active {
    right: 0px;
    display: block;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
}

.mobile-nav-header h3 {
    font-size: 20px;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu li a {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 15px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav-menu li a:hover {
    background-color: #f8f9fa;
    color: #3498db;
}

.mobile-nav-menu li a i {
    font-size: 14px;
    transition: transform 0.3s;
}

.mobile-nav-menu li a.active i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    background-color: #f8f9fa;
    padding: 10px 0;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu li a {
    padding-left: 40px;
    font-size: 14px;
    font-weight: normal;
}

/* Mobile Mega Menu */
.mobile-mega-menu {
    display: none;
    background-color: #f8f9fa;
    padding: 15px 20px;
}

.mobile-mega-menu.active {
    display: block;
}

.mobile-mega-column h4 {
    color: #2c3e50;
    font-size: 16px;
    margin: 15px 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #3498db;
}

.mobile-mega-column ul {
    list-style: none;
    margin-bottom: 15px;
}

.mobile-mega-column ul li {
    margin-bottom: 8px;
}

.mobile-mega-column ul li a {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.mobile-mega-column ul li a i {
    margin-right: 8px;
    color: #3498db;
}

/* Icons color white  */
i.fab {
    color: white;
}

/* Hero section - ADDED Z-INDEX TO ENSURE IT'S BEHIND MEGA MENU */
.hero {
    background: linear-gradient(135deg, #041521 0%, #73c5b6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: -1;
    /* Lower than mega menu but normal flow */
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ecf0f1;
}

.hero-logo {
    display: inline-block;
    height: 10px;
    margin: 0 20px;
    vertical-align: middle;
}

.client-item {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.client-images {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}


.trusted-by {
    margin-top: 60px;
}

.trusted-by h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #bdc3c7;
}

.clients {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.client-logo {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
}

/* Services */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    color: #2c3e50;
}



.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* IT Solutions Section */
.it-solutions-intro {
    background-color: #f5f7fa;
    padding: 60px 0;
    text-align: center;
}

.it-solutions-intro h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.it-solutions-intro p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #555;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.solution-item i {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.solution-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* */
#about-us {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 80px;

    /* Adjust based on your nav height */
}

#home {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-left: 80px;

}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Testimonials Section with Scroll */
.testimonials {
    background-color: #f5f7fa;
    padding: 60px 0;
    position: relative;
   
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.testimonials-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.testimonials-scroll {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 350px;
    flex-shrink: 0;
    position: relative;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    max-width:25pc;
    text-align: center;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    align-content: flex-end;
    flex-direction: column;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 18px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.author-info p {
    color: #666;
    font-size: 14px;
}

.testimonial-company {
    color: #3498db;
    font-weight: 500;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-arrow:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.scroll-arrow.left {
    left: 0;
}

.scroll-arrow.right {
    right: 0;
}

.scroll-arrow i {
    font-size: 20px;
}

.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.indicator.active {
    background-color: #3498db;
    transform: scale(1.2);
}

/* Why choose us */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature {
    text-align: center;
    padding: 25px;
}

.feature-icon {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Footer */
footer {
    background-color: #054979;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 14px;
}

/* Chat button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #1e8c05;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s;
}

.chat-button:hover {
    background-color: #2980b9;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-icon {
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .header-content {
        flex-direction: row;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mega-menu {
        width: 700px;
        grid-template-columns: repeat(2, 1fr);
        left: 50%;
        transform: translateX(-50%) translateY(10px);
    }

    .mega-menu.active {
        transform: translateX(-50%) translateY(0);
    }

    .hero h1 {
        font-size: 32px;
    }

    .testimonial-card {
        min-width: 300px;
    }
}

@media (max-width: 400px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .mega-menu {
        width: 90vw;
        grid-template-columns: 1fr;
        padding: 20px 0;
    }

    .hero {
        padding: 50px 0;
    }

    .clients {
        gap: 15px;
    }

    .client-logo {
        font-size: 14px;
        padding: 10px 0px;
    }

    .testimonials-container {
        padding: 0 40px;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .testimonials-container {
        padding: 0 20px;
        margin-right: -150px;
    }
}

    .testimonial-card {
        min-width: 260px;
        padding: 20px;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
    }

    .mobile-nav {
        width: 85%;
        right: -85%;
    }

.position-grid{
    display: grid;
    grid-template-columns: 1fr;        /* Default: 1 column (mobile) */
    /* gap: 40px;                          Space between cards */
    max-width: 1200px;
    /* margin: 0 auto; */
    padding: 20px;
}

@media (max-width: 992px) {
   .positions-grid {
    display: contents;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 30px;
    margin-left: 0px;
}
}

@media (min-width: 992px) {
.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 30px;
    margin-left: 80px;
}
}
/* .position-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid #1a3a5f;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
} */

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
** Website Development Service **/

.hero-section{
        padding: 60px 0;
}
.hero-section h2{
        font-weight: 700;
        margin-bottom: 15px;
}
.hero-section p{
        color:#555;
        font-size: 16px;
        line-height: 1.7;
}
.hero-img{
        width: 100%;
        max-height: 380px;
        object-fit: cover;
        border-radius: 12px;
}
.section-title{
    margin-left: 0 !important;
    padding-left: 0;
    text-align: left;
    position: relative;
    padding-left: 15px;           /* space from vertical line */
    margin-left: 0;
    color: #07014f;               /* Sky blue color */
    font-weight: 700;
    text-align: left;
}

.justify-text{
    text-align: justify;
}
.section-title::before{
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;                  /* line thickness */
    height: 85%;
    background-color: #00bfff;  /* same sky blue */
    border-radius: 10px;
}
.features-title {
    color: #00bfff;               /* Sky blue */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-left: 12px;           /* Space after vertical line */
    border-left: 5px solid #00bfff; /* Vertical line */
    line-height: 1;
    
}

/* MAIN HEADING */
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #0b1d33;
}

/* Gradient highlight for Development */
.hero-title span {
    background: linear-gradient(90deg, #00b4db, #0083ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Decorative underline */
.hero-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: #00b4db;
    margin: 12px auto 0;
    border-radius: 10px;
}

/* Subtitle */
.hero-sub {
    margin-top: 12px;
    font-size: 1.1rem;
    color: #5c6b7a;
}

/* Responsive */
@media(max-width:768px){
    .hero-title{
        font-size:2.2rem;
    }
}
@media (max-width: 992px) {
    .position-card {
        flex-direction: row;
    }
}

/* index css */

.grid-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin-top: 30px;
        padding-top: 50px;
        margin: 0 auto;
    }

    @media (max-width: 1024px) {
        .grid-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: 1fr;
                    
            }
        } */
    .card {
        background-color: white;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #3b82f6;
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .title {
        font-size: 1.25rem;
        font-weight: bold;
        color: #4b5563;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 1rem;
        color: #1f2937;
        margin-bottom: 16px;
    }

    .description {
        font-size: 0.95rem;
        color: #374151;
        line-height: 1.5;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .tags {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-size: 0.9rem;
        color: #4b5563;
        align-items: center;
    }

    .tag {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .icon {
        font-size: 1.1rem;
    }

    /* contact us */


    input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            box-sizing: border-box;
            transition: border 0.3s;
        }
        button {
            background-color: #006caf;
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }
        button:hover {
            background-color: #34495e;
        }

            
/* careers */

        .hero {

            z-index: 58;
        }

        header {
            z-index: 1000 !important;
        }
   
                .nav-menu li a {
                    text-decoration: none;
                    color: #2c3e50;
                    font-weight: 500;
                    font-size: 16px;
                    transition: color 0.3s;
                    padding: 10px 15px;
                    display: flex;
                    align-items: center;
                }        .careers-section {
            text-align: center;
            padding: 80px 20px;
        }
        .careers-section h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        .careers-section p {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
        }
        .emails {
            margin: 30px 0;
        }
        .emails a {
            display: block;
            color: #007bff;
            font-size: 18px;
            margin: 10px 0;
            text-decoration: none;
        }
        .why-box {
            max-width: 600px;
            margin: 50px auto;
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .why-box ul {
            text-align: left;
            list-style: none;
            padding-left: 0;
        }
        .why-box ul li {
            margin: 15px 0;
            font-size: 17px;
        }
        .why-box ul li::before {
            content: "✓ ";
            color: #007bff;
            font-weight: bold;
        }
        .apply-btn {
            display: inline-block;
            margin-top: 40px;
            padding: 14px 40px;
            background-color: #007bff;
            color: white;
            font-size: 18px;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            transition: background 0.3s;
            width: 470px;
        }
        .apply-btn:hover {
            background-color: #0056b3;
         
        
        }
        .view-btn {
            display: inline-block;
            margin-top: 40px;
            padding: 14px 40px;
            background-color: #001277;
            color: white;
            font-size: 13px;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            transition: background 0.3s;
            width: 250px;
        }
        footer {
            text-align: center;
            padding: 30px;
            /* background: #fff; */
            color: #666;
            font-size: 14px;
            margin-top: 100px;
        }
/* Careers list */
/* Careers List */
        .careers-container {
            padding: 4rem 0;
        }
        
        .section-title {
            font-size: 2rem;
            color: #1e3c72;
            margin-bottom: 2.5rem;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #4dabf7;
            margin: 10px auto 0;
            border-radius: 2px;
        }
        
                .job-filters {
                    display: flex;
                    justify-content: center;
                    flex-wrap: nowrap;
                    gap: 15px;
                    margin-bottom: 3rem;
                    align-content: space-around;
                }
        
        .filter-btn {
            padding: 10px 20px;
            background-color: rgb(108, 163, 246);
            border: 1px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            width: 225px;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: #1e3c72;
            color: white;
            border-color: #1e3c72;
        }
        
        .job-listings {
          max-width: 800px;
      margin: 0 auto;
        }
        
        .job-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid #4dabf7;
            margin-top: 28px;
            
        }
        
        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .job-title {
            font-size: 1.5rem;
            color: #1e3c72;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .job-title i {
            color: #4dabf7;
            font-size: 1.8rem;
        }
        
        .job-requirements {
            list-style: none;
            margin: 20px 0;
        }
        
        .job-requirements li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
            text-align:left;
        }
        
        .job-requirements li:last-child {
            border-bottom: none;
        }
        
        .job-requirements li i {
            margin-right: 10px;
            color: #4CAF50;
            font-size: 0.9rem;
        }
        
        .job-requirements li .inactive {
            color: #ccc;
        }
        
        .apply-btn {
            display: inline-block;
            background: linear-gradient(to right, #1e3c72, #2a5298);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            width: auto;
            text-align: center;
        }
        
        .apply-btn:hover {
            background: linear-gradient(to right, #2a5298, #1e3c72);
            box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
        }
        
        /* Rating Section */
        .rating-section {
            background-color: white;
            padding: 3rem 0;
            text-align: center;
            margin: 2rem 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .stars {
            color: #FFD700;
            font-size: 1.8rem;
        }
        
        .rating-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e3c72;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 4rem 0;
            background-color: #f0f7ff;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info h3, .appointment-form h3 {
            font-size: 1.8rem;
            color: #1e3c72;
            margin-bottom: 1.5rem;
        }
                .contact-info {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    flex-direction: column;
                    flex-wrap: nowrap;
                    align-content: center;
                    justify-content: center;
                }
        .contact-details {
            margin-top: 30px;
        }
/*         
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        } */
                .contact-item {
                    display: flex;
                    align-items: center;
                    margin-bottom: 20px;
                    /* text-align: -webkit-auto; */
                    gap: 10px;
                    justify-content: center;
                }
        .contact-item i {
            background-color: #1e3c72;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .appointment-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #4dabf7;
        }
        
        
        /* Animation for job cards */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .job-card {
            animation: fadeIn 0.5s ease-out;
        }
    
        /* projects */

 :root {
            --primary: #011235;
            --primary-dark: #1d4ed8;
            /* --gray-100: #f3f4f6; */
            --gray-800: #1f2937;
            --gray-900: #111827;
        }


                @media (min-width: 320px) {
            .project-card {
                margin-right: 30px;
            }
        }

         .section-title {
            text-align: center;
            font-size: 1 rem;
            margin-bottom: 60px;
            color: var(--gray-900);
        }

        
        .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    justify-items: center;
}
        .project-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            width: 300px;
                margin-left: -100px;
        }
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .project-img {
    width: 90%;
    height: 150opx;
    object-fit: cover;
}
        .project-content {
            padding: 30px;
        }
        .project-title {
            font-size: 1.5rem;
            margin: 0 0 16px 0;
            color: var(--gray-900);
            color:rgb(34, 7, 34) ;
        }
        .project-desc {
            color: #555;
            margin-bottom: 24px;
        }
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }
        .tag {
            background: var(--gray-100);
            color: var(--gray-800);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
        }
        .project-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
        }
        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        .fa-chevron-down:before {
    content: "\f078";
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Privacy */


        body {
            font-family: "Segoe UI", sans-serif;
            background-color: #f8f9fa;
        }

        .privacy-header {
           background: linear-gradient(135deg, #041521 0%, #73c5b6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* z-index: -1; */
        }

        .privacy-header h1 {
            font-weight: 700;
        }

        .privacy-content {
            background: #ffffff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        

        .privacy-content h3 {
            margin-top: 30px;
            color: #3498db;
            font-weight: 600;
        }

        .privacy-content p,
        .privacy-content li {
            color: #555;
            line-height: 1.8;
        }

        .privacy-content ul {
            padding-left: 20px;
        }

        @media (max-width: 576px) {
            .privacy-content {
                padding: 25px;
            }

            .privacy-header {
                padding: 40px 15px;
            }
        }
    
        /* Terms */
        body {
            font-family: "Segoe UI", sans-serif;
            background-color: #f8f9fa;
        }

        .privacy-header {
           background: linear-gradient(135deg, #041521 0%, #73c5b6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* z-index: -1; */
        }

        .privacy-header h1 {
            font-weight: 700;
        }

        .privacy-content {
            background: #ffffff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        

        .privacy-content h3 {
            margin-top: 30px;
            color: #3498db;
            font-weight: 600;
        }

        .privacy-content p,
        .privacy-content li {
            color: #555;
            line-height: 1.8;
        }

        .privacy-content ul {
            padding-left: 20px;
        }

        @media (max-width: 576px) {
            .privacy-content {
                padding: 25px;
            }

            .privacy-header {
                padding: 40px 15px;
            }
        }
    