@font-face {
    font-family: myFont1;
    src: url(../fonts/Outfit.ttf);
}

@font-face {
    font-family: codeverse;
    src: url(../fonts/PCMerchisDEMO-Expanded-BF67a48db3781cc.otf);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;


}


::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #e63946;
}

/* Handle on hover */
/* ::-webkit-scrollbar-thumb:hover {} */

/* --------------smooth scroll whole page-------------------- */

/* Initial hidden state */
[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    /* Slightly below its original position */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Active state when the element is in view */
[data-scroll].show {
    opacity: 1;
    transform: translateY(0);
    /* Reset position */
}

/* --------------smooth scroll whole page end-------------------- */


body {
    background-color: #000000;
}
html {
    scroll-behavior: smooth;
    
}
.main-header-section {
    background-color: #fede00;
  
}


/* -----------------------ham-menu-------------------- */

.hamburger {
    background-color: white;
    border-radius: 50px;
    -webkit-box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
    -moz-box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
    box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
}

.ham-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0.5rem;
    cursor: pointer;
    transition: width 0.3s ease;
    /* Smooth transition */
    width: 65px;
    /* Default width */
    height: 65px;

}

.ham-menu:hover {
    width: 160px;
    /* Expanded width on hover */

}


.ham-icon-img img {
    width: 50px;
    height: 50px;

}

.ham-icon i {
    color: #e63946;
    font-size: 48px;
    margin-left: 0;
    text-align: center;

}

.hamburger:hover {
    background: #000000;
}

.ham-icon {
    display: none;
    transition: opacity 0.3s ease;
    background: #ffffff;
    border-radius: 50px;
    padding: 0 .3rem;

}

.ham-menu:hover .ham-icon {
    display: block;

}

.ham-menu:hover .ham-icon-img {
    /* margin-left: -3rem; */
    display: none;
    position: relative;


}



.shape {
    width: 400px;
    height: 400px;
    border: 1px solid blue, 1px solid blue, 1px solid blue 1px solid blue 1px solid blue;
    background-position: center;
    background: url(../images/n2.jpg) no-repeat;
    background-size: contain;

    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.nav-social-con {
    display: flex;
    justify-content: space-between;
}

.main-contact {
    display: flex;
    gap: 1rem;
    margin-left: 3rem;

}

.nav-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5rem;
}


.nav-socials li {
    list-style: none;
}

.nav-socials li a i {
    padding: 0.5rem;
}


.nav-socials li a {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    margin-left: 10px;
    background-color: #D46FCF;
    /* border: 1px solid rgb(106, 106, 235); */
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease-out;
}

.nav-socials li a:hover {
    background-color: #7B47C5;
    color: #ffffff;
    border: none;
}

.nav-socials li a i {
    color: #ffffff;
}






.nav-logo1 img {
    width: 100px;
    height: 100px;

}

.nav-logo img {
    width: 200px;
    height: 200px;
    margin-left: 1rem;

}

nav {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 3rem;
    align-items: center;

}

.navigation-menu {
    display: flex;
    justify-content: space-between;
    margin: 3rem;
    gap: 3rem;
    align-items: center;
}

.navitems {
    display: flex;
    flex-direction: column;

    /* gap: 1rem; */
}



.navitems li {
    list-style: none;
    display: inline-block;
    height: 80px;
    position: relative;

}


