:root {
    --primary-color: #027b9a;
    --secondary-color: #333;
    /* --background-color: #000000; */
    --header-height: 80px;
    --nav-color: #fff;
    --link-hover-color: #027b9a;
    --hamburger-color: #333;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav-item .nav-link:hover {
    color: #027b9a !important;
}

a:hover {
    color: #fff !important;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    line-height: 1.6;
}

/* Header Styling */

/* Header */
.header {
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 44px 8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #fff;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Nav */
.nav-list {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 230px;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 10px;
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background-color: var(--link-hover-color);
}

/* Desktop hover */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* Arrows */
.nav-item.dropdown .fa-angle-down,
.dropdown-submenu>a .fa-angle-right {
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .fa-angle-down,
.nav-item.dropdown.active .fa-angle-down {
    transform: rotate(180deg);
}

.dropdown-submenu:hover>a .fa-angle-right,
.dropdown-submenu.active>a .fa-angle-right {
    transform: rotate(90deg);
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--hamburger-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--hamburger-color);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.open .hamburger {
    background: transparent;
}

.nav-toggle.open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        padding: 80px 20px 0 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
    }

    .nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: block;
    }

    .dropdown-menu {
        display: none;
        position: static;
        padding-left: 0;
        box-shadow: none;
    }

    .nav-item.dropdown.active>.dropdown-menu,
    .dropdown-submenu.active>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu .dropdown-menu {
        padding-left: 15px;
    }
}


/* -------------------
       HERO SECTION
    ------------------- */

.hero-section {
    background: url('../image/phara-banner1.webp') no-repeat center center/cover;
    padding: 100px 5% 80px;
}

.hero-container {
    /* display: flex; */
    /* justify-content: space-between;
    align-items: flex-start; */
    margin-top: 50px;
    text-align: center;
    gap: 50px;
    padding: 20px;
    flex-wrap: nowrap;

}

.swiper-navigation-icon {
    color: #00bef0;
}

.hero-left,
.hero-right {
    flex: 1 1 50%;

}

.hero-container h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.hero-container p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #000;
}

.btn-discover {
    display: inline-block;
    background: #027b9a;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}

.hero-boxes {
    display: flex;
    gap: 15px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.box {
    background: white;
    padding: 13px 45px;
    border-radius: 10px;
    color: black;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.box-title {
    display: block;
    font-weight: 600;
}

.box-subtitle {
    display: block;
    font-size: 0.9rem;
    color: gray;
}

.enquiry-form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 45%;
}

.enquiry-form h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
}

.enquiry-form textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 10px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #027b9a;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.btn-submit:hover {
    background: #027b9a;
}

/* -------------------
       ABOUT SECTION
    ------------------- */

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

.about-text .highlight {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
}


.about-section {
    padding: 80px 20px;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 45%;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: 520px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-text {
    flex: 1 1 45%;
    min-width: 300px;
}

.about-text h5 {
    color: #027b9a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.btn-read {
    background-color: #027b9a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-read:hover {
    background-color: #027b9a;
}


/* -------------------
   WHO WE ARE
------------------- */
.info-section {
    background: #027b9a url('../image/wave-top.svg') no-repeat top center;
    background-size: cover;
    padding: 120px 5%;
}

.info-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-box {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 30px;
    flex: 1 1 400px;
    min-height: 200px;
    color: #fff;
    box-sizing: border-box;
    opacity: 0;
    /* hidden before scroll */
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.info-box h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.info-box p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-learn {
    display: inline-block;
    background: #f0ff00;
    /* neon yellow */
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #d4e600;
}

/* Scroll Animation Classes */
.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}




/* -------------------
  OUR PRODUCT CATEGORY 
------------------- */

.product-slider-section {
    background: #f9f9f9;
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    color: #333;
}

.section-title span {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: #027b9a;
    margin: 0 10px;
    vertical-align: middle;
}

.product-slider-section .card {
    border: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.product-slider-section .card:hover {
    transform: translateY(-5px);
}

.img-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 15px;
}

.img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(48%) sepia(83%) saturate(2515%) hue-rotate(173deg) brightness(95%) contrast(90%);
}

.carousel-indicators {
    bottom: -70px;
}

.carousel-indicators [data-bs-target] {
    background-color: #027b9a;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.7;
}

.carousel-indicators .active {
    background-color: #f0ff00;
    opacity: 1;
}


