/* =========================================================
   SHRI SHYAM COMPUTER
   Responsive Landing Page CSS
   Bootstrap 5 Compatible
   ========================================================= */

/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {
    --primary: #101c3a;
    --primary-dark: #071127;
    --secondary: #1554d1;
    --secondary-dark: #0d3fa8;
    --accent: #28a9f0;
    --accent-light: #e9f7ff;

    --dark: #0b1220;
    --dark-2: #111b2e;

    --text: #273449;
    --text-light: #667085;
    --white: #ffffff;
    --light: #f5f8fc;
    --light-blue: #eef7ff;

    --border: #e1e8f0;
    --success: #20b26b;
    --whatsapp: #25d366;

    --shadow-sm: 0 5px 20px rgba(16, 28, 58, 0.08);
    --shadow: 0 12px 35px rgba(16, 28, 58, 0.12);
    --shadow-lg: 0 20px 50px rgba(16, 28, 58, 0.18);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;

    --transition: all 0.3s ease;
}


/* =========================================================
   02. GENERAL
   ========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

p {
    color: var(--text-light);
    margin-bottom: 15px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

section {
    position: relative;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   03. COMMON SECTION
   ========================================================= */

.section-padding {
    padding: 90px 0;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--primary);
}

.section-title::after {
    content: "";
    display: block;
    width: 65px;
    height: 4px;
    margin-top: 12px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        var(--secondary),
        var(--accent)
    );
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-heading .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}


/* =========================================================
   04. TOP HEADER
   ========================================================= */

.top-header {
    background: var(--primary-dark);
    color: var(--white);
    padding: 9px 0;
    font-size: 13px;
    position: relative;
    z-index: 1050;
}

.top-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.top-header-left,
.top-header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-header a {
    color: rgba(255, 255, 255, 0.9);
}

.top-header a:hover {
    color: var(--accent);
}

.top-header i {
    color: var(--accent);
    margin-right: 6px;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-social a {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}


/* =========================================================
   05. MAIN NAVBAR
   ========================================================= */

.main-navbar {
    background: var(--white);
    min-height: 78px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: var(--transition);
}

.main-navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.main-navbar .navbar-brand img {
    max-height: 62px;
    width: auto;
    object-fit: contain;
}

.main-navbar .navbar-nav {
    align-items: center;
    gap: 4px;
}

.main-navbar .nav-link {
    position: relative;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    padding: 28px 11px !important;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 18px;
    height: 2px;
    border-radius: 10px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--secondary);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgb(192 175 161) !important;
}

.text-info {
    --bs-text-opacity: 1;
    color: rgb(253 230 198) !important;
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(192 175 161) !important;
}


/* Call Button */

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white) !important;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    border: none;
    padding: 11px 20px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(21, 84, 209, 0.25);
}

.btn-call:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(21, 84, 209, 0.35);
}


/* Navbar toggler */

.main-navbar .navbar-toggler {
    border: none;
    padding: 8px;
    box-shadow: none !important;
}

.main-navbar .navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 28px;
    height: 20px;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

.main-navbar .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 28px;
    height: 2px;
    background: var(--primary);
}
.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: 600;
    color: var(--bs-nav-link-color);
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}


/* =========================================================
   06. HERO SLIDER
   ========================================================= */

.hero-slider {
    position: relative;
    background: var(--primary-dark);
}

.hero-slider .carousel-item {
    position: relative;
    min-height: 650px;
}

.hero-slider .carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 15, 39, 0.96) 0%,
            rgba(7, 22, 52, 0.86) 45%,
            rgba(7, 22, 52, 0.3) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-content-inner {
    max-width: 700px;
}

.hero-small-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    background: rgba(40, 169, 240, 0.12);
    border: 1px solid rgba(40, 169, 240, 0.3);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    max-width: 650px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 25px;
    border-radius: 7px;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    color: var(--white);
    font-weight: 600;
    border: 1px solid transparent;
    box-shadow: 0 10px 25px rgba(21, 84, 209, 0.3);
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 25px;
    border-radius: 7px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-custom:hover {
    color: var(--primary);
    background: var(--white);
    border-color: var(--white);
}


/* Slider controls */

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 55px;
    height: 55px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 25px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: var(--secondary);
}

.hero-slider .carousel-indicators {
    z-index: 5;
    bottom: 25px;
}

.hero-slider .carousel-indicators button {
    width: 30px;
    height: 4px;
    border: none;
    border-radius: 10px;
    opacity: 0.5;
}

.hero-slider .carousel-indicators button.active {
    opacity: 1;
    background: var(--accent);
}


/* =========================================================
   07. ABOUT SECTION
   ========================================================= */