.navitems li a {
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 55px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-family: "Archivo Black", sans-serif;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.navitems li a:hover {
    animation: smoothHover 0.5s forwards;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: none;
}



@keyframes smoothHover {
    0% {
        background-image: none;
        -webkit-text-fill-color: white;
        font-weight: 400;
        letter-spacing: 3px;
        font-size: 55px;
        font-style: normal;
    }

    100% {
        background-image: url(../images1/download.jpg);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        font-weight: 800;
        letter-spacing: 10px;
        font-size: 70px;
    }
}

.navigation-main-modal {
    display: flex;
    display: none;
    justify-content: center;
}

.navigation-main-modal.show {
    display: block;
    /* animation: fadeIn 0.5s ease-out; */

}



.navigation-modal {
    position: fixed;
    /* Stay in place */
    z-index: 1001;
    /* Sit on top */
    left: 0;
    top: -5%;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 800px;


}

.nav-modal-content {
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/batthern.png");
    margin: 4rem 1rem;
    padding: 20px;
    width: 100%;
    border-radius: 8px;
}

.nav-close-button {
    color: #aaa;
    float: right;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
}

.nav-close-button:hover,
.nav-close-button:focus {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
}

.contact-btn {
    display: flex;
    justify-content: center;
}


.button {
    pointer-events: auto;
    cursor: pointer;
    padding: 0.78rem 2rem;
    background: radial-gradient(circle at 3% 7.4%, rgb(0, 144, 243) 0%, rgb(0, 86, 240) 90%);
    border: none;
    outline: none;
    font-family: myFont1;
    font-size: 18px;
    position: relative;
}

.button::before,
.button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.button--telesto {
    overflow: hidden;
    font-weight: 800;
    font-family: myFont1;

    font-style: italic;
    font-size: 1.15rem;
    color: #fff7f7;
}

.button--telesto span {
    display: block;
    position: relative;
    z-index: 1;

}

.button--telesto>.contact-btn span {
    overflow: hidden;
    mix-blend-mode: difference;
}

.button--telesto:hover>.contact-btn span>.contact-btn span {
    animation: MoveRightInitial 0.1s forwards, MoveRightEnd 0.3s forwards 0.2s;
}

@keyframes MoveRightInitial {
    to {
        transform: translate3d(105%, 0, 0);
    }
}

@keyframes MoveRightEnd {
    from {
        transform: translate3d(-100%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.button--telesto::before,
.button--telesto::after {
    content: '';
    background: #010203;
}

.button--telesto::before {
    width: 135%;
    -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    transform: translate3d(-100%, 0, 0);
}

.button--telesto:hover::before {
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);

}

.button--telesto::after {
    width: 105%;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.button--telesto:hover::after {
    transform: translate3d(0, 0, 0);
    transition: transform 0.01s 0.3s cubic-bezier(0.7, 0, 0.2, 1);

}

/* --------------------modal-whatsapp-expert-button----------------------- */

.expert-modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;

}

/* Expert Modal Content */
.expert-modal-content {
    background: #25D366;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.expert-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Expert WhatsApp Links */
.expert-whatsapp-links {
    display: block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;

}

.expert-whatsapp-links a{
    color: #707070;
    text-decoration: none;
    background: #2dff7a;
    padding: 1px 9px;
    border-radius: 15px;
}

.expert-whatsapp-link:hover {
    background: #1eb656;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------modal-whatsapp-expert-button-end---------------------- */




/* ===========================start of :: trms-hero=========================== */


.trm-hro-hero {
    background: #fede00;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;

}

.trm-hro-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.trm-hro-left {
    /* flex: 1 1 50%; */
}

.trm-hro-title {
    font-size: 58px;
    font-weight: 900;
    color: #0e1a2b;
    position: relative;
}

.trm-hro-title span {
    color: #e63946;
    font-size: 58px;
    z-index: 9;

}

.trm-hro-desc {
    font-size: 18px;
    color: #444;
    /* margin-bottom: 30px; */
    max-width: 500px;
}

.trm-hro-btn {
    padding: 14px 28px;
    background: #0057ff;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    font-weight: 600;
}

.trm-hro-btn:hover {
    background: #003fcc;
}

.trm-hro-right {
    flex: 1 1 40%;
    text-align: center;
}

.trm-hro-right img {
    width: 500px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Decorative Background */
.trm-hro-hero::before,
.trm-hro-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.8;
}

.trm-hro-hero::before {
    width: 300px;
    height: 300px;
    background: #15151599;
    top: 100px;
    left: -100px;
}

.trm-hro-hero::after {
    width: 200px;
    height: 200px;
    background: #00000086;
    bottom: -60px;
    right: -60px;
}

@media (max-width: 768px) {
    .trm-hro-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .trm-hro-left,
    .trm-hro-right {
        flex: 1 1 100%;
    }

    .trm-hro-title {
        font-size: 36px;
    }

    .trm-hro-desc {
        font-size: 16px;
    }
}

/* ===========================end of :: trms-hero=========================== */





/* ==========================start of :: terms & Conditions========================== */


:root {
    --bg: #0f0f1a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --text: #d1d1d1;
    --highlight: #fede00;
    --accent: #e63946;
    --radius: 16px;
}


.trms-header {
    text-align: center;
    padding: 3rem 1rem 1rem;
    font-family: "Poppins", sans-serif;

}

.trms-header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

.trms-header p {
    font-size: 1.1rem;
    color: var(--highlight);
    margin-top: 0.5rem;
}

.trms-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.03);
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    z-index: 50;
}

.trms-nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius);
}

.trms-nav a:hover {
    background-color: var(--highlight);
    color: black;
}

.trms-terms {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    gap: 2rem;
}

.trms-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
}

