:root {
    /* MAIN BRAND COLOR */
    --primary: #111184;          /* Royal Dark Blue */
    --primary-light: #2d2db8;    /* Lighter shade */
    --primary-dark: #08085a;     /* Darker shade */

    /* Accent Colors */
    --accent-blue: #3aa8e9;      /* Aqua Blue (Logo) */
    --accent-light: #7cc9ef;     /* Sky Light Blue */

    /* Gradients */
    --gradient: linear-gradient(90deg, #2d3aff, #111184);
    --gradient-strong: linear-gradient(90deg, #111184, #08085a);
    --gradient-bright: linear-gradient(90deg, #7cc9ef, #3aa8e9, #111184);

    /* Text & Background */
    --text-dark: #111184;
    --text-light: #f1f1f1;
    --white: #ffffff;
    --light-bg: #f4f7ff;
}


body {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

/* NAVBAR */
.stylish-nav {
    background: var(--gradient);
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

/* Logo */
.nav-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

/* Brand Text */
.brand-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.navbar-toggler.white .navbar-toggler-icon {
    filter: invert(1) brightness(200%);
}

.navbar-toggler.white {
    border-color: #fff !important;
}


/* Menu Links */
.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin-left: 18px;
    position: relative;
    font-size: 16px;
    transition: 0.3s ease;
}

/* Hover Underline Animation */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--white);
    transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Toggle */
.custom-toggler {
    border: none;
}

.navbar-toggler-icon{
    color: #ffffff !important;
}

/* Mobile Menu Slide Animation */
@media (max-width: 991px) {
    #mainNav {
        background: var(--gradient);
        padding: 20px;
        border-radius: 10px;
        animation: slideDown 0.3s ease;
    }

    .nav-logo{
        height: 80px;
        width: 80px;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ---------------------------
   HERO SLIDER WRAPPER
---------------------------- */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* ---------------------------
   HERO SLIDES
---------------------------- */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* ---------------------------
   DARK OVERLAY
---------------------------- */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.45);
    z-index: 1;
}

/* ---------------------------
   HERO CONTENT
---------------------------- */
.hero-content {
    position: absolute;
    bottom: 18%;
    left: 7%;
    z-index: 5;
    color: #fff;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-top: 10px;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ---------------------------
   SLIDER CONTROL BUTTONS
---------------------------- */
.hero-controls {
    position: absolute;
    top: 83%;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 20px 20px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 32px;
    padding: 4px 20px;
    border-radius: 100%;
    cursor: pointer;
    transition: 0.3s ease;
}

.control-btn:hover {
    background: var(--primary);
    border-color: #fff;
    transform: scale(1.12);
}

/* ---------------------------
   MOBILE RESPONSIVE
---------------------------- */
@media (max-width: 768px) {

    .hero-slider {
        height: 75vh; /* reduce height for mobile */
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .control-btn {
        font-size: 22px;
        padding: 6px 14px;
    }
}




/* -----------------------------
   PREMIUM SERVICE SECTION
------------------------------*/
.premium-services {
    background: var(--light-bg);
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-sub {
    color: #555;
    font-size: 17px;
}

/* -----------------------------
   PREMIUM CARD DESIGN
------------------------------*/
.premium-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease-in-out;
    text-align: center;
}

/* Hover Effect */
.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* -----------------------------
   IMAGE DESIGN
------------------------------*/
.premium-img {
    width: 100%;
    height: 240px;
    object-fit: cover;      /* SUPER RESPONSIVE */
    border-bottom: 1px solid #eee;
    transition: transform 0.4s ease;
}

/* Zoom Image on Hover */
.premium-card:hover .premium-img {
    transform: scale(1.08);
}

/* -----------------------------
   TITLE
------------------------------*/
.premium-card h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 15px;
    color: var(--primary-dark);
    margin: 0;
}

/* -----------------------------
   RESPONSIVE FIXES
------------------------------*/
@media (max-width: 768px) {
    .premium-img {
        height: 240px;
    }
    .premium-card h3 {
        font-size: 18px;
    }
}


/* -------------------------------------------------------
   ULTRA STYLISH LEFT + RIGHT SPLIT SECTION
--------------------------------------------------------*/
.stylish-split-section {
    background: linear-gradient(135deg, #f0fdfd, #f6ffff);
    padding-top: 70px;
    padding-bottom: 70px;
}

/* LEFT BOX */
.stylish-content-box {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

/* Hover Lift */
.stylish-content-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 50px rgba(0,0,0,0.12);
}

/* Title */
.stylish-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.stylish-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.stylish-text {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
}

/* Button */
.stylish-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.stylish-btn:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

/* IMAGE STYLE */
.stylish-image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.18);
}

.stylish-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Image hover zoom */
.stylish-image-box:hover .stylish-image {
    transform: scale(1.08);
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .stylish-title {
        font-size: 28px;
    }
    .stylish-image {
        height: 300px;
    }
}


/* -------------------------------------------------------
   ULTRA STYLISH PARALLAX SECTION
--------------------------------------------------------*/
.parallax-section {
    position: relative;
    height: 70vh;
    background-image: url('./img/bg1.jpg'); /* YOUR IMAGE */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;           /* PARALLAX EFFECT */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* DARK OVERLAY */
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.40);
    z-index: 1;
}

/* CONTENT */
.parallax-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.parallax-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* BUTTON */
.parallax-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.parallax-btn:hover {
    opacity: 0.85;
    transform: translateY(-4px);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .parallax-section {
        height: 60vh;
    }

    .parallax-content h2 {
        font-size: 32px;
    }

    .parallax-content p {
        font-size: 16px;
    }
}

/* --------------------------------------------
   PROCESS SECTION – SUPER PREMIUM DESIGN
-------------------------------------------- */
.process-layout {
    background: #f8fafa;
}

/* TITLE */
.process-title {
    font-size: 34px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LEFT IMAGE */
.process-img {
    width: 100%;
    animation: floatY 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* PROCESS CARD */
.process-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    border: 1px solid #e6e6e6;
    text-align: left;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
}

/* Hover Effects */
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

/* ICON CIRCLE */
.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 50%;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(32,138,138,0.25);
}

/* HEADINGS */
.process-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

/* TEXT */
.process-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .process-img {
        max-width: 260px;
    }
}


