/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --primary: #6b1739;
    --primary-dark: #3b1027;
    --secondary: #8f3157;
    --gold: #c59b5c;
    --gold-light: #e7c889;

    --cream: #fbf7f2;
    --white: #ffffff;
    --dark: #21151c;
    --text: #635861;
    --border: #eadfe3;

    --shadow: 0 15px 45px rgba(54, 20, 38, 0.10);

}


/* =====================================================
   GLOBAL RESET
===================================================== */

*,
*::before,
*::after {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;
    overflow-x: hidden;

}


body {

    margin: 0;
    padding: 0;

    width: 100%;
    max-width: 100%;

    overflow-x: hidden;

    background: var(--cream);

    color: var(--text);

    font-family: "DM Sans", sans-serif;

    line-height: 1.7;

}


img {

    max-width: 100%;
    height: auto;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

    transition: all 0.3s ease;

}


ul {

    margin: 0;
    padding: 0;

    list-style: none;

}


button,
input,
textarea {

    font-family: inherit;

}


.container {

    width: 100%;

}


.section-space {

    padding: 100px 0;

}


/* =====================================================
   TOP BAR
===================================================== */
 .top-bar {
    width: 100%;
    background: #980209;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    padding: 6px 0;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
}

.top-bar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
}

.top-left{
    gap:22px;
}

.top-left span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.top-left i {
    color: #ffd700;
}

.top-right{
     color:#fcec00;
    overflow:hidden;
}

.top-right marquee{
    width:100%;
}

.top-right a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 12px;
}

.top-right a:hover {
    background: #ffd700;
    color: #980209;
    border-color: #ffd700;
}

/* ===========================
   Tablet
=========================== */

@media (max-width:991px){

    .top-bar{
        font-size:15px;
    }

    .top-left{
        gap:12px;
    }
}

/* ===========================
   Mobile
=========================== */

@media (max-width:768px){

    .top-bar{
        padding:8px 0;
        font-size:14px;
    }

    .top-bar-inner{
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:8px;
    }

    .top-left{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .top-right{
        width:100%;
        text-align:center;
    }

    .top-right marquee{
        font-size:13px;
        line-height:1.5;
    }

}

/* ===========================
   Small Mobile
=========================== */

@media (max-width:480px){

    .top-bar{
        font-size:13px;
    }

    .top-left{
        flex-direction:column;
        gap:8px;
    }

    .top-left span{
        justify-content:center;
    }

    .top-right marquee{
        font-size:12px;
    }
}

/* =====================================================
   MAIN HEADER
===================================================== */

.main-header {

    position: relative;

    z-index: 100;

    background: var(--white);

}


.header-inner {

    min-height: 100px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    min-width: 0;

}


.brand-logo {

    width: 68px;
    height: 68px;

    flex: 0 0 68px;

    display: flex;

    align-items: center;
    justify-content: center;

}


.brand-logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;

}


.brand-content h1 {

    margin: 0;

    color: var(--primary);

    font-family: "Playfair Display", serif;

    font-size: 30px;

    font-weight: 700;

    line-height: 1.1;

}