/* -------------------
       EXPERIENCE
    ------------------- */

.stats-section {
    background: #027b9a url('dots-bg.png') repeat;
    /* padding: 60px 5%; */
    padding: 50px 0 0 0;
    color: #fff;
    font-family: Arial, sans-serif;
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.stats-left,
.stats-right {
    flex: 1 1 300px;
}

.stats-image {
    flex: 0 0 300px;
    text-align: center;
}

.stats-image img {
    max-width: 100%;
    height: 550px;
}

.stat-box {
    margin-bottom: 40px;
}

.stat-box h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-box h4 {
    color: #ffeb3b;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #f1f1f1;
}

@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
        text-align: center;
    }

    .stats-image {
        order: -1;
        margin-bottom: 30px;
    }
}


/* -------------------
       TESTIMONIALS
    ------------------- */
.testimonial-section {
    background-color: #027b9a;
    color: white;
    padding: 90px 0;
    min-height: 600px;
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-title {
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.indicator {
    bottom: -150px !important;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.5;
}

.testimonial-author {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 600;
}

.testimonial-img {
    max-height: 380px;
    object-fit: contain;
    width: 356px;
    border-radius: 50%;
    margin: 20px auto 0;
    display: block;
    border: 4px solid #FFD700;
}

/* Carousel indicators color */
.carousel-indicators [data-bs-target] {
    background-color: #FFD700;
}



/* -------------------
       OUR CERTIFICATE
    ------------------- */


.certificates-section {
    padding: 50px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.certificates-title {
    font-weight: bold;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    padding: 0 25px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Horizontal lines on either side of title */
.certificates-title::before,
.certificates-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background-color: #1a3b69;
    transform: translateY(-50%);
}

.certificates-title::before {
    left: 0;
}

.certificates-title::after {
    right: 0;
}

.certificates-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
}

.certificates-logos img {
    max-height: 80px;
    object-fit: contain;
    flex: 1;
    max-width: 150px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.certificates-logos img:hover {
    filter: none;
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
    .certificates-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .certificates-logos img {
        max-width: 120px;
        max-height: 60px;
    }
}



/* -------------------
       OUR PRODUCTS
    ------------------- */

.products-section {
    /* background: #0056a6 url('bg-pattern.png') repeat; */
    padding: 50px 5%;
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    color: #000;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.product-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
    text-align: center;
    min-height: 40px;
}

.product-btn {
    display: inline-block;
    background: #027b9a;
    color: #fff;
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: auto;
}

.product-btn:hover {
    background: #027b9a;
}




/* -------------------
       SCROLL ANIMATIONS
    ------------------- */
.animate-left,
.animate-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-left.show,
.animate-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        /* ✅ stack only on smaller screens */
    }

    .hero-left,
    .hero-right {
        flex: 1 1 100%;
    }
}


/* footer  */


.pg-footer {
    margin-top: 100px;
}


.footer {
    background-color: #004658;
    color: #fff;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}

.footer-wave-path {
    fill: #fffff2;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}


.footer-logo-link .footer_logo {
    color: #fff;

}

.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}

.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #00bef0;
}

.button:last-of-type {
    margin-right: 0;
}

.footer-call-to-action-button {
    background-color: #027b9a;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}

.footer-call-to-action {
    margin-top: 30px;
}

.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}



.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: #027b9a;
}

.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 26px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 62px;
    top: 3px;
    width: 28px;
}

.footer-social-link.youtube {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 24px;
}

.footer-social-link.github {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 34px;
}

.footer-copyright {
    background-color: #027b9a;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}







/* Media Query For different screens */

@media (min-width:320px) and (max-width:479px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:480px) and (max-width:599px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}

@media (min-width:600px) and (max-width: 800px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 1050px;
        position: relative;
    }
}



@media (min-width: 760px) {
    .footer-content {
        margin-left: auto;
        margin-right: auto;
        max-width: 1230px;
        padding: 40px 15px 340px;
        position: relative;
    }

    .footer-wave-svg {
        height: 50px;
    }

    .footer-content-column {
        width: 24.99%;
    }
}

@media (min-width: 568px) {
    /* .footer-content-column {
      width: 49.99%;
  } */
}

/* about page  */

.about-header {
    margin-top: 80px;
}

.about-header .bg-light {
    background: #027b9a !important;
    padding: 100px;
}