.about-section {
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(40, 169, 240, 0.08),
            transparent 30%
        ),
        var(--white);
}

.about-image-wrapper {
    position: relative;
    padding-right: 25px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    min-height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-image-wrapper::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: 0;
    bottom: -20px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    z-index: -1;
}

.about-content {
    padding-left: 25px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.about-points i {
    color: var(--secondary);
    font-size: 18px;
}


/* =========================================================
   08. SERVICES
   ========================================================= */

.services-section {
    padding: 100px 0;
    background: var(--light);
}

.service-card {
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.card-img, .card-img-bottom, .card-img-top {
    width: 100%;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(21, 84, 209, 0.2);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    left: 20px;
    bottom: -22px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    box-shadow: 0 8px 20px rgba(21, 84, 209, 0.3);
    z-index: 2;
}

.service-content {
    padding: 38px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary);
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-buttons {
    margin-top: auto;
    display: flex;
    gap: 8px;
}

.service-buttons a {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 9px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.service-call {
    color: var(--white);
    background: var(--secondary);
}

.service-call:hover {
    color: var(--white);
    background: var(--secondary-dark);
}

.service-whatsapp {
    color: var(--white);
    background: var(--whatsapp);
}

.service-whatsapp:hover {
    color: var(--white);
    background: #1da851;
}


/* =========================================================
   09. WHY CHOOSE US
   ========================================================= */

.why-section {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
    color: var(--white);
}

.why-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    border-radius: 50%;
    background: rgba(40, 169, 240, 0.08);
}

.why-section .section-title {
    color: var(--white);
}

.why-section p {
    color: rgba(255, 255, 255, 0.7);
}

.why-section .section-heading {
    position: relative;
    z-index: 2;
}

.why-card {
    height: 100%;
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(40, 169, 240, 0.4);
}

.why-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 18px;
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    font-size: 22px;
}

.why-card h3 {
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    margin: 0;
}


/* =========================================================
   10. PROCESS
   ========================================================= */

.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-wrapper {
    position: relative;
}

.process-wrapper::before {
    content: "";
    position: absolute;
    left: 12.5%;
    right: 12.5%;
    top: 42px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--secondary),
        var(--accent)
    );
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
}

.process-number {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    border: 7px solid var(--white);
    box-shadow: 0 8px 25px rgba(21, 84, 209, 0.25);
}

.process-card h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 13px;
    max-width: 250px;
    margin: auto;
}


/* =========================================================
   11. GALLERY
   ========================================================= */

.gallery-section {
    padding: 100px 0;
    background: var(--light);
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--primary);
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(7, 17, 39, 0.7);
    transition: var(--transition);
}

.gallery-overlay i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--secondary);
    border-radius: 50%;
    font-size: 18px;
    transform: scale(0.7);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}


/* Gallery modal */

.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-modal-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    background: #000;
}

.modal-header {
    border-bottom: 1px solid var(--border);
}

.modal-title {
    color: var(--primary);
    font-weight: 600;
}


/* =========================================================
   12. TESTIMONIAL
   ========================================================= */

