html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px; /* Adjust to your navbar height */
}
/* ==========================================
   HERO IMAGE SLIDER
========================================== */

.hero-slider {
    width: 100%;
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    margin: 90;
    padding: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.65),
        rgba(0,0,0,.35)
    );
    z-index: 3;
}

/* ==========================================
   HERO CONTENT
========================================== */

.hero-content {
    position: relative;
    z-index: 4;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;

    padding: 0 24px;
}

.hero-subtitle,
.hero-content h1 {
    opacity: 0;
    transform: translateY(35px);
}

/* Animation */

.hero-slide.active .hero-subtitle {
    animation: fadeUp .8s ease forwards;
    animation-delay: .2s;
}

.hero-slide.active .hero-content h1 {
    animation: fadeUp .8s ease forwards;
    animation-delay: .5s;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ==========================================
   TYPOGRAPHY
========================================== */

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: rgba(255,255,255,.9);
}

.hero-content h1 {
    max-width: 1100px;
    margin: 0;

    font-size: 40px;
    line-height: 1.15;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 2px;
}
/* ==========================================
   HERO SLIDER
========================================== */

.hero-slider {
    position: relative;

    width: 100%;

    /*
    Fluid height:
    - 400px minimum
    - scales with screen width
    - 700px maximum
    */
    height: clamp(400px, 55vw, 700px);

    min-height: 0;

    overflow: hidden;
}


/* ==========================================
   HERO SLIDE
========================================== */

.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ==========================================
   HERO OVERLAY
========================================== */

.hero-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}


/* ==========================================
   HERO CONTENT
========================================== */

.hero-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 1200px;

    padding: clamp(16px, 3vw, 50px);

    text-align: center;

    box-sizing: border-box;
}


/* ==========================================
   HERO TITLE
   FLUID RESPONSIVE
========================================== */

.hero-content h1 {
    margin: 0;

    /*
    Minimum: 26px
    Fluid: 5vw
    Maximum: 64px
    */

    font-size: clamp(26px, 5vw, 64px);

    font-weight: 300;

    line-height: 1.15;

    text-align: center;

    color: #fff;

    /*
    Prevents the title from becoming
    unnecessarily wide
    */

    max-width: 100%;

    margin-left: auto;
    margin-right: auto;
}


/* ==========================================
   HERO SUBTITLE
========================================== */

.hero-subtitle {
    margin-top: clamp(8px, 1.5vw, 18px);

    margin-bottom: clamp(10px, 1.5vw, 20px);

    font-size: clamp(10px, 1.15vw, 18px);

    line-height: 1.4;

    letter-spacing: clamp(1px, 0.2vw, 3px);

    color: #fff;

    text-align: center;
}


/* ==========================================
   HERO BUTTON / CTA
   If you have one
========================================== */

.hero-content .hero-btn {
    margin-top: clamp(12px, 2vw, 25px);

    padding: clamp(9px, 1vw, 14px)
             clamp(18px, 2vw, 30px);

    font-size: clamp(12px, 1vw, 15px);
}


/* ==========================================
   HERO NAVIGATION
========================================== */

.hero-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: clamp(38px, 4vw, 54px);
    height: clamp(38px, 4vw, 54px);

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(0, 0, 0, .35);

    color: #fff;

    cursor: pointer;

    z-index: 10;

    transition: .3s ease;
}


/* Left */

#heroPrevBtn {
    left: clamp(12px, 2vw, 30px);
}


/* Right */

#heroNextBtn {
    right: clamp(12px, 2vw, 30px);
}


/* Hover */

.hero-arrow:hover {
    background: #ee5149;

    transform: translateY(-50%) scale(1.08);
}


/* ==========================================
   HERO DOTS
========================================== */

.hero-slider-nav {
    position: absolute;

    bottom: clamp(15px, 2vw, 30px);

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    gap: clamp(5px, .6vw, 9px);

    z-index: 10;
}

