@import url(https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; */
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #01577F 0%, #764ba2 100%);
    opacity: 0.1;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: #000;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    /* backdrop-filter: blur(20px); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media(max-width:530px) {
    nav {
        /* align-items: flex-start; */
        /* flex-direction: column-reverse; */
        align-content: flex-start;
        flex-wrap: wrap;
    }
}

.top-bar-right {
    display: flex;
    gap: 30px;
    list-style: none;
}

.top-bar-right a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.top-bar-right a:hover {
    color: #01577F;
}

.top-bar-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #01577F;
    transition: width 0.3s ease;
}

.top-bar-right a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    /* min-height: 60vh; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    position: relative;
    background-image: url('./images/banner.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-repeat: no-repeat;
    top: 95px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%2301577F" fill-opacity="0.05" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    /* z-index: 1; */
}

.hero-content {
    position: relative;
}

.hero-text {
    top: 40px;
    position: relative;
    width: 60%;
}

.hero-text h1 {
    /* font-size: 2.5rem; */
    font-weight: 600;
    /* line-height: 1.1; */
    /* margin-bottom: 20px; */
    /* margin-top: 30px; */
    /* background: linear-gradient(135deg, #01577F, #764ba2); */
    /* -webkit-text-fill-color: transparent; */
    -webkit-background-clip: text;
    background-clip: text;
    animation: slideInLeft 1s ease-out;
    color: #fff;
}

.hero-text p {
    /* font-size: 14px; */
    color: #fff;
    margin-bottom: 40px;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.cta-buttons {
    /* display: flex; */
    /* gap: 20px;
    flex-wrap: wrap; */
    margin-bottom: 90px;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    /* font-size: 1.1rem; */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    /* display: inline-flex; */
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    /* background: linear-gradient(135deg, #01577F, #764ba2); */
    background: transparent;
    border: 1px solid #fff;
    color: white;
    /* box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); */
}

.btn-primary:hover {
    /* transform: translateY(-3px); */
    /* box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4); */
}

.btn-secondary {
    background: white;
    color: #01577F;
    border: 2px solid #01577F;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #01577F;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* choose us  */
/* .choose-us {
    margin: 0;
} */

.choose-img img {
    max-width: 100%;
    height: auto;
}

.header p {
    color: #000;
    line-height: 22px;
}

.header h3 {
    font-weight: 700;
    color: #000;
    margin-bottom: 0px;
    padding-bottom: 15px;
}

.body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
}

.body h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.body p {
    color: #000;
    line-height: 22px;
}

.body .features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 8px;
}

.body .features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.body .features .feature-item img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    flex-shrink: 0;
}

/* .body .features .feature-item .feature-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
     flex-direction: column; 
} */

.body .features .feature-item .feature-text strong {
    font-weight: 600;
    /* margin-bottom: 4px; */
}

.body .features .feature-item .feature-text span {
    color: #000;
    font-size: 0.9rem;
}

.foot p {
    margin-bottom: 12px;
}

/* choose us  */
/* Opportunities Section */
.opportunities {
    padding: 50px 0;
    background: white;
}

.section-header {
    text-align: center;
    /* margin-bottom: 80px; */
}

.section-title {
    /* font-size: 3rem; */
    /* font-weight: 800; */
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    /* font-size: 1.3rem; */
    /* color: #666; */
    margin: 0 auto;
}

/* services  */
/* Base Section */
.services-section {
    margin: 16px 0;
    background: #F5F5F5;

}

.grid-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* align-items: start; */
    justify-items: center;
    gap: 20px;
}

/* Service Cards */
.grid-container .services {
    padding: 20px;
    min-width: 300px;
    max-width: 400px;
}

.grid-container .services h3 {
    font-weight: 600;
}

.grid-container .services p {
    font-weight: 500;
}

.grid-container .services .image {
    text-align: center;
}

.grid-container .services .image img {
    max-width: 100%;
    height: auto;
}

.grid-container .services h3 {
    margin: 16px 0;
}

.grid-container .services ul {
    padding-left: 1rem;
}

/* Divider Style */
.card-divider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-divider img {
    height: 100%;
    max-height: 400px;
    width: auto;
}

/* Responsive: Stack cards vertically, hide divider */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .card-divider {
        display: none;
    }

    .grid-container .services {
        max-width: 100%;
    }
}


/* services  */
/* Process Section */
.bg-yellow {
    background-color: #E78F11 !important;
}

.bg-blue-light {
    background-color: #3F90CE !important;
}

.bg-orange {
    background-color: #FE6102 !important;
}

.bg-blue {
    background-color: #006A9D !important;
}