.gallery-highlight {
    color: #027b9a;
}


.about-main h1 {
    color: #ffffff;
    text-align: center;
}

.contact-page-sec {
    margin-top: 50px;
}

.contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.contact-info-icon {
    margin-bottom: 15px;
}

.contact-info-item {
    background: #027b9a;
    padding: 30px 0px;
}

.contact-page-sec .contact-page-form h2 {
    color: #027b9a;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0;
}

.contact-page-form.contact-form input {
    margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
    height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
    background: #027b9a;
    width: 150px;
    border-color: #027b9a;
}

.contact-info-icon i {
    font-size: 48px;
    color: #fda40b;
}

.contact-info-text p {
    margin-bottom: 0px;
}

.contact-info-text h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-text span {
    color: #ffffff;
    font-size: 16px;
    display: inline-block;
    width: 100%;
}

.contact-page-form input {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}

.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}

.single-input-field textarea {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
    background: #027b9a none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
    background: #071c34;
    transition: all 0.4s ease-in-out 0s;
    border-color: #071c34
}

.single-input-field h4 {
    color: #464646;
    text-transform: capitalize;
    font-size: 14px;
}

.contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.contact-page-map {
    margin-top: 36px;
}

.contact-page-form form {
    padding: 20px 15px 0;
}


/* career page style  */

.job-card {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    margin-bottom: 1rem;
}

.job-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.job-content {
    padding: 1rem;
}

.job-title {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #004658;
}

.job-description {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.5;
}

.apply-button {
    background-color: #004658;
    color: white;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    border: none;
    max-width: 180px;
    width: 100%;
}

.apply-button:hover {
    background-color: #004658;
}


.form-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e0f7fa 0%, #bbdefb 100%);
    min-height: 100vh;
    padding: 20px;
}

.form-container {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 32rem;
    box-shadow: 0 10px 25px rgba(0, 70, 88, 0.15);
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
}

.form-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    text-align: center;
    color: #004658;
    position: relative;
    padding-bottom: 12px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #004658;
    border-radius: 3px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #004658;
}

.form-input {
    width: 100%;
    border: 1px solid #c5d5e0;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fbfd;
}

/* Remove outline on focus */
.form-input:focus {
    outline: none;
    border-color: #004658;
    box-shadow: 0 0 0 3px rgba(0, 70, 88, 0.2);
    background-color: #fff;
}

.required-star {
    color: #e63946;
}



.submit-btn {
    width: 100%;
    background-color: #004658;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.76rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: #003543;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 70, 88, 0.3);
}

/* File input styling */
input[type="file"] {
    padding: 0.6rem;
    font-size: 0.9rem;
}

input[type="file"]::file-selector-button {
    background: #004658;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-right: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background: #003543;
}

/* Animation for form */
.animate-right {
    animation: fadeInRight 0.7s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .form-container {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.35rem;
    }
}


.hero-slider {
    position: relative;
}

.slide-img {
    width: 100%;
    height: 100vh;
    /* full screen height */
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    /* semi-transparent overlay */
    border-radius: 10px;
}

.slide-content h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
}


.card-img-top {
    height: 300px;
    width: 100%;
}

.capsule-img-top {
    height: 100px;
    width: 100%;
}

.card-img-tab {
    height: 100px;
    width: 100%;
    filter: brightness(80%) sepia(20%) hue-rotate(121deg);
}


/* Why Us Section */
.why-us {
    background: #f9fafc;
}

.why-us p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.why-us h3 {
    color: #027b9a;
    margin-bottom: 15px;
}

.why-us h5 {
    color: #222;
    font-size: 20px;
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
}

.why-us h5::before {
    content: "\2713";
    /* checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: #027b9a;
    font-size: 20px;
}

.why-us ul {
    list-style: none;
    padding-left: 0;
}

.why-us ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.why-us ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #027b9a;
    font-size: 20px;
    line-height: 1;
}

/* Services Section */
.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.service-box h5 {
    font-size: 18px;
    color: #027b9a;
}


.text-center-capsule {

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 5px;
    border: 1px solid #cccccbff;
    border-radius: 5px;
}

.capsule {
    background: #f8f4f3;
    font-size: 15px;
    font-weight: 600;
    color: #0c103a;
    letter-spacing: 1px;
    padding: 25px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}