/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #111;
    padding-top: 110px;
}

section {
    padding: 100px 8%;
}

h1,
h2,
h3 {
    font-weight: 700;
}

h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
}

.subtitle {
    text-align: center;
    color: #000000;
    margin-bottom: 60px;
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 7%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;

    background: rgb(232, 232, 240);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgb(0, 0, 0);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-circle {
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-text span {
    color: #00039e;
}

nav a {
    color: #000000;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 800;
    position: relative;
}

nav a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #ff0000;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}


/* ================= HERO FULL SCREEN ================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100vh;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* Text */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    max-width: 600px;
}

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

/* Arrows */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;

    font-size: 22px;
    cursor: pointer;
    z-index: 3;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn {
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Channel Button */
.btn-channel {
    background: #25D366;
    color: #fff;
}

.btn-channel:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* Group Button */
.btn-group {
    background: #128C7E;
    color: #fff;
}

.btn-group:hover {
    background: #0e6f63;
    transform: translateY(-3px);
}


/* ================= PORTFOLIO SECTION ================= */

.portfolio {
    padding: 80px 10%;
    text-align: center;
    background: #f8f9fb;
}

.portfolio h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.portfolio .subtitle {
    color: #666;
    margin-bottom: 50px;
}

/* GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Make tall images span 2 rows */
.portfolio-item.tall {
    grid-row: span 2;
}

/* CARD STYLE */
.portfolio-item {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: #fff;
}

/* IMAGE STYLE */
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

    .portfolio-item.tall {
        grid-row: span 1;
    }
}

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


/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 120px 8%;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.contact-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT IMAGE */
.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* RIGHT FORM */
.contact-form-wrapper {
    flex: 1;
    background: #a5a0a0;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
    font-size: 32px;
    color: #111;
}

/* FORM STYLING */
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-form span {
    color: red;
}

.name-row {
    display: flex;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    margin-bottom: 20px;
    transition: 0.3s;
    outline: none;
    background: #f9f9f9;
}

.contact-form textarea {
    min-height: 130px;
    resize: none;
}

/* Focus Effect */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0072ff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.15);
}

/* SUBMIT BUTTON */
.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(45deg, #00eaff, #0072ff);
    color: #fff;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.3);
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.5);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .name-row {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 35px;
    }
}

/* ================= TESTIMONIALS ================= */
.testimonials {
    padding: 80px 8%;
    background: #b3c6ff;
    text-align: center;
}

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

.testimonial-card {
    background: rgb(237, 219, 233);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}




@media (max-width: 992px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    nav {
        display: none;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .portfolio-grid,
    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}



/* ================= ABOUT PAGE ================= */

.about-section {
    padding: 140px 8% 100px;
    background: #898989;
    color: #000000;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgb(111, 103, 103);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111;
}

.about-subtitle {
    margin-bottom: 30px;
    color: #000000;
}

.about-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.about-box:hover {
    transform: translateY(-5px);
    background: #c7c2c2;
}

.about-box h3 {
    margin-bottom: 10px;
}

.highlight-box {
    background: linear-gradient(45deg, #1eff00, #0072ff);
    color: #000000;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}



/* Responsive */
@media (max-width: 768px) {
    .why-us {
        padding: 70px 5%;
    }

    .why-us h2 {
        font-size: 30px;
    }

    .why-item {
        padding: 25px;
    }
}


/* NAVBAR LOGO AREA */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    /* 👈 Reduce this value (5px–10px ideal) */
}

.logo img {
    width: 60px;
    /* adjust if needed */
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}




/* ================= FLOATING WHATSAPP BUTTON ================= */

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}


/* ================= MAP ================= */
.map-section {
    padding: 0;
    margin: 0;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    display: auto;
}



.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}








.hero-slider {
    padding: 0 !important;
}


.logo-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
}








/* ================= SERVICES ================= */

.services {
    padding: 140px 8% 100px;
    background: #bad2f5;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    margin-bottom: 8px;
    font-weight: 500;
    color: #000000;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

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

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






/* ================= FOOTER ================= */

.footer {
    background: #ada5a5;
    color: #000000;
    padding: 30px 50px 20px;
    font-family: Arial, sans-serif;
}

/* Top Grid */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #000000;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: #d40000;
    transform: translateX(5px);
}

.logo-col h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.logo-col p {
    font-size: 14px;
    color: #000000;
    margin-top: 10px;
}

/* Bottom Section */
.footer-bottom {
    margin-top: 10px;
}

.contact-section h3 {
    margin-bottom: 15px;
}

.contact-section p {
    margin: 6px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-copy {
    margin-top: 20px;
    font-size: 13px;
    color: #ffffff;
    border-top: 1px solid #b2acac;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 16px;
}

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

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

/* Footer Logo Fix */
.footer-logo-box {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo-box img {
    width: 150%;
    height: 150%;
    object-fit: contain; /* important */
}