.hero-dot {
    width: clamp(7px, .7vw, 10px);

    height: clamp(7px, .7vw, 10px);

    border-radius: 50%;

    background: rgba(255, 255, 255, .5);

    cursor: pointer;

    transition: .3s ease;
}

.hero-dot.active {
    background: #ee5149;

    transform: scale(1.2);
}


/* ==========================================
   TABLET / SMALL SCREEN
   Only layout changes here.
   NO FONT-SIZE CHANGES.
========================================== */

@media (max-width: 768px) {

    .hero-slider {
        width: 100%;

        height: auto;

        min-height: 0;

        aspect-ratio: 16 / 9;

        margin: 30px auto 20px;

        overflow: hidden;
    }


    .hero-slide {
        background-size: contain;

        background-position: center;

        background-repeat: no-repeat;

        background-color: #000;
    }


    .hero-slide,
    .hero-overlay {
        border-radius: 0;
    }


    .hero-content {
        width: 92%;

        padding: clamp(12px, 4vw, 24px);
    }

}


/* ==========================================
   VERY SMALL DEVICES
   Only adjusts spacing.
   Title remains FLUID.
========================================== */

@media (max-width: 480px) {

    .hero-slider {
        width: 100%;

        height: auto;

        min-height: 0;

        aspect-ratio: 16 / 9;

        margin: 70px auto 0px;

        border-radius: 0;
    }


    .hero-content {
        width: 94%;

        padding: 12px;
    }


    .hero-slide,
    .hero-overlay {
        border-radius: 0;
    }

}
/* =====================================================
   FEATURED PROJECTS
===================================================== */


/* ================= FEATURED PROJECTS ================= */
/* ===============================
   FEATURED PROJECTS
================================= */

* {
    box-sizing: border-box;
}

.fp-section {
    width: 100%;
    padding: 70px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fp-heading {
    text-align: center;
    margin-bottom: 45px;
}

.fp-heading h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 200;
    letter-spacing: 0px;
    color: #2f2f2f;
}

.fp-underline {
   display: inline-block;
    width: 50px;
    height: 2px;
    background: #807f7f;
}

.fp-wrapper {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}

.fp-track-container {
    width: 100%;
    overflow: hidden;
}

.fp-track {
    margin-top:20px;
    display: flex;
    gap: 20px;
    transition: transform .6s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

/* ===============================
   CARD
================================= */

.fp-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: #ffffff;
    border: 1px solid #ece7df;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .35s ease;
    align-items: center;
}

.fp-card:hover,
.fp-card.fp-active {
    border-color: #d9603b;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* ===============================
   IMAGE
================================= */

.fp-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.fp-card-image img {
    padding: 10px 10px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

/* .fp-card:hover .fp-card-image img {
    padding: 10px 10px;
    border-radius: 20px;
    transform: scale(1.06);
    border-radius: 20px;
} */
.fp-card:hover .fp-card-image img {
    padding: 10px 10px;
    border-radius: 14px;
    transform: scale(1);
    border-radius: 20px;
}

/* ===============================
   CONTENT
================================= */

.fp-card-text {
    flex: 1;
    padding: 20px;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #000000;
    text-align: center;
}
.fp-card-text span{
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #000000;
    text-align: center;
}
/* ===============================
   BUTTON
================================= */

.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 24px 24px;
    padding: 12px 26px;
    border: 1px solid #f86f68;
    border-radius: 20px;
    text-decoration: none;
    color: #d9603b;
    font-weight: 600;
    transition: .3s ease;
    width:190px;
    height:40px;
    align-items:center;
    justify-content: center;
}

.fp-btn:hover {
    background: #ee5149;
    color: #fff;
}

.fp-arrow {
    transition: transform .3s ease;
}

.fp-btn:hover .fp-arrow {
    transform: translateX(4px);
}

/* ===============================
   CONTROLS
================================= */

.fp-controls {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.fp-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: .3s;
}

.fp-nav-btn:hover {
    color: #d9603b;
}

.fp-nav-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.fp-next-btn {
    color: #222;
}

/* ===============================
   DOTS
================================= */

.fp-dots {
    display: flex;
    gap: 10px;
}

.fp-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #c7c7c7;
    background: transparent;
    cursor: pointer;
    transition: .3s;
}