.brand-content span {

    display: block;

    margin-top: 3px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.header-actions {

    display: flex;

    align-items: center;

    gap: 25px;

}


.header-action {

    display: flex;

    align-items: center;

    gap: 11px;

}


.header-action > i {

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 17px;

}


.call-action > i {

    color: var(--primary);

    background: #f7e9ef;

}


.whatsapp-action > i {

    color: #168b53;

    background: #e4f5ec;

}


.header-action small {

    display: block;

    color: #95858c;

    font-size: 11px;

    line-height: 1.2;

}


.header-action strong {

    display: block;

    margin-top: 3px;

    color: var(--dark);

    font-size: 14px;

}


/* =====================================================
   MARQUEE
===================================================== */

.service-marquee {

    width: 100%;

    overflow: hidden;

    background: #980209;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}


.marquee-track {

    width: max-content;

    display: flex;

    animation: marqueeMove 55s linear infinite;

}


.marquee-content {

    display: flex;

    align-items: center;

    gap: 42px;

    padding: 11px 21px;

    white-space: nowrap;

}


.marquee-content span {

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 0.5px;

}


.marquee-content span::before {

    content: "✦";

    margin-right: 42px;

    color: var(--gold-light);

}


@keyframes marqueeMove {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}
 /* =====================================================
   HERO IMAGE ONLY SLIDER
===================================================== */

.hero-image-slider {

    width: 100%;

    max-width: 100%;

    overflow: hidden;

    background: #000;

}


.hero-image-slider .carousel,
.hero-image-slider .carousel-inner,
.hero-image-slider .carousel-item {

    width: 100%;

}
 

.hero-image-slider .carousel-item img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


.hero-image-slider .carousel-indicators {

    z-index: 5;

    bottom: 20px;

}


.hero-image-slider .carousel-indicators button {

    width: 32px;

    height: 4px;

    margin: 0 4px;

    border: 0;

    border-radius: 10px;

}


.hero-image-slider .carousel-control-prev,
.hero-image-slider .carousel-control-next {

    width: 8%;

}


.hero-image-slider .carousel-control-prev-icon,
.hero-image-slider .carousel-control-next-icon {

    width: 42px;

    height: 42px;

    padding: 10px;

    background-color: rgba(107, 23, 57, 0.85);

    background-size: 18px;

    border-radius: 50%;

}


/* =====================================================
   TABLET
===================================================== */
 


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .hero-image-slider {

        width: 100vw;

        max-width: 100vw;

        margin-left: 0;

        margin-right: 0;

        overflow: hidden;

    }


    .hero-image-slider .carousel-item {

        height: auto;

  

    }


    .hero-image-slider .carousel-item img {

        width: 100%;

        height: 100%;

        object-fit: cover;

    }


    .hero-image-slider .carousel-control-prev,
    .hero-image-slider .carousel-control-next {

        width: 12%;

    }


    .hero-image-slider .carousel-control-prev-icon,
    .hero-image-slider .carousel-control-next-icon {

        width: 30px;

        height: 30px;

        background-size: 13px;

    }


    .hero-image-slider .carousel-indicators {

        bottom: 8px;

    }


    .hero-image-slider .carousel-indicators button {

        width: 20px;

        height: 3px;

    }

}


.btn-primary-custom,
.btn-outline-custom {

    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 25px;

    border-radius: 3px;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;

}


.btn-primary-custom {

    background: #980209;

    color: #fff;

}


.btn-primary-custom:hover {

    background: var(--gold-light);

    color: var(--primary-dark);

    transform: translateY(-3px);

}


.btn-outline-custom {

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.6);

}


.btn-outline-custom:hover {

    background: var(--white);

    color: var(--primary);

}


.carousel-indicators {

    z-index: 5;

    bottom: 25px;

}


.carousel-indicators button {

    width: 30px !important;
    height: 4px !important;

    border: 0;

    border-radius: 5px;

}


.carousel-control-prev,
.carousel-control-next {

    width: 7%;

}


.carousel-control-prev-icon,
.carousel-control-next-icon {

    width: 42px;
    height: 42px;

    background-size: 18px;

    border: 1px solid rgba(255, 255, 255, 0.5);

    border-radius: 50%;

}


/* =====================================================
   SECTION TITLES
===================================================== */

.section-label {

    margin-bottom: 13px;

    color:#980209;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.section-title {

    margin-bottom: 20px;

    color: var(--dark);

    font-family: "Playfair Display", serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 600;

    line-height: 1.18;

}


.section-title span {

    display: block;

    color:#980209;

}


.section-text {

    margin-bottom: 16px;

    color:#000;

    font-size: 15px;

}


.section-heading-center {

    max-width: 700px;

    margin: 0 auto;

    text-align: center;

}


.section-heading-center .section-title span {

    display: inline;

}


.section-heading-center > p {

    color: #fff;

    font-size: 15px;

}


/* =====================================================
   INTRO
===================================================== */

.intro-section {

    background: var(--cream);

}


.intro-image-wrap {

    position: relative;

    padding-right: 10px;

}


.intro-image-wrap::before {

    content: "";

    position: absolute;

    top: 30px;
    left: 30px;

    width: 80%;

    height: 90%;

    border: 1px solid var(--gold);

    z-index: 0;

}


