:root {
    --primary: #006d77;
    --primary-dark: #004d54;
    --accent: #83c5be;
    --light: #edf6f9;
    --dark: #222;
    --gray: #555;
}

body {
    font-family: 'Jost', sans-serif;
    color: #333;
    background: #f8f9fa;
}

h1,
h2,
h3 {
    font-weight: 700;
}

.navbar {
    background: var(--primary) !important;
}

.navbar-brand img {
    max-height: 52px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    transition: 0.25s;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('img/hero-bg.jpg') center/cover no-repeat;
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.35rem;
    opacity: 0.95;
}

.btn-primary {
    background: var(--accent);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #68b0a9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(131, 197, 190, 0.4);
}

.section-title {
    color: var(--primary);
    font-size: 2.6rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.service-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    background: white;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 109, 119, 0.18);
}

.ser_image {
    height: 110px;
    width: auto;
    margin: 32px auto 24px;
    display: block;
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    margin: 0 24px 16px;
}

.service-card p {
    color: var(--gray);
    padding: 0 24px 28px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.tags {
    padding: 0 24px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #e9f5f3;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 500;
}

footer {
    background: var(--dark);
    color: #aaa;
    padding: 80px 0 40px;
}

footer a {
    color: #ccc;
}

footer a:hover {
    color: var(--accent);
}

.whatsapp-btn {
    background: #25D366;
    width: 64px;
    height: 64px;
    font-size: 28px;
    bottom: 32px;
    right: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.services-container {
    background-color: var(--text-main) !important;
    padding: 60px 5%;
}

.section-header {
    text-align: center;
    /* margin-bottom: 50px; */
    /* padding: 10% 0% 0% 0%; */
}

.section-header h2 {
    font-size: 3.5rem;
    color: #005a57;
}

/* .services-grid { display: none; } Removed or commented out as we use Bootstrap row */
.logo {
    width: 200px;
}

.service-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgb(0 67 76 / 13%);
    border-color: var(--accent);
    border-radius: 3%;
    box-shadow: 0 0 20px var(--accent);
}

.icon-box {
    width: 210px;
    height: 100px;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.ser_image {
    margin-top: -33%;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #00434c;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 8px;
    padding-top: 7%;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #092c30;
    line-height: 1.4;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgb(0 67 76 / 36%);
    color: #00434c;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    border: 1px solid rgba(0, 224, 255, 0.2);
}


:root {
    --bg-gradient: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    --accent: #00e0ff;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-main: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif !important;
}


body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f2027;
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00bcd4;
}

/* --- Top Info Bar --- */
.top-header {
    background: var(--dark);
    font-size: 0.92rem;
}

.top-header a {
    color: var(--accent);
    text-decoration: none;
    transition: 0.2s;
}

.top-header a:hover {
    color: white;
    text-decoration: underline;
}

.top-header i {
    opacity: 0.9;
}

/* --- Navbar --- */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(15, 32, 39, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile menu overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* --- Hero Section --- */
.hero {
    /* height: 80vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 0 10%;
    animation: fadeIn 1.5s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    text-align: left;
    text-transform: uppercase;
    /* background: linear-gradient(to right, #fff, var(--accent)); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    margin-top: 21%;
    /* box-shadow: 1px solid var(--accent); */
    color: #fff;
    box-shadow: var(--accent);
}

.btn {
    padding: 12px 30px;
    background: var(--accent);
    color: #0f2027;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
    border: 1px solid var(--accent);
}

.btn:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

.about {
    border: 1px solid var(--accent);
    ;
}

.about p {
    font-size: 20px;
}

.about:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

/* --- Services Grid (Glassmorphism) --- */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--accent);
}

.card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

/* --- Why Choose Us --- */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.feature-item h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

/* --- Testimonials --- */
.testimonial-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
}

.testi-card {
    min-width: 300px;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
}

/* --- Footer --- */
footer {
    background: #070e11;
    padding: 50px 5%;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #777;
}

/* --- Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .hero {
        padding: 0 8%;
    }

    .section-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 0 6%;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .service-card {
        padding: 25px;
    }

    .icon-box {
        width: 180px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 3%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(15, 32, 39, 0.98);
        text-align: left;
        padding: 80px 30px 30px;
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 12px 20px;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(0, 224, 255, 0.1);
        color: var(--accent);
        transform: translateX(5px);
    }

    .hamburger {
        display: block;
    }

    .hamburger i {
        transition: transform 0.3s ease;
    }

    .hamburger.active i {
        transform: rotate(90deg);
    }

    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .hero {
        padding: 0 5%;
        text-align: center;
    }

    .hero h1 {
        margin-top: 80px;
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem !important;
    }

    .hero .row {
        flex-direction: column;
    }

    .hero .col-lg-6 {
        margin-bottom: 30px;
    }

    .section-header {
        padding: 5% 0% 0% 0%;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .services-container {
        padding: 40px 3%;
    }

    .service-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        padding-top: 5%;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .icon-box {
        width: 150px;
        height: 80px;
    }

    .tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    footer {
        padding: 30px 3%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-content div {
        text-align: center;
    }

    .whatsapp-btn {
        bottom: 30px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
        margin-top: 60px;
    }

    .hero p {
        font-size: 0.9rem !important;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about p {
        font-size: 16px;
        padding: 0 10px;
    }

    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .icon-box {
        width: 120px;
        height: 70px;
    }

    .tag {
        font-size: 0.65rem;
        padding: 2px 6px;
    }

    .logo {
        width: 150px !important;
    }

    nav {
        padding: 15px 3%;
    }

    .top-bar {
        font-size: 0.75rem;
        padding: 8px 3%;
    }

    .footer-content p {
        font-size: 0.9rem;
    }

    .footer-content h4 {
        font-size: 1.1rem;
    }
}

.service-slider-section {
    padding: 90px 0;
    /* background:#f8fafc;  */
}