.fp-dot:hover {
    border-color: #d9603b;
}

.fp-dot.fp-active {
    background: #d9603b;
    border-color: #d9603b;
    transform: scale(1.15);
}

/* ===============================
   TABLET
================================= */

@media (max-width: 991px) {

    .fp-track {
        gap: 18px;
    }

    .fp-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .fp-heading h2 {
        font-size: 26px;
    }

}

/* ===============================
   MOBILE
================================= */

@media (max-width: 767px) {

    .fp-section {
        padding: 50px 16px;
    }

    .fp-track {
        gap: 0;
    }

    .fp-card {
        flex: 0 0 100%;
    }

    .fp-heading {
        margin-bottom: 30px;
    }

    .fp-heading h2 {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .fp-card-text {
        font-size: 14px;
        padding: 20px;
    }

    .fp-btn {
        margin: 0 20px 20px;
        width: calc(100% - 40px);
        justify-content: center;
    }

    .fp-controls {
        gap: 15px;
        margin-top: 30px;
    }

}





/*================= BEYOND THINKING =================*/
/*=========================================BEYOND THINKING =========================================*/
/*=========================================
  BEYOND THINKING SECTION
=========================================*/

#beyond-thinking{
    width:82%;
    height:600px;
    margin:0 auto;
    position:relative;
    overflow:hidden;
    border-radius:14px;
}

#beyond-thinking img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center 50%;
    border-radius:14px;
}

/*=========================================
  DARK OVERLAY
=========================================*/

#beyond-thinking::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    border-radius:14px;
    z-index:1;
}

/*=========================================
  TEXT OVERLAY
=========================================*/

.beyond-overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90%;
    text-align:center;
    z-index:2;
}

.beyond-overlay h2{
    margin:0;
    font-size:28px;
    font-weight:400;
    line-height:1.2;
    letter-spacing:6px;
    text-transform:uppercase;
    color:#fff;
}

.beyond-overlay h2 span{
    color:#fff;
}

/*=========================================
  TABLET
=========================================*/

@media (max-width:991px){

    #beyond-thinking{
        width:90%;
        height:450px;
        border-radius:14px;
    }

    #beyond-thinking img,
    #beyond-thinking::before{
        border-radius:14px;
    }

    .beyond-overlay{
        width:92%;
    }

    .beyond-overlay h2{
        font-size:22px;
        letter-spacing:4px;
    }

}

/*=========================================
  MOBILE
=========================================*/

@media (max-width:768px){

    #beyond-thinking{
        width:90%;
        height:320px;
        border-radius:14px;
    }

    #beyond-thinking img,
    #beyond-thinking::before{
        border-radius:14px;
    }

    .beyond-overlay{
        width:92%;
    }

    .beyond-overlay h2{
        font-size:20px;
        letter-spacing:2px;
    }

}

/*=========================================
  SMALL MOBILE
=========================================*/

@media (max-width:480px){

    #beyond-thinking{
        width:90%;
        height:260px;
        border-radius:14px;
    }

    #beyond-thinking img,
    #beyond-thinking::before{
        border-radius:14px;
    }

    .beyond-overlay{
        width:92%;
    }

    .beyond-overlay h2{
        font-size:18px;
        letter-spacing:1px;
    }

}









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