.trms-card:hover {
    transform: translateY(-5px);
}

.trms-card h2 {
    color: var(--highlight);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.trms-card p {
    color: var(--text);
    font-size: 1.05rem;
}

.trms-footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #777;
    border-top: 1px solid var(--border);
}





/* ==========================end of :: terms & Conditions========================== */



























































/* ----------------------------faq section-------------------------- */

.faq-container {

    display: flex;
    justify-content: space-between;
    margin: 0 5rem;
}
.faq-main-section {
    padding: 2rem 0 1rem 0;
    background-color: #000;
    /* opacity: 0.8; */
   
    background-color: #e63946;
    background-image: url("https://www.transparenttextures.com/patterns/fabric-of-squares.png");

}

.faq-main-section h1 {
    text-align: center;
    font-family: "Poppins", sans-serif;

     color: #000000;
    font-size: 60px;
    padding: 1rem 10rem 3rem 10rem;
    font-weight: 900;
}

.faq-sub-section {

    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.faq-column1 {
    width: 48%;

}

.faq-column2 {
    width: 48%;
}

.faq-column1 .faq {
    border-bottom: 1px solid #fff;
    padding: 15px 0;
    margin-right: 1rem;
}



.faq-column2 .faq {
    border-bottom: 1px solid #fff;
    padding: 15px 0;
    margin-left: 1rem;

}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question p {
    font-family: "Poppins", sans-serif;

    font-size: 18px;
    font-weight: 400;
}

.faq-question span {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    font-size: 30px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.3s ease-in-out;

}

.faq-answer p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 16px;
}


.faq.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    /* padding: 10px 15px; */
}

.faq.active .faq-question span {
    transform: rotate(180deg);
}

/* ----------------------------end faq section-------------------------- */


/* ================================contact-us-section================================== */