.slider-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

@media (max-width: 768px) {
    .service-card p {
        font-size: 0.9rem;
    }

    .service-card h3 {
        border-bottom: 0px solid var(--glass-border);
        font-size: 1.1rem;
    }

    .service-card {
        width: 100%;
        padding: 20px;
    }

    .icon-box {
        width: 150px;
        height: 80px;
    }

    .tags {
        gap: 6px;
    }

    .tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

.service-slide {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    min-height: 220px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    height: 291px;
    width: 100%;
    text-align: center;
}

.service-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    opacity: 0;
    transition: 0.4s;
}

.service-slide h4,
.service-slide p {
    position: relative;
    z-index: 2;
}

.service-slide h4 {
    margin-bottom: 12px;
    font-size: 20px;
}

.service-slide p {
    font-size: 14px;
    color: #475569;
}

.service-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.service-slide:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .service-slider-section {
        display: block;
        position: relative;
        padding: 20px 0;
    }

    .service-slider-section img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }

    .service-slider-section .container {
        padding: 0 15px;
    }
}

.footer-content a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;

}

.foot_p {
    padding: 11% 0% 0% 0%;
}

footer i,
footer i::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer li::marker {
    content: "";
}

/* Font Awesome FIX */
.fa-solid,
.fa-solid::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.fa-brands,
.fa-brands::before {
    font-family: "Font Awesome 6 Brands" !important;
}

/* ============================= */
/* CONTACT SECTION */
/* ============================= */

.contact-section {
    width: 100%;
    /* padding: 80px 5%;
        background: var(--bg-gradient);  */
    height: auto;
}

.contact-img {
    width: 100%;
    max-width: 400px;
    margin-top: -11%;
}

.contact-wrapper {
    margin-top: 50px;
}

.glass-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.glass-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px var(--accent);
    border-color: var(--accent);
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #00e0ff;
}

.contact-info p {
    color: #ffffffd4;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details p {
    margin: 15px 0;
    font-size: 1rem;
    color: #fff;
}

.contact-details i {
    color: var(--accent);
    font-size: 18px;
    /* margin-right: 10px; */
}

/* Social Links */
.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 10px;
    color: #fff;
    font-size: 16px;
    transition: 0.4s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    color: #0f2027;
    box-shadow: 0 0 15px var(--accent);
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.25);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.contact-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

/* Responsive */
@media(max-width: 768px) {
    .glass-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.4rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .contact-wrapper .row {
        flex-direction: column;
    }

    .contact-img {
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 20px;
    }
}