.services-section{
    width:100%;
    padding:70px 20px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.services-heading{
    text-align:center;
    margin-bottom:45px;
}

.services-heading h2{
    margin:0;
    font-size:30px;
    font-weight:300;
    letter-spacing:1px;
    color:#2f2f2f;
}

.services-underline{
   display: inline-block;
    width: 50px;
    height: 2px;
    background: #807f7f;
}

.services-wrapper{
    width:100%;
    max-width:1200px;
    overflow:hidden;
}

.services-track-container{
    width:100%;
    overflow:hidden;
}

.services-track{
    margin-top:20px;
    display:flex;
    gap:20px;
    transition:transform .6s cubic-bezier(.22,.61,.36,1);
    will-change:transform;
}

/* ===============================
   CARD
================================= */

.services-card{
     flex: 0 0 calc((100% - 40px) / 3);
    background: #ffffff;
    border: 1px solid #ece7df;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .35s ease;
    align-items: center;
}

/* .services-card:hover,
.services-card.services-active{
    border-color:#d9603b;
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
} */
.services-card:hover{
    border-color:#d9603b;
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* ===============================
   IMAGE
================================= */

.services-card-image{
    padding: 10px 10px;
    width:100%;
    aspect-ratio:4/3;
    overflow:hidden;
}


.services-card-image img{
    padding: 0px 0px;
    border-radius: 14px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.services-card:hover .services-card-image img{
       padding: 0px 0px;
    border-radius: 14px;
    transform: scale(1);
}

/* ===============================
   TITLE
================================= */

.services-card-title{
    margin:22px 24px 10px;
    font-size:20px;
    font-weight:600;
    text-align:center;
    color:#222;
}

/* ===============================
   TEXT
================================= */

.services-card-text{
    flex:1;
    margin:0;
    padding:0 24px;
    font-size:15px;
    line-height:1.7;
    color:#000000;
    text-align:center;
}

/* ===============================
   BUTTON
================================= */

.services-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin:24px;
    padding:12px 26px;
    border:1px solid #f86f68;
    border-radius:20px;
    color:#d9603b;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    height:40px;
    width:190px;
    justify-content:center;

}

.services-btn:hover{
    background:#ee5149;
    color:#fff;
}

.services-arrow{
    transition:.3s;
}

.services-btn:hover .services-arrow{
    transform:translateX(4px);
}

/* ===============================
   CONTROLS
================================= */

.services-controls{
    margin-top:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.services-nav-btn{
    background:none;
    border:none;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    color:#333;
    transition:.3s;
}

.services-nav-btn:hover{
    color:#d9603b;
}

.services-nav-btn:disabled{
    opacity:.4;
    cursor:not-allowed;
}

.services-next-btn{
    color:#222;
}

/* ===============================
   DOTS
================================= */

.services-dots{
    display:flex;
    gap:10px;
}

.services-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    border:2px solid #d9603b;
    background:transparent;
    cursor:pointer;
    transition:.3s;
}

.services-dot:hover{
    border-color:#d9603b;
}

.services-dot.services-active{
    background:#d9603b;
    border-color:#d9603b;
    transform:scale(1.15);
}

/* ===============================
   TABLET
================================= */

@media (max-width:991px){

    .services-track{
        gap:18px;
    }

    .services-card{
        flex:0 0 calc((100% - 18px)/2);
    }

    .services-heading h2{
        font-size:26px;
    }

}

/* ===============================
   MOBILE
================================= */

@media (max-width:767px){

    .services-section{
        padding:50px 16px;
    }

    .services-track{
        gap:0;
    }

    .services-card{
        flex:0 0 100%;
    }

    .services-heading{
        margin-bottom:30px;
    }

    .services-heading h2{
        font-size:22px;
        letter-spacing:1px;
    }

    .services-card-title{
        font-size:20px;
    }

    .services-card-text{
        font-size:14px;
    }

    .services-btn{
        width:calc(100% - 48px);
        justify-content:center;
    }

    .services-controls{
        gap:16px;
        margin-top:30px;
    }

}









/*=========================
MISSION SECTION
=========================*/
.mission-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(1200px, 92%);
    margin: 0 auto;
    text-align: center;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 300;
    color: #2f2f2f;
    margin: 0;
}

.section-heading span {
    display: block;
    width: 50px;
    height: 2px;
    background: #807f7f;
    margin-top: 12px;
}


/*=========================
GRID
=========================*/

.mission-wrapper{

display: grid;
grid-template-columns: 1fr 1.03fr; /* Scales perfectly without overflowing */
align-items: center;
gap: 50px;
}



/*=========================
VISION SECTION
=========================*/

.vision-section{
    width:100%;
    height:auto;
    margin:0;
    padding:0;
    text-align:center;
}


.vision-content{
    width:90%;
    max-width:900px;
    margin:0 auto;
}


.vision-content p{
    margin:20px 0 0;
    font-size:18px;
    line-height:1.8;
    font-weight:300;
    color:#555;
}



/*=========================
TABLET
=========================*/

@media(max-width:992px){

    .vision-content{
        width:90%;
    }


    .vision-content p{
        font-size:16px;
        line-height:1.7;
    }

}



/*=========================
MOBILE
=========================*/

@media(max-width:576px){

    .vision-section{
        padding:0;
    }


    .vision-content{
        width:92%;
    }


    .vision-content p{
        margin-top:15px;
        font-size:14px;
        line-height:1.7;
    }

}


  /* BUILD PROJECT AND THE VIDEO SECTION IS HER */
  /* BUILD PROJECT AND THE VIDEO SECTION IS HER */
  /* BUILD PROJECT AND THE VIDEO SECTION IS HER */

/*================= LET'S BUILD =================*/


#lets-build{
    width: 60%;
    height: auto;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 14px;
}

