* {
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu li:hover {
    animation: jump 0.4s ease;
}

@keyframes jump {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-8px); }
    60%  { transform: translateY(3px); }
    100% { transform: translateY(0); }
}

.container {
    width: 100%;
    margin: auto;
}

.logo{
    height: 70px;
    object-fit: none;
}

.section-title {
    text-align: center;
    /*margin-bottom: 40px;*/
    font-size: 32px;
}

/* HERO */
/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    height: 100vh;
    background: url("../assets/images/img.png") no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: #f8f9fa;
    /*border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;*/
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.6);*/
    top: 0;
    left: 0;
}

/* Container */
.hero-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: flex-end;   /* 👈 Push content to right */
}

/* Content Right Side */
.hero-content {
    max-width: 600px;
    text-align: left;
    animation: fadeInRight 1.2s ease;
    background: rgba(0, 0, 0, 0.65);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-content span {
    animation: fadeInRight 1.2s ease;
    color: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    font-size: 48px;
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    background: #2c5364;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 10px;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #fff;
    color: #2c5364;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        height: 80vh;
    }

    .hero-container {
        justify-content: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

/* SERVICES */
.services {
    padding: 80px 0;
}

.service-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

/* ABOUT */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* WHY */
/* WHY SECTION */
.why {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    /*margin-bottom: 60px;*/
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.why-box h4 {
    margin-top: 20px;
    font-weight: 600;
}

.why-box p {
    font-size: 14px;
    /*color: #666;*/
    margin-top: 10px;
}

/* Icon Style */
.why-icon {
    font-size: 40px;
    color: #2c5364;
    transition: 0.4s;
}

/* Hover Effect */
.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.why-box:hover .why-icon {
    transform: scale(1.2);
}

/* Gradient Border Effect */
.why-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #2c5364;
    transition: 0.4s;
}

.why-box:hover::before {
    height: 100%;
    opacity: 0.05;
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    backdrop-filter: blur(12px);
    z-index: 9999;
    transition: 0.4s ease;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.logo a {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.logo span {
    color: #ff4c60;
}

.logo a:hover {
    letter-spacing: 1px;
}

/* Nav */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* Animated underline */
.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.4s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Contact Button */
.nav-btn {
    background: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    color: #2c5364!important;
}

.nav-btn:hover {
    box-shadow: 0 0 15px #102229;
}

/* Scroll effect */
.main-header.scrolled {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        display: none;
        border-radius: 8px;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* FOOTER */
/* MAIN FOOTER */
.main-footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    position: relative;
    padding-top: 100px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

/* Wave Accent */
.footer-wave {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #ff4c60, #ff7a18);
    border-top-left-radius: 100% 40px;
    border-top-right-radius: 100% 40px;
}

/* Layout */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about h3 span {
    color: #ff4c60;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

/* Contact */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #fff;
    margin-right: 8px;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.4s ease;
}

.social-icons a:hover {
    background: #0f2027;
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 15px 0;
    background: rgba(0,0,0,0.4);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ===== HERO ===== */
.hero {
    /*height: 100vh;*/
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.6);*/
    top: 0;
    left: 0;
}

@keyframes moveBg {
    0% { transform: translate(-20%, -20%); }
    100% { transform: translate(20%, 20%); }
}

.hero-content {
    position: relative;
    max-width: 730px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 30px;
}

/* SERVICES */
.services {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-grid {
    display: flex;
    gap: 30px;
}

.service-card {
    flex: 1;
    padding: 40px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 40px;
    color: #2c5364;
    margin-bottom: 15px;
}

/* ABOUT */
.about {
    padding: 60px 0;
    background: #e7e0e0;
}

.about-image img {
    width: 400px;
    border-radius: 15px;
    transition: 0.4s;
    height: 350px;
    object-fit: cover;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* WHY */
.why {
    padding: 60px 0;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.why-box:hover {
    background: #2c5364;
    color: #fff;
    transform: translateY(-5px);
}

/* CTA */
.cta {
    padding: 60px 0;
    /*background: linear-gradient(135deg, #ff4c60, #ff7a18);*/
    background: #e7e0e0;
    color: #fff;
    text-align: center;
}
.section-title-p{
    text-align: center;
    margin-bottom: 30px;
}

/* PORTFOLIO */
.portfolio {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img {
    width: 100%;
    transition: 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* PROCESS */
.process {
    padding: 60px 0;
    background: #e7e0e0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.process-box span {
    font-size: 30px;
    font-weight: bold;
    color: #2c5364;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.20);
    transition: all 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
/* FINAL CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff4c60, #ff7a18);
    color: #fff;
    text-align: center;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    /*padding-left: 6px;*/
}

.footer-contact a:hover {
    color: #fff;
    padding-left: 6px;
}