.testimonial-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 5px;
    left: 20px;
    color: rgba(21, 84, 209, 0.08);
    font-size: 90px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.testimonial-card h4 {
    color: var(--primary);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-stars {
    color: #f5ad21;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 14px;
    margin: 0;
}


/* =========================================================
   13. CONTACT
   ========================================================= */

.contact-section {
    padding: 100px 0;
    background: var(--light);
}

.contact-info {
    height: 100%;
    padding: 40px;
    color: var(--white);
    background: linear-gradient(
        145deg,
        var(--primary-dark),
        var(--primary)
    );
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.contact-info::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -100px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(40, 169, 240, 0.12);
}

.contact-info h3 {
    position: relative;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-info > p {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

.contact-details {
    position: relative;
    margin-top: 30px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-details .contact-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(40, 169, 240, 0.15);
    border: 1px solid rgba(40, 169, 240, 0.25);
    border-radius: 10px;
}

.contact-details strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-details span,
.contact-details a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    height: 100%;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    color: var(--primary);
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-label {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}

.form-control,
.form-select {
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--text);
    background: var(--white);
    font-size: 13px;
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(21, 84, 209, 0.08) !important;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.contact-map {
    margin-top: 40px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* =========================================================
   14. FAQ
   ========================================================= */

.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    background: var(--white);
}

.accordion-button {
    padding: 20px 22px;
    color: var(--primary);
    background: var(--white);
    font-size: 15px;
    font-weight: 600;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary);
    background: var(--light-blue);
}

.accordion-button::after {
    background-size: 14px;
}

.accordion-body {
    padding: 0 22px 22px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   15. CTA
   ========================================================= */

.cta-section {
    padding: 80px 0;
    background:
        linear-gradient(
            135deg,
            rgba(7, 17, 39, 0.97),
            rgba(21, 84, 209, 0.95)
        );
    color: var(--white);
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 255, 255, 0.08) 0,
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(40, 169, 240, 0.15) 0,
            transparent 25%
        );
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.78);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-buttons .btn-call {
    background: var(--white);
    color: var(--primary) !important;
}

.cta-buttons .btn-call:hover {
    background: var(--accent);
    color: var(--white) !important;
}


/* =========================================================
   16. FOOTER
   ========================================================= */

.site-footer {
    padding: 70px 0 0;
    background: #050c1d;
    color: rgba(255, 255, 255, 0.65);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 210px;
    max-height: 70px;
    object-fit: contain;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    max-width: 330px;
}

.footer-title {
    position: relative;
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 22px;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 55px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}


/* =========================================================
   17. FLOATING BUTTONS
   ========================================================= */

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.float-btn:hover {
    color: var(--white);
    transform: scale(1.08);
}

.float-call {
    background: var(--secondary);
}

.float-whatsapp {
    background: var(--whatsapp);
}


/* =========================================================
   18. BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 145px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 7px;
    opacity: 0;
    visibility: hidden;
    z-index: 1020;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    color: var(--white);
    background: var(--secondary);
    transform: translateY(-3px);
}


/* =========================================================
   19. BADGES / SMALL ELEMENTS
   ========================================================= */

.badge-custom {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    color: var(--secondary);
    background: var(--light-blue);
    font-size: 11px;
    font-weight: 600;
}

.text-primary-custom {
    color: var(--secondary) !important;
}

.bg-light-custom {
    background: var(--light) !important;
}


/* =========================================================
   20. AOS / ANIMATION SUPPORT
   ========================================================= */

[data-aos] {
    transition-duration: 800ms;
}

.fade-up-custom {
    animation: fadeUpCustom 0.8s ease both;
}

@keyframes fadeUpCustom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   21. TABLET RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {

    .main-navbar .nav-link {
        padding-left: 8px !important;
        padding-right: 8px !important;
        font-size: 13px;
    }

    .main-navbar .nav-link::after {
        left: 8px;
        right: 8px;
    }

    .btn-call {
        padding: 10px 15px;
        font-size: 13px;
    }

    .hero-slider .carousel-item,
    .hero-content {
        min-height: 590px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content {
        padding-left: 10px;
    }

    .about-image-wrapper {
        padding-right: 10px;
    }

    .service-image {
        height: 200px;
    }

    .gallery-item {
        height: 220px;
    }
}


/* =========================================================
   22. MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 991.98px) {

    .top-header {
        font-size: 11px;
    }

    .top-header .container {
        justify-content: center;
    }

    .top-header-left,
    .top-header-right {
        gap: 10px;
    }

    .top-header-right {
        display: none;
    }

    .main-navbar {
        min-height: 70px;
    }

    .main-navbar .navbar-brand img {
        max-height: 55px;
        max-width: 190px;
    }

    .main-navbar .navbar-collapse {
        margin-top: 10px;
        padding: 10px 0 15px;
        border-top: 1px solid var(--border);
    }

    .main-navbar .navbar-nav {
        align-items: stretch;
        gap: 0;
    }

    .main-navbar .nav-link {
        padding: 12px 5px !important;
        border-bottom: 1px solid #edf0f4;
    }

    .main-navbar .nav-link::after {
        display: none;
    }

    .main-navbar .nav-link:hover,
    .main-navbar .nav-link.active {
        background: var(--light-blue);
        padding-left: 12px !important;
    }

    .navbar-call-wrapper {
        margin-top: 12px;
    }

    .navbar-call-wrapper .btn-call {
        width: 100%;
    }

    .hero-slider .carousel-item,
    .hero-content {
        min-height: 550px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-content-inner {
        max-width: 650px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 42px;
        height: 42px;
        margin: 0 10px;
    }

    .about-section,
    .services-section,
    .why-section,
    .process-section,
    .gallery-section,
    .testimonial-section,
    .contact-section,
    .faq-section {
        padding: 75px 0;
    }

    .about-image-wrapper {
        margin-bottom: 40px;
        padding-right: 10px;
    }

    .about-content {
        padding-left: 0;
    }

    .process-wrapper::before {
        display: none;
    }

    .process-card {
        margin-bottom: 35px;
    }

    .process-card:last-child {
        margin-bottom: 0;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .contact-map {
        height: 350px;
    }
}


/* =========================================================
   23. MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 767.98px) {

    body {
        font-size: 14px;
    }

    .top-header {
        padding: 8px 0;
    }

    .top-header .container {
        display: block;
        text-align: center;
    }

    .top-header-left {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px 12px;
    }

    .top-header-left span:nth-child(3) {
        display: none;
    }

    .main-navbar .navbar-brand img {
        max-width: 165px;
        max-height: 50px;
    }

    .section-padding,
    .about-section,
    .services-section,
    .why-section,
    .process-section,
    .gallery-section,
    .testimonial-section,
    .contact-section,
    .faq-section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 27px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* Hero */

    .hero-slider .carousel-item,
    .hero-content {
        min-height: 570px;
    }

    .hero-content {
        align-items: center;
        padding: 50px 0 70px;
    }

    .hero-content h1 {
        font-size: 35px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-small-title {
        font-size: 11px;
        padding: 6px 11px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 11px 17px;
        font-size: 12px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }

    .hero-slider .carousel-indicators {
        bottom: 18px;
    }

    /* About */

    .about-image-wrapper {
        margin-bottom: 30px;
        padding-right: 0;
    }

    .about-image img {
        min-height: 300px;
    }

    .about-image-wrapper::after {
        width: 70px;
        height: 70px;
        right: -5px;
        bottom: -10px;
        border-radius: 12px;
    }

    .about-content {
        padding: 0;
    }

    .about-points {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Services */

    .service-image {
        height: 210px;
    }

    .service-content {
        padding: 35px 18px 18px;
    }

    .service-content h3 {
        font-size: 17px;
    }

    .service-content p {
        font-size: 13px;
    }

    .service-buttons a {
        font-size: 11px;
    }

    /* Why */

    .why-card {
        padding: 23px 18px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 19px;
    }

    /* Process */

    .process-card {
        padding: 0 10px;
    }

    .process-number {
        width: 70px;
        height: 70px;
        font-size: 19px;
    }

    /* Gallery */

    .gallery-item {
        height: 180px;
    }

    .gallery-overlay i {
        width: 43px;
        height: 43px;
        font-size: 15px;
    }

    /* Testimonials */

    .testimonial-card {
        padding: 28px 20px;
    }

    /* Contact */

    .contact-info,
    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .contact-info h3,
    .contact-form-wrapper h3 {
        font-size: 23px;
    }

    .contact-map {
        height: 300px;
        margin-top: 30px;
    }

    /* CTA */

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 13px;
    }

    /* Footer */

    .site-footer {
        padding-top: 55px;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-bottom {
        margin-top: 25px;
    }

    /* Floating */

    .floating-actions {
        right: 13px;
        bottom: 13px;
        gap: 8px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .back-to-top {
        right: 13px;
        bottom: 120px;
        width: 38px;
        height: 38px;
    }
}


/* =========================================================
   24. SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .top-header-left {
        font-size: 10px;
    }

    .main-navbar .navbar-brand img {
        max-width: 145px;
        max-height: 45px;
    }

    .hero-slider .carousel-item,
    .hero-content {
        min-height: 530px;
    }

    .hero-content h1 {
        font-size: 31px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons a {
        flex: 1;
    }

    .section-title {
        font-size: 25px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .service-image {
        height: 200px;
    }

    .service-buttons {
        flex-direction: column;
    }

    .service-buttons a {
        width: 100%;
        padding: 10px;
    }

    .gallery-item {
        height: 155px;
        border-radius: 9px;
    }

    .contact-details li {
        gap: 10px;
    }

    .contact-details .contact-icon {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }

    .contact-map {
        height: 270px;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .cta-buttons a {
        width: 100%;
    }

    .footer-logo img {
        max-width: 180px;
    }
}


/* =========================================================
   25. EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 375px) {

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-buttons a {
        padding: 10px 12px;
        font-size: 11px;
    }

    .section-title {
        font-size: 23px;
    }

    .gallery-item {
        height: 135px;
    }

    .floating-actions {
        right: 10px;
        bottom: 10px;
    }

    .float-btn {
        width: 43px;
        height: 43px;
    }
}


/* =========================================================
   26. LANDSCAPE MOBILE
   ========================================================= */

@media (max-height: 500px) and (orientation: landscape) {

    .hero-slider .carousel-item,
    .hero-content {
        min-height: 480px;
    }

    .hero-content {
        padding: 35px 0;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        margin-bottom: 15px;
    }
}


/* =========================================================
   27. ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(40, 169, 240, 0.45);
    outline-offset: 2px;
}


/* =========================================================
   28. REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* =========================================================
   29. PRINT
   ========================================================= */

@media print {

    .top-header,
    .main-navbar,
    .floating-actions,
    .back-to-top,
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    section {
        padding: 30px 0 !important;
    }
}