.intro-image-wrap img {

    position: relative;

    z-index: 1;

    width: 100%;
 

    object-fit: cover;

}
 
.check-list {

    display: grid;

    gap: 10px;

    margin: 25px 0 30px;

}


.check-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--dark);

    font-size: 14px;

    font-weight: 600;

}


.check-list i {

    color: var(--gold);

}


/* =====================================================
   SERVICES LIGHT
===================================================== */

.services-section-light {

    background:linear-gradient(135deg, #980209 0%, #49070a 100%);

}


.service-box {

    position: relative;

    height: 100%;

    padding: 35px 30px;

    background: var(--cream);

    border: 1px solid var(--border);

    transition: all 0.35s ease;

    overflow: hidden;

}


.service-box::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #fcec00;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;

}


.service-box:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: transparent;

}


.service-box:hover::before {

    transform: scaleX(1);

}
.service-image {

    width: calc(100% + 60px);

    height: 250px;

    margin: -35px -30px 25px;

    overflow: hidden;

}


.service-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;

}


.service-box:hover .service-image img {

    transform: scale(1.08);

}


.service-box {

    overflow: hidden;

}


@media (max-width: 767.98px) {

    .service-image {

        width: calc(100% + 46px);

        height: 250px;

        margin: -28px -23px 22px;

    }

}
 
 


.service-box h3 {

    margin-bottom: 12px;
    font-weight: bold;
    color: #980209;
    text-align: center;
    font-family: "Playfair Display", serif;

    font-size: 22px;

    line-height: 1.3;

}


.service-box p {

    min-height: 52px;
    text-align: center;
    margin-bottom: 20px;

    color: #000;

    font-size: 16px;

}


.service-box a {

   display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    gap: 8px;
    color:#980209;
    font-size: 17px;
    font-weight: 700;

}


.service-box a:hover {

    color: var(--secondary);

    gap: 12px;

}


/* =====================================================
   WHY SECTION
===================================================== */

.why-section {

    background:

        linear-gradient(

            135deg,

            #fff 0%,

            #fbf4f7 100%

        );

}


.why-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}


.why-card {

    padding: 30px 25px;

    background: var(--white);

    border: 1px solid var(--border);

    transition: all 0.3s ease;

}


.why-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);

}


.why-card i {

    margin-bottom: 15px;

    color: #980209;

    font-size: 30px;

}


.why-card h3 {

    margin-bottom: 7px;

    color: #980209;

    font-family: "Playfair Display", serif;

    font-size: 20px;

}


.why-card p {

    margin: 0;
	color:#000;
    font-size: 15px;

}


/* =====================================================
   STATS
===================================================== */

.stats-section {

    padding: 55px 0;

    background: #980209;

}


.stats-wrapper {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}


.stat-item {

    position: relative;

    text-align: center;

}


.stat-item:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 10%;

    right: 0;

    width: 1px;

    height: 80%;

    background: rgba(255, 255, 255, 0.2);

}


.stat-item strong {

    display: block;

    color:#fcec00;

    font-family: "Playfair Display", serif;

    font-size: 42px;

    line-height: 1.1;

}


.stat-item span {

    display: block;

    margin-top: 7px;

    color: #fff;

    font-size: 15px;

}


/* =====================================================
   ABOUT
===================================================== */

.about-section {

    background: var(--white);

}


.about-image-wrap {

    position: relative;

    padding-left: 35px;

}


.about-image-wrap::before {

    content: "";

    position: absolute;

    top: 30px;
    right: 30px;

    width: 80%;
    height: 90%;

    border: 1px solid var(--gold);

}


.about-image-wrap img {

    position: relative;

    z-index: 1;

    width: 100%;

    

    object-fit: cover;

}


.about-features {

    display: grid;

    gap: 11px;

    margin: 25px 0 30px;

}


.about-features div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--dark);

    font-size: 14px;

    font-weight: 600;

}


.about-features i {

    width: 22px;
    height: 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #f5e8ed;

    color: var(--primary);

    border-radius: 50%;

    font-size: 11px;

}
 /* =====================================================
   SPECIALIZED GUIDANCE SERVICES
===================================================== */