.con-main-section {
    display: flex;
    justify-content: center;
    padding: 5rem 0 5rem 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle farthest-side at 0% 50%,
            #282828 23.5%,
            rgba(255, 170, 0, 0) 0) 21px 30px,
        radial-gradient(circle farthest-side at 0% 50%,
            #2c3539 24%,
            rgba(240, 166, 17, 0) 0) 19px 30px,
        linear-gradient(#282828 14%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 85%,
            #282828 0) 0 0,
        linear-gradient(150deg,
            #282828 24%,
            #2c3539 0,
            #2c3539 26%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 74%,
            #2c3539 0,
            #2c3539 76%,
            #282828 0) 0 0,
        linear-gradient(30deg,
            #282828 24%,
            #2c3539 0,
            #2c3539 26%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 74%,
            #2c3539 0,
            #2c3539 76%,
            #282828 0) 0 0,
        linear-gradient(90deg, #2c3539 2%, #282828 0, #282828 98%, #2c3539 0%) 0 0 #282828;
    background-size: 40px 60px;
}

.contact-container {
    display: flex;
    width: 90%;
    max-width: 1100px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;

}

/* Left Side - Contact Info */
.contact-info {
    background: #fff387;
    padding: 40px;
    flex: 1;
}

.contact-info h2 {
    color: #e63946;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info p {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 22px;
    background: #e63946;
    color: #fefefe;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}

.contact-detail h3 {
    font-size: 16px;
    color: #e63946;
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* Social Links */
.con-social-links h3 {
    font-size: 16px;
    color: #e63946;
    margin-bottom: 10px;
}

.con-social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #e63946;
    font-size: 20px;
    transition: 0.3s;
}

.con-social-links a:hover {
    color: #000;
}

/* Right Side - Contact Form */
.contact-form {
    padding: 40px;
    flex: 1;
}

.contact-form h2 {
    color: #333;
    font-size: 27px;
    margin-bottom: 20px;
    text-align: center;
}

.con-form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.con-form-group input {
    width: 100%;
    border: none;
    background: #fedc003c;
    padding: 1rem;
    border-radius: 40px;
    outline: none;
    font-family: "Poppins", sans-serif;

}



.con-form-foot textarea {
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    font-family: "Poppins", sans-serif;

}

.con-form-foot textarea {
    resize: none;
}

.con-form-foot button {
    background: #fede00;
    color: #000;
    border: none;
    padding: 12px;
    font-size: 16px;
    width: 100%;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.con-form-foot button:hover {
    background: #e63946;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 30px;
    }
}

/* ================================end-contact-us-section================================== */


/* --------------------------------whatsapp-chat-end----------------------------------------- */

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon {
    background: #25D366;
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.whatsapp-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
    flex-direction: column;
    min-width: 180px;
}

.whatsapp-popup p {
    margin: 0;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.whatsapp-popup a {
    text-decoration: none;
    color: #25D366;
    font-weight: bold;
    padding: 8px;
    display: block;
    text-align: center;
    transition: background 0.3s ease;
}

.whatsapp-popup a:hover {
    background: #f0f0f0;
}


/* --------------------------------whatsapp-chat-end----------------------------------------- */

/* -----------------back-to-top and back-to-bottom------------------------------------ */


/* Back to Top Button (Right Side) */
.back-top-btn {
    position: fixed;
    bottom: 90px;
    /* Above WhatsApp */
    right: 30px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    z-index: 1001;
}

/* Back to Bottom Button (Left Side) */
.back-bottom-btn {
    position: fixed;
    top: 90px;
    /* Appears on the left side */
    left: 30px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(-20px);
    z-index: 1001;
}

/* Show buttons when scrolled */
.back-top-show {
    opacity: 1;
    transform: translateY(0);
}

.back-bottom-show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects */
.back-top-btn:hover,
.back-bottom-btn:hover {
    background: #555;
}


/* -----------------back-to-top and back-to-bottom-end----------------------------------- */























/* -------------footer-starts-------------- */

.footer {
    background: #000000;
    color: #fede00;
    text-align: center;
    /* padding: 30px 0; */
    font-family: "Poppins", sans-serif;

    border: 2px solid #fede00;
}

/* Top Section */
.top-section {
    display: flex;
    justify-content: center;
}

.box {
    flex: 1;
    padding: 4rem 2rem;
    font-size: 45px;
    font-weight: bold;
    border: 1px solid #fede00;
    text-align: center;
}





.box a {
    text-decoration: none;
    color: #fede00;
    transition: all 0.3s ease-in-out;
}

.box:hover {
    background: #fede00;
}

.box:hover a {
    color: #000;
}

/* Middle Section */
.middle-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    flex-wrap: wrap;
}

/* Newsletter Styling */
.newsletter {
    width: 40%;
    text-align: left;
    position: relative;
}

.newsletter form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.newsletter input {
    border: none;
    background: transparent;
    border-bottom: 1px solid #fede00;
    padding: 10px;
    width: 60%;
    font-size: 16px;
    outline: none;
    /* Removes outline */
    transition: all 0.3s ease-in-out;
}

.newsletter input::placeholder {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    transition: 0.3s;
    color: #666;
}

.newsletter input:focus::placeholder {
    top: 10px;
    font-size: 12px;
    color: #fede00;
}

.newsletter .sub {
    position: absolute;
    /* right: 0; */
    left: 41%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 7px 15px;
    /* border: 1px solid #fede00;
    border-radius: 20px ; */
}

.newsletter .sub:hover {
    color: #e63946;
}

.small-text {
    font-size: 15px;
    margin-top: 7px;
    font-weight: 200;
}

/* Links */
.links {
    display: flex;
    justify-content: space-between;
    width: 55%;
    margin-right: 2rem;
    margin-left: 2rem;
    gap: 1rem;
}


.links div {
    text-align: left;
}

.links h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.links ul {
    list-style: none;
}

.links ul li {
    margin-bottom: 5px;
}

.links ul li a {
    text-decoration: none;
    color: #fede00;
    font-size: 16px;
}

.links ul li a:hover {
    color: #e63946;
}





/* Bottom Section */
.bottom-section {
    text-align: center;
    padding: 30px 0;
}

.bottom-section h1 {
    font-size: 220px;
    font-weight: 900;
    font-family: codeverse;
    text-transform: capitalize;
}

.bottom-section h1:hover {
    text-shadow:
        2px 0 #fede00,
        0 -2px #fede00,
        -2px 0 #fede00,
        0 2px #fede00;
    color: #000;
    transition: text-shadow 1s, color .10s;

}

.social-icons img {
    width: 35px;
    height: 35px;
}


.bottom-section p {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 200;
}

.icons {
    margin-top: 10px;
    font-size: 18px;
}

.sub {
    color: #fede00;
}




/* ========== RESPONSIVE DESIGN ========== */

/* Tablets and smaller screens */
@media (max-width: 1024px) {

    .top-section {
        flex-direction: column;
    }

    .box {

        font-size: 28px;
        padding: 1.5rem;
    }

    .middle-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .newsletter {
        width: 100%;
        text-align: center;
    }

    .newsletter form {
        justify-content: center;
    }

    .newsletter input {
        width: 70%;
    }

    .newsletter .sub {
        left: auto;
        right: 1rem;
    }

    .links {
        width: 100%;
        margin: auto;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .links div {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
        padding-top: 1rem;
    }


}

/* Mobile screens */
@media (max-width: 768px) {
    .box {

        font-size: 24px;
        padding: 1rem;
    }

    .newsletter input {
        width: 80%;
    }

    .newsletter .sub {
        font-size: 15px;
    }

    .bottom-section h1 {
        font-size: 40px;
        letter-spacing: 5px;
        margin-left: -1rem;
    }

    .bottom-section p {
        font-size: 15px;
        padding: 0 1rem;

    }

      .links {
        width: 100%;
        margin: auto;
        padding-top: 1rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .support{
        text-align: center;
    }

}


/* =======================footer-ends========================= */






/* --------------============================Responsive====================----------------------- */





    /* ===========================start of :: trms-hero=========================== */


    .trm-hro-hero {
        background: #fede00;
        position: relative;
        overflow: hidden;
        font-family: "Poppins", sans-serif;

        padding-top: 1rem;
    }

    .trm-hro-wrapper {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .trm-hro-left {
        /* flex: 1 1 50%; */
    }

    .trm-hro-title {
        font-size: 50px;
        font-weight: 900;
        color: #0e1a2b;
        position: relative;
    }

    .trm-hro-title span {
        color: #e63946;
        font-size: 50px;
        z-index: 9;

    }

    .trm-hro-desc {
        font-size: 18px;
        color: #444;
        /* margin-bottom: 30px; */
        max-width: 500px;
    }

    .trm-hro-btn {
        padding: 14px 28px;
        background: #0057ff;
        color: #fff;
        font-size: 16px;
        text-decoration: none;
        border-radius: 6px;
        transition: background 0.3s ease;
        font-weight: 600;
    }

    .trm-hro-btn:hover {
        background: #003fcc;
    }

    .trm-hro-right {
        flex: 1 1 40%;
        text-align: center;
    }

    .trm-hro-right img {
        width: 400px;
        animation: float 4s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* Decorative Background */
    .trm-hro-hero::before,
    .trm-hro-hero::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        z-index: 0;
        opacity: 0.8;
    }

    .trm-hro-hero::before {
        width: 150px;
        height: 150px;
        background: #15151599;
        top: 100px;
        left: -100px;
    }

    .trm-hro-hero::after {
        width: 150px;
        height: 150px;
        background: #00000086;
        bottom: -60px;
        right: -60px;
    }

    /* ===========================end of :: trms-hero=========================== */


    
@media (max-width: 991px) {
    .trms-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 1rem 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        background-color: #000;
    }

    .trm-main-sec{
        background: #000;
    }

    .trms-header h1 {
        font-size: 50px;
        font-weight: 800;
    }

    .trms-header p {
    font-size: 22px;
    padding: 0 1rem;
    color: var(--highlight);
    margin-top: 0.5rem;
}

    .trms-card {
        padding: 1.2rem;
    }


    .trms-nav::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .trms-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 0.95rem;
        padding: 0.4rem 0.9rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius);
        border: 1px solid var(--border);
    }
}