/* ---------------------------------------------
   PREMIUM QUALITY SERVICE SPLIT SECTION
----------------------------------------------*/
.quality-split {
    background: #f8fafa;
}

/* TITLE */
.quality-title {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* TEXT */
.quality-text {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* FEATURES LIST */
.quality-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.quality-list li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.quality-list li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 20px;
}

/* BUTTON */
.quality-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: #fff;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.quality-btn:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

/* RIGHT IMAGE */
.quality-img-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.quality-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Hover Zoom Eff*



/* Section */
.creative-testimonial {
    background: #f8fafa;
}

/* Heading */
.testimonial-title {
    font-size: 30px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Slider Wrapper */
.testi-wrapper {
    overflow: hidden;
    width: 100%;
}

/* Track (slide area) */
.testi-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease;
}

/* Testimonial Cards */
.testi-card {
    min-width: calc(33.33% - 20px); /* 3 cards in desktop */
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-6px);
}

/* Icon */
.t-icon {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 10px;
}

.testi-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.testi-card h4 {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Buttons Top Right */
.t-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gradient);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin-left: 8px;
    transition: 0.3s;
}

.t-btn:hover {
    transform: scale(1.12);
}

/* MOBILE — 1 CARD VIEW */
@media (max-width: 768px) {
    .testi-card {
        min-width: 100%; /* 1 card per slide */
    }
    .t-btn{
            font-size: 10px;

    }
}


/* =======================
   CREATIVE FOOTER
========================*/

.creative-footer {
    background: #f5f9f9;
    position: relative;
    color: #444;
}

/* Curved Top Shape */
.footer-top-shape {
    width: 100%;
    height: 80px;
    background: var(--primary);
    clip-path: ellipse(55% 100% at 50% 0%);
}

/* Footer Logo */
.footer-logo {
    width: 130px;
}

/* Titles */
.footer-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Text */
.footer-about p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #444;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #555;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
}

/* Social Icons */
.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 12px 0;
    background: #e9f2f2;
    font-size: 14px;
    margin-top: 20px;
}

.footer-bottom a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}



/* ===================================
   ABOUT PAGE PARALLAX HEADER
=================================== */