.specialized-guidance-section {

    position: relative;

    background:#980209;

    overflow: hidden;

}


/* SERVICES GRID */

.specialized-services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


/* CARD */

.specialized-service-card {

    position: relative;

    min-height: 250px;

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #eadfe3;

    border-radius: 18px;

    transition: all 0.4s ease;

}


.specialized-service-card:hover {

    transform: translateY(-8px);

    border-color: #c59b5c;

    box-shadow: 0 18px 45px rgba(54, 20, 38, 0.12);

}


/* ROUND IMAGE */

.specialized-service-image {

    position: relative;

    flex: 0 0 150px;

    width: 150px;

    height: 150px;

    padding: 6px;

    border: 1px solid #c59b5c;

    border-radius: 50%;

}


.specialized-service-image::before {

    content: "";

    position: absolute;

    inset: 4px;

    border: 1px dashed rgba(107, 23, 57, 0.35);

    border-radius: 50%;

}


.specialized-service-image img {

    position: relative;

    z-index: 1;

    width: 100%;

    height: 100%;
 

    border-radius: 50%;

    transition: transform 0.5s ease;

}


.specialized-service-card:hover
.specialized-service-image img {

    transform: scale(1.08);

}


/* CONTENT */

.specialized-service-content {

    position: relative;

    flex: 1;

}

 

.specialized-service-content h3 {

    margin-bottom: 9px;

    color:#980209;
font-weight: bold;
    font-family: "Playfair Display", serif;

    font-size: 21px;

    line-height: 1.25;

}


.specialized-service-content p {

    margin-bottom: 14px;

    color: #000;

    font-size: 15px;

    line-height: 1.6;

}


.specialized-service-content a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #6b1739;

    font-size: 12px;

    font-weight: 700;

}


.specialized-service-content a i {

    transition: transform 0.3s ease;

}


.specialized-service-content a:hover {

    color: #c59b5c;

}


.specialized-service-content a:hover i {

    transform: translateX(5px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .specialized-services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .specialized-services-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .specialized-service-card {

        min-height: auto;

        padding: 20px;

        gap: 18px;

        border-radius: 15px;

    }


    .specialized-service-image {

        flex: 0 0 100px;

        width: 100px;

        height: 100px;

    }


    .specialized-service-content h3 {

        font-size: 19px;

    }


    .specialized-service-content p {

        font-size: 12px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .specialized-service-card {

        align-items: flex-start;

        gap: 14px;

        padding: 16px;

    }


    .specialized-service-image {

        flex: 0 0 120px;

        width: 120px;

        height: 120px;

    }


    .specialized-service-content h3 {

        font-size: 15px;

    }


    .specialized-service-content p {

        font-size: 11px;

    }

}


/* =====================================================
   PROCESS
===================================================== */

.process-section {

    background: var(--cream);

}


.process-card {

    position: relative;

    height: 100%;

    padding: 38px 30px;

    background: var(--white);

    border: 1px solid var(--border);

    text-align: center;

    transition: all 0.3s ease;

}


.process-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

}


.process-number {

    position: absolute;

    top: 15px;
    right: 20px;

    color: rgba(107, 23, 57, 0.08);

    font-family: "Playfair Display", serif;

    font-size: 42px;

    font-weight: 700;

}


.process-card > i {

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    background: #980209;

    color:#fff;

    border-radius: 50%;

    font-size: 26px;

}


.process-card h3 {

    margin-bottom: 8px;

    color: #980209;

    font-family: "Playfair Display", serif;

    font-size: 22px;

}


.process-card p {

    margin: 0;
	color:#000;
    font-size: 15px;

}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonial-section {

    background:#980209;

}


.testimonial-card {

    height: 100%;

    padding: 35px 30px;

    background: var(--cream);

    border: 1px solid var(--border);

}


.stars {

    margin-bottom: 17px;

    color:#980209;

    letter-spacing: 3px;

}


.testimonial-card p {

     

    margin-bottom: 20px;

    color: #000;

    

    font-size: 18px;

    line-height: 1.6;

}


.testimonial-card strong {

    color: #980209;

    font-size: 15px;

}


/* =====================================================
   FAQ
===================================================== */

.faq-section {

    background: var(--cream);

}


.faq-accordion {

    max-width: 850px;

    margin: 45px auto 0;

}


.faq-accordion .accordion-item {

    margin-bottom: 12px;

    border: 1px solid var(--border);

    border-radius: 0 !important;

    overflow: hidden;

}


.faq-accordion .accordion-button {

    padding: 20px 24px;

    background: var(--white);

    color: #980209;

    box-shadow: none;

    font-size: 15px;

    font-weight: 700;

}


.faq-accordion .accordion-button:not(.collapsed) {

    background: #980209;

    color: var(--white);

}


.faq-accordion .accordion-button::after {

    background-size: 15px;

}


.faq-accordion .accordion-body {

    padding: 20px 24px;

    background: var(--white);

    color:#000;

    font-size: 14px;

}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {

    padding: 70px 0;

    background:#980209;

}


.final-cta-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.final-cta-content span {

    display: block;

    margin-bottom: 8px;

    color: #fcec00;

    font-size: 30px;
text-align:center;
    font-weight: 700;

    letter-spacing: 2px;

}


.final-cta-content h2 {

    margin: 0;
text-align: center;
    color: var(--white);

    font-family: "Playfair Display", serif;
    line-height: 57px;
    font-size: 40px;
 

}
 

/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding: 75px 0 0;

    background: #000;

    color: #fff;

}