.process {
    padding: 20px 0;
    background: #fff;
    margin-bottom: 30px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #01577F, #764ba2); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.step-description {
    color: #fff;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    /* background: linear-gradient(135deg, #01577F, #764ba2); */
    background: #F0F0F0;
    /* color: white; */
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 15s ease-in-out infinite;
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto 60px;
    /* background: rgba(255, 255, 255, 0.1); */
    background: #E8E8E8;
    backdrop-filter: blur(20px);
    border-radius: 23px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 6px 8px 24.9px -11px #00000040;
}

.contact-form {
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: black;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.1);
    color: black;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #DDDDDD;
    background: #F4F4F4;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b4b4b4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(243, 243, 243, 0.863);
    background: rgba(243, 243, 243, 0.863);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-divider {
    margin: 40px 0;
    position: relative;
    text-align: center;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.contact-divider span {
    /* background: linear-gradient(135deg, #01577F, #764ba2); */
    padding: 0 20px;
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 600;
    color: #282828;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: linear-gradient(90deg, #00679A 0%, #002334 100%);
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    /* color: white; */
    /* border: 2px solid white; */
    border: 2px solid #C2C3CF
}

.btn-outline:hover {
    background: white;
    color: #01577F;
}

/* Footer */
.footer {
    /* background: #0f1e2b; */
    background: linear-gradient(90deg, #00679A 0%, #002334 100%);
    color: white;
    padding: 0;
    /* padding: 80px 0 0; */
}

/* .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        } */

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #01577F;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #01577F, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #01577F, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #01577F;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    margin: 0;
    color: #fff;
}

.footer-bottom-content a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    /* color: #01577F; */
    text-decoration: underline;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .top-bar-right li {
        border-right: none !important;
    }

    .top-bar-right svg {
        width: 30px;
        height: 30px;
    }

    .top-bar-right .action_btn {
        display: none !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        width: auto;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .opportunity-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .top-bar-right li {
        border-right: none !important;
    }

    .top-bar-right svg {
        width: 30px;
        height: 30px;
    }

    .top-bar-right .action_btn {
        display: none;
    }

    .top_right ul a {
        font-size: 13px !important;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px 20px;
        margin: 0 20px 40px;
    }

    /* .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            } */

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        font-size: 12px;
    }

    .footer-bottom-content a {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 25px 15px;
        margin: 0 10px 30px;
    }
}

.logo-main img {
    width: 210px;
    margin: 0px;
}

.top_right ul li {
    display: flex;
    gap: 2px;
    float: left;
    border-right: 1px solid #333;
    padding-right: 10px;
}

.top_right ul li:last-child {
    border-right: none;
}

.top_right ul a {
    color: #434040;
    font-size: 16px;
    font-weight: 500;
}

.top_right ul i {
    font-size: 14px;
    color: #434040;
}

.menumain {
    /* padding: 6px 0 0 0; */
    background-color: #fff;
    transition: 400ms all ease;
    border-bottom: 1px solid #e5e5e5;
}

.menumain .top-bar-right {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 12px;
    margin: 0;
}

.menumain .top-bar-right li {
    margin: 0;
}

@media (max-width: 360px) {
    .menumain .top-bar-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .menumain .top-bar-right li {
        border: none;
    }
}

@media (max-width: 991px) {
    .menumain .top-bar-right {
        justify-content: left;
    }
}

/* h2 {
    font-size: 1.5rem;
} */

ul li {
    margin-bottom: 0.5rem;
}

.content-section {
    padding: 40px 0;
    margin: 90px 0 0 0;
    background: white;
}

.section-title {
    /* font-size: 2.5rem; */
    font-weight: 700;
    color: #000;
    margin-bottom: 0px;
    /* border-bottom: 3px solid #01577F; */
    padding-bottom: 15px;
}

.highlight-box-top {
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
    border-left: 4px solid #01577F;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.highlight-box {
    text-align: center;
    /* background: linear-gradient(135deg, #f8f9ff, #e8f0ff); */
    background: linear-gradient(90deg, #006A9D 0%, #064884 100%);

    /* border-left: 4px solid #01577F; */
    /* border-right: 4px solid #01577F; */
    padding: 20px;
    border-radius: 50px 50px 0 0;
    /* margin: 40px 0 0 0; */
    min-height: 250px;
}

.highlight-box h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight-box p,
.highlight-box ul {
    color: #fff;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #01577F, #764ba2); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.step-description {
    color: #fff;
    font-size: 1rem;
}

/* Utility Classes */
.text-primary {
    color: #01577F !important;
}

.border-start {
    border-left: 4px solid #01577F !important;
}