@media(max-width: 576px) {
    .glass-box {
        padding: 15px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.2rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    .contact-btn {
        padding: 12px;
        font-size: 1rem;
    }
}



.whatsapp-btn {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* Navbar */
.navbar {
    background: #12232b !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar-brand img.logo {
    width: 160px;
    height: auto;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 10px 16px !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* Hero fixes */
.hero {
    padding: 100px 5% 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .row {
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    margin-top: 0;
    line-height: 1.1;
}

@media (max-width: 991px) {
    .hero {
        padding: 90px 5% 60px;
        text-align: center;
    }

    .hero .row {
        flex-direction: column-reverse;
    }

    .hero h1 {
        margin: 30px 0 20px;
    }
}

/* Services card improvements */
.service-card {
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ser_image {
    max-width: 160px;
    max-height: 100px;
    margin: 0 auto 20px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .service-card {
        min-height: 340px;
        padding: 25px 20px;
    }

    .ser_image {
        max-width: 140px;
        max-height: 90px;
    }

    .service-card h3 {
        font-size: 1.25rem;
        padding-top: 0;
    }
}

/* Remove conflicting custom mobile menu styles */
.hamburger,
.nav-overlay,
.nav-links {
    display: none !important;
}

/* Make sure Bootstrap JS is working */

:root {
    --primary: #006d77;
    --primary-dark: #004d54;
    --accent: #278f84;
    --light: #edf6f9;
    --dark: #1f2a2f;
    --gray: #555;
    --gray-light: #777;
    --bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    color: #333;
    background: var(--bg);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-weight: 700;
}

/* Top bar */
.top-header {
    background: #006d77;
    color: white;
    font-size: 0.9rem;
    padding: 10px 5%;
}

.top-header a {
    color: var(--accent);
    text-decoration: none;
}

.top-header a:hover {
    text-decoration: underline;
}

/* Navbar */
.navbar {

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    max-height: 52px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 12px 18px !important;
    transition: 0.25s;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('img/hero-bg.jpg') center/cover no-repeat fixed;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 5% 100px;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    margin-bottom: 1.4rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 580px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn:hover {
    background: #68b0a9;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 197, 190, 0.35);
}

/* Section titles */
.section-title,
.section-header h2 {
    color: var(--primary);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after,
.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Services */
.services-container {
    padding: 100px 5% 80px;
    background: white;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 24px 48px rgba(0, 109, 119, 0.2);
}

.ser_image {
    height: 110px;
    width: auto;
    max-width: 80%;
    margin: 40px auto 28px;
    display: block;
    object-fit: contain;
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 0 32px 16px;
    text-align: center;
}

.service-card p {
    color: var(--gray);
    padding: 0 32px 32px;
    margin: 0;
    font-size: 1rem;
    flex-grow: 1;
}

.tags {
    padding: 0 32px 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {
    background: #e9f5f3;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Footer */
footer {
    background: #12232b;
    color: #bbb;
    padding: 90px 5% 50px;
}

footer a {
    color: #ddd;
    text-decoration: none;
}

footer a:hover {
    color: var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

/* WhatsApp button */
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: white;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    background: #20c556;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero {
        padding: 120px 5% 80px;
        text-align: center;
    }

    .hero .row {
        flex-direction: column-reverse;
    }
}

@media (max-width: 767px) {
    .services-container {
        padding: 70px 4% 50px;
    }

    .service-card {
        min-height: 360px;
    }

    .ser_image {
        height: 90px;
        margin: 32px auto 24px;
    }

    .whatsapp-btn {
        bottom: 24px;
        right: 24px;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* --- Main Banner Section New --- */
.main-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Gradient Overlay */
.banner-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    padding: 20px;
    width: 100%;
}

.banner-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-custom {
    display: inline-block;
    padding: 15px 45px;
    background: var(--accent);
    color: #0f2027;
    /* Dark text for contrast on bright accent */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.4);
    border: 2px solid var(--accent);
}

.btn-custom:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 224, 255, 0.6);
    transform: translateY(-5px);
}

/* Animation */
.animate-pop {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .main-banner {
        height: 70vh;
        min-height: 400px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }
}

/* --- About Section Redesign --- */
.about-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: transparent;
    /* Assuming main background is handled on body/section wrapper */
}

/* Visual adjustments for text */
.text-accent {
    color: var(--accent) !important;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.about-image-wrapper .main-img {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    max-height: 500px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    /* subtle float animation */
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Floating Badge */
.years-experience {
    position: absolute;
    bottom: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    /* Glass effect */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.years-experience h3 {
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Icon Circles */
.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(0, 224, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    border: 1px solid rgba(0, 224, 255, 0.3);
    line-height: 0;
    /* Reset line-height to prevents text alignment offsets */
}

.icon-circle i {
    font-size: 18px;
    line-height: 0;
    /* Ensure icon doesn't create extra vertical space */
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-image-wrapper {
        margin-bottom: 50px;
    }

    .years-experience {
        right: 10px;
        bottom: 10px;
        padding: 10px 20px;
    }

    .about-section {
        padding: 60px 0;
        text-align: center;
        /* Center text on mobile for better flow */
    }

    .about-content h2 {
        font-size: 2rem;
        /* Smaller heading on mobile */
    }

    .about-content .d-flex {
        justify-content: center;
        /* Center logo icons */
    }

    .about-content .text-start {
        /* But keep list items aligned if needed, or center */
        text-align: left;
    }

    /* Re-align icon lists for left alignment on mobile if preferred, or keep centered */
    .row.g-3 .d-flex {
        justify-content: flex-start;
        padding-left: 10%;
        /* Indent slightly if centering the block */
    }
}

/* --- Services Section Redesign --- */
.services-container {
    background-color: #f4f7f6 !important;
    /* Light gray professional bg override */
    position: relative;
}

.service-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 16px !important;
    padding: 30px 25px !important;
    height: 100%;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    backdrop-filter: none !important;
    /* Remove glass effect */
}

/* Hover Effect: Lift and Shadow */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 109, 119, 0.15) !important;
    border-color: rgba(39, 143, 132, 0.3) !important;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.icon-box {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 143, 132, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: rgba(39, 143, 132, 0.15);
    transform: scale(1.1);
}

.ser_image {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    margin: 0 !important;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2a2f;
    margin-bottom: 12px;
    padding: 0;
    border: none !important;
}

.service-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0 !important;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 !important;
}

.tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: transparent;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.2s;
}

.service-card:hover .tag {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(39, 143, 132, 0.05);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}