.footer-brand {

    display: inline-block;

    margin-bottom: 18px;

    color: #fcec00;

    font-family: "Playfair Display", serif;

    font-size: 32px;

    font-weight: 700;

}


.footer p {

    font-size: 14px;

}


.footer h4 {

    margin-bottom: 20px;

    color:#fcec00;

    font-family: "Playfair Display", serif;

    font-size: 20px;

}


.footer ul {

    display: grid;

    gap: 10px;

}


.footer li a {

    font-size: 14px;

}


.footer li a:hover {

    color: var(--gold-light);

}


.footer-social {

    display: flex;

    gap: 10px;

    margin-top: 20px;

}


.footer-social a {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    font-size: 13px;

}


.footer-social a:hover {

    background: var(--gold);

    color: var(--primary-dark);

    border-color: var(--gold);

}


.footer-bottom {

    margin-top: 55px;

    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    text-align: center;

}


.footer-bottom p {

    margin: 0;

    font-size: 13px;

}


/* =====================================================
   FLOATING BUTTONS
===================================================== */

.floating-buttons {

    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 999;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.floating-buttons a {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    font-size: 21px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);

}


.floating-call {

    background: #000;

}


.floating-whatsapp {

    background: #1ca965;

}


.floating-buttons a:hover {

    transform: scale(1.08);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {


    .section-space {

        padding: 75px 0;

    }


    .header-inner {

        min-height: 85px;

    }


    .header-actions {

        gap: 12px;

    }


    .header-action div {

        display: none;

    }


    .header-action > i {

        width: 42px;
        height: 42px;

    }


    .hero-slide {

        min-height: 580px;

    }


    .hero-content {

        max-width: 570px;

    }


    .intro-image-wrap {

        max-width: 620px;

        margin: 0 auto;

    }


    .about-image-wrap {

        max-width: 620px;

        margin: 0 auto;

    }


}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {


    html,
    body {

        width: 100%;

        max-width: 100%;

        overflow-x: hidden !important;

    }


    .container {

        width: 100%;

        max-width: 100%;

        padding-left: 15px;

        padding-right: 15px;

    }


    .section-space {

        padding: 60px 0;

    }


    /* TOP BAR */

    .top-bar-inner {

        min-height: auto;

        padding: 9px 0;

        justify-content: center;

    }


    .top-left {

        width: 100%;

        justify-content: center;

    }


    .top-left span {

        font-size: 20px;

    }


    .top-left span:nth-child(2) {

        display: none;

    }
 
 /* 3 Logo Image Section */
.three-logo-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
	 
	justify-content: space-between;

}
 
.logo-call-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
}

.logo-strip-image {
    width: 100%;
     padding: 10px;
	 justify-content: space-between;

     
}
    