#lets-build img{
    padding: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    /* Rounded corners on the image */
    border-radius: 14px;

    transition: transform .8s ease, filter .8s ease;
}

#lets-build:hover img{
    transform: scale(1.06);
    filter: brightness(1.05);
}

/* Tablet */
@media (max-width:992px){

    #lets-build{
        width:85%;
        height:auto;
        margin:30px auto;
    }

}


/* Mobile */
@media (max-width:768px){

    #lets-build{
        width:92%;
        height:auto;
        margin:20px auto;
        border-radius:12px;
    }

    #lets-build img{
        width:100%;
        height:auto;
        object-fit:contain;
        border-radius:12px;
    }

}


/* ================= CTA ================= */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(30px, 8vw, 0px) 0px;
    color: #2d2b2b;
}

.cta-content h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #aa7c3f;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid #ee5149;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: #ee5149;
}

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

/* Primary Button */
.btn-primary {
    background: #ee5149;
    color: #fff;
}

.btn-primary:hover {
    background: #d9443d;
    border-color: #d9443d;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons a {
        width: 240px;
    }
}

/* ================= Tablet ================= */

@media (max-width:991px){

    .cta-content{
        padding:70px 20px;
    }

    .cta-buttons{
        gap:16px;
    }

}

/* ================= Mobile ================= */

@media (max-width:768px){

    .cta-content{
        padding:60px 20px;
    }

    .cta-content h2{
        font-size:2.3rem;
        line-height:0.2;
    }

    .cta-content p{
        font-size:1rem;
        margin-bottom:30px;
    }

    .cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .cta-buttons a{
        width:240px;
        padding:14px 20px;
    }

}

/* ================= Small Mobile ================= */

@media (max-width:480px){

    .cta-content{
        padding:50px 15px;
    }

    .cta-content h2{
        font-size:1rem;
    }

    .cta-content p{
        font-size:0.65rem;
    }

    .cta-buttons a{
        width:100%;
        max-width:240px;
        font-size:.95rem;
    }

}


/* ===========================================
   Back To Top Button
=========================================== */

#backToTop{
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    border-radius: 50%;
    background: #ee5149;
    color: #ffffff;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 0px 0px rgba(238, 81, 73, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
}

#backToTop.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover{
    background: #d93d35;
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(238, 81, 73, 0.45);
}

#backToTop:active{
    transform: scale(0.95);
}

#backToTop svg{
    width: 22px;
    height: 22px;
    stroke: #fff;
    transition: transform .3s ease;
}

#backToTop:hover svg{
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width:768px){
    #backToTop{
        width:50px;
        height:50px;
        right:20px;
        bottom:20px;
    }
}