.about-parallax-header {
    height: 55vh;
    background-image: url('./img/bgg.jpg'); /* Your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;   /* PARALLAX EFFECT */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DARK OVERLAY */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.about-parallax-header .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.about-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* BREADCRUMB */
.breadcrumb-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.breadcrumb-box a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-box p {
    color: #ddd;
    margin: 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .about-parallax-header {
        height: 38vh;
    }

    .about-title {
        font-size: 32px;
    }
}



/* ==================================================
   WHO WE ARE SECTION
================================================== */

.about-who-we-are {
    background: #f8fafa;
}

/* LEFT IMAGE BOX */
.about-img-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* Image zoom on hover */
.about-img-box:hover .about-img {
    transform: scale(1.08);
}

/* RIGHT CONTENT */
.about-title-2 {
    font-size: 34px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.about-text {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Icon List */
.about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: var(--primary);
    font-size: 20px;
    margin-right: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .about-img {
        height: 300px;
    }

    .about-title-2 {
        font-size: 28px;
    }
}


/* ===========================================
   MISSION & VISION SECTION
=========================================== */
.mission-vision-section {
    background: #ffffff;
}

/* Sub text */
.mv-sub {
    color: #555;
    font-size: 16px;
    margin-top: 6px;
}

/* Card */
.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.10);
    transition: 0.3s ease;
    text-align: center;
    border: 1px solid #eaeaea;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}

/* Icon */
.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Title */
.mv-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

/* Text */
.mv-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-card {
        padding: 25px;
    }
}


/* ==================================================
   SERVICES PAGE – PREMIUM GRID DESIGN
================================================== */
.services-grid-section {
    background: #f8fafa;
}

.service-main-title {
    font-size: 34px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-sub {
    color: #666;
    font-size: 16px;
}

/* CARD DESIGN */
.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

/* CONTENT */
.service-content {
    padding: 20px;
    text-align: center;
}

.service-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
}

.service-content p {
    font-size: 15px;
    color: #555;
    margin-top: 8px;
}

/* Mobile Responsive */
@media(max-width: 768px) {
    .service-img img {
        height: 200px;
    }
}


/* ==============================
   GALLERY SECTION
============================== */
.gallery-section {
    background: #f8fafa;
}

.gallery-main-title {
    font-size: 34px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-sub {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Image styling */
.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    transition: 0.4s ease;
    cursor: pointer;
}

/* Hover zoom */
.gallery-img:hover {
    transform: scale(1.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

/* Mobile */
@media(max-width: 768px) {
    .gallery-img {
        height: 210px;
    }
}


/* ===============================
   FULL CONTACT PAGE
=============================== */

.contact-page-full {
    background: #f8fafa;
}

/* CONTACT CARDS */
.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #eaeaea;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

/* ICON */
.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(32,138,138,0.25);
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* CONTACT FORM */
.contact-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-input {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
}

.contact-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(42,138,138,0.2);
}

/* SUBMIT BUTTON */
.send-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.send-btn:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

/* FULLY RESPONSIVE MAP */
.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 50%;  /* Controls height – 50% = rectangular */
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 55px;
    height: 55px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    animation: floatUp 3s ease-in-out infinite;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* WhatsApp Icon */
.whatsapp-icon {
    width: 58px;
    height: 58px;
}

/* Floating Effect */
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}


/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    animation: floatUp 3s ease-in-out infinite;
}

.back-to-top:hover {
    transform: scale(1.12);
    box-shadow: 0 16px 35px rgba(0,0,0,0.35);
}

/* Show button */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Floating animation */
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}


/* TESTIMONIAL SECTION */
.testimonial-section {
    background: #f8fafa;
}

.testimonial-title {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SLIDER */
.testimonial-slider {
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
    text-align: center;
    opacity: 0;
    position: absolute;
    width: 100%;
    transition: opacity 0.8s ease;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
}

/* TEXT */
.t-text {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* USER */
.t-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 10px;
}

.t-user h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.t-user span {
    color: #666;
    font-size: 14px;
}

/* CONTROL BUTTONS */
.testimonial-controls {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.t-btn {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(32,138,138,0.25);
}

.t-btn:hover {
    transform: scale(1.1);
}

/* MOBILE */
@media(max-width: 768px) {
    .testimonial-card {
        padding: 25px;
    }
    .t-text {
        font-size: 16px;
    }

    .t-btn{
          width: 25px;
    height: 25px;
    font-size: 15px;
    }
    .testimonial-controls {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 5px;
}
}