/* Tablet */
@media (max-width: 991px) {
    .logo-strip-image {
        height: 125px;
    }
}

/* Mobile: each image full width */
@media (max-width: 767px) {
    .three-logo-section .row {
        display: block;
    }

    .three-logo-section .col-lg-4,
    .three-logo-section .col-md-4,
    .three-logo-section .col-sm-12 {
        width: 100%;
        max-width: 100%;
    }

    .logo-strip-image {
        width: 100%;
        height: auto;
        min-height: 100px;
        object-fit: contain;
    }
}
    /* MARQUEE */

    .marquee-content {

        gap: 25px;

        padding: 9px 13px;

    }


    .marquee-content span {

        font-size: 10px;

    }


    .marquee-content span::before {

        margin-right: 25px;

    }


    /* HERO */

    .hero-slide {

        min-height: 560px;

        background-position: center;

    }


    .hero-slide::before {

        background:

            linear-gradient(

                90deg,

                rgba(35, 10, 25, 0.94),

                rgba(54, 15, 37, 0.55)

            );

    }


    .hero-content {

        padding: 70px 0;

    }


    .hero-small-title {

        font-size: 10px;

        letter-spacing: 1.5px;

    }


    .hero-content h2 {

        font-size: 42px;

    }


    .hero-content p {

        font-size: 14px;

    }


    .hero-buttons {

        align-items: stretch;

        flex-direction: column;

        max-width: 230px;

    }


    .btn-primary-custom,
    .btn-outline-custom {

        width: 100%;

        padding: 12px 18px;

        font-size: 13px;

    }


    .carousel-control-prev,
    .carousel-control-next {

        display: none;

    }


    /* TITLES */

    .section-title {

        font-size: 36px;

    }


    .section-heading-center .section-title span {

        display: block;

    }


    /* IMAGE SECTIONS */

    .intro-image-wrap,
    .about-image-wrap {

        padding: 0 15px 0 0;

    }


    .intro-image-wrap::before,
    .about-image-wrap::before {

        top: 20px;
        left: 20px;

        width: 88%;
        height: 90%;

    }

 

    .experience-box {

        right: 0;

        bottom: 20px;

        width: 120px;

        padding: 14px 10px;

    }


    .experience-box strong {

        font-size: 30px;

    }


    .experience-box span {

        font-size: 10px;

    }


    .about-image-wrap {

        padding-left: 15px;

        padding-right: 0;

    }


    .about-quote {

        left: 0;

        bottom: 20px;

        width: 190px;

        padding: 15px;

    }


    .about-quote p {

        font-size: 14px;

    }


    /* WHY */

    .why-grid {

        grid-template-columns: 1fr;

    }


    /* STATS */

    .stats-wrapper {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px 15px;

    }


    .stat-item:not(:last-child)::after {

        display: none;

    }


    .stat-item strong {

        font-size: 34px;

    }


    .stat-item span {

        font-size: 11px;

    }


    /* SERVICES */

    .service-box {

        padding: 28px 23px;

    }


    .service-box h3 {

        font-size: 20px;

    }


    .service-box p {

        min-height: auto;

    }


    /* CTA */

    .final-cta-content {

        align-items: flex-start;

        flex-direction: column;

    }


    .final-cta-content h2 {

        font-size: 34px;

    }


    .final-cta-content .btn-primary-custom {

        width: auto;

    }


    /* CONTACT */

    .contact-form {

        padding: 22px 17px;

    }


    /* FOOTER */

    .footer {

        padding-top: 55px;

    }


    .footer-bottom {

        margin-top: 35px;

    }


    /* FLOATING */

    .floating-buttons {

        right: 14px;

        bottom: 14px;

    }


    .floating-buttons a {

        width: 46px;
        height: 46px;

        font-size: 18px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {


    .brand-content h1 {

        font-size: 20px;

    }


    .brand-content span {

        font-size: 7px;

    }


    .brand-logo {

        width: 43px;
        height: 43px;

        flex-basis: 43px;

    }


    .header-action > i {

        width: 34px;
        height: 34px;

    }


    .hero-content h2 {

        font-size: 36px;

    }


    .section-title {

        font-size: 32px;

    }


}