*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Manrope', sans-serif;
    background: #fff;
    color: #000;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
    display: block;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

/* =========================
   HERO SECTION
========================= */

.coolboots-hero-section{
    /* background:url(../images/hero-bg.png); */
    min-height: 100vh;
    padding: 30px 0 80px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================
   NAVBAR
========================= */

.coolboots-navbar{
    border-radius: 28px;
    padding: 10px;
    transition: 0.35s ease;
    position: relative;
    z-index: 999;
    background:#fff;
  
    border: 1px solid rgba(255, 255, 255, 0.25);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

/* FIXED NAVBAR */

.coolboots-navbar.fixed-navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 12px 60px 5px 60px;
    animation: navbarFade 0.4s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}
.fixed-navbar .coolboots-logo  img{
    width: 200px;
        padding-bottom: 12px;
}
@keyframes navbarFade{

    from{
        opacity: 0;
        transform: translateY(-100%);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

.coolboots-logo img{
     max-width:164px;
}
/* =========================
   MENU BUTTON
========================= */

.coolboots-menu-btn{
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
}
.coolboots-menu-btn img{
    width: 20px;
}
.coolboots-menu-btn span{
    width: 100%;
    height: 4px;
    background: #3047e8;
    border-radius: 50px;
    transition: 0.4s ease;
}

/* =========================
   OVERLAY
========================= */

.coolboots-sidebar-overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    left: 0;
    top: 0;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    backdrop-filter: blur(4px);
}

/* ACTIVE */

.coolboots-sidebar-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* =========================
   SIDEBAR
========================= */

.coolboots-sidebar{
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    padding: 35px;
    overflow-y: auto;
    transition: 0.45s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
}

/* ACTIVE */

.coolboots-sidebar.active{
    right: 0;
}

/* =========================
   CLOSE BTN
========================= */

.coolboots-sidebar-close{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #f4f5ff;
    color: #3047e8;
    font-size: 20px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.coolboots-sidebar-close:hover{
    background: #3047e8;
    color: #fff;
}

/* =========================
   LOGO
========================= */

.coolboots-sidebar-logo{
position: absolute;
    top: 25px;
}

.coolboots-sidebar-logo img{
    max-width: 220px;
}

/* =========================
   MENU
========================= */

.coolboots-sidebar-menu{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 45px;
}

.coolboots-sidebar-menu li a{
    font-size: 16px;
    font-weight: 700;
    color: #111;
    transition: 0.3s ease;
}

.coolboots-sidebar-menu li a:hover{
    color: #3047e8;
    padding-left: 6px;
}

/* =========================
   BUTTON
========================= */

.coolboots-sidebar-btn{
    width: 100%;
    height: 60px;
    background: #3047e8;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s ease;
}

.coolboots-sidebar-btn:hover{
    background: #1f36d8;
    color: #fff;
}

/* =========================
   BODY SCROLL HIDE
========================= */

body.sidebar-open{
    overflow: hidden;
}

/* =========================
   NAV LINK
========================= */

.coolboots-nav-menu li a{
    position: relative;
    color: #111;
    transition: 0.3s ease;
}

/* HOVER + ACTIVE COLOR */

.coolboots-nav-menu li a:hover,
.coolboots-nav-menu li a.active{
    color: #2f46e5;
}

/* UNDERLINE */

.coolboots-nav-menu li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #2f46e5;
    transition: 0.3s ease;
    border-radius: 100px;
}

/* HOVER EFFECT */

.coolboots-nav-menu li a:hover::after,
.coolboots-nav-menu li a.active::after{
    width: 100%;
}
/* MENU */

.coolboots-nav-menu{
 display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 42px;   /* pahle 55px tha */
    margin: 0;
    padding: 0;
   
}

.coolboots-nav-menu li:last-child{
    margin-left: 10px;
}
.coolboots-nav-menu li a{
font-size:16px;
    font-weight: 600;
    color: #111111;
    transition: 0.3s ease;
    white-space: nowrap;
}

.coolboots-nav-menu li a:hover{
    color: #2f46e5;
}

/* =========================
   HERO
========================= */

.coolboots-hero-row{
    padding-top: 90px;
    position: relative;
}
.coolboots-hero-content{
    padding-left: 30px;
}
.coolboots-subtitle{
    font-size: 20px;
    font-weight: 700;
    letter-spacing:3px;
    color: #111111;
    display: inline-block;
    margin-bottom: 35px;
}

.coolboots-hero-content h1{
    font-size:55px;
    line-height: 1.05;
    font-weight: 800;
    color: #000000;
    margin-bottom: 30px;
}

.blue-text{
    color: #2f46e5;
}
.coolboots-hero-section {

}
.coolboots-hero-content h1 span:last-child{
    color: #f6aa14;
}

.coolboots-hero-content p{
       font-size: 16px;
    line-height: 2;
    color: #000;
    margin-bottom: 10px;
    font-weight: 400;
}

/* HERO BUTTONS */

.coolboots-hero-btns{
  
    display: inline-block;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* PRIMARY BTN */

/* .coolboots-primary-btn{
  background: #2f46e5;
    color: #ffffff;
    padding: 10px 12px 10px 23px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 35px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(47, 70, 229, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease;
} */

/* SHIMMER EFFECT */

/* .coolboots-primary-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(72, 92, 255, 0) 0%,
        rgba(72, 92, 255, 0.10) 20%,
        rgba(255, 196, 52, 0.58) 50%,
        rgba(124, 92, 255, 0.25) 75%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: shimmer 3s linear infinite;
} */

/* HOVER */

/* .coolboots-primary-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(47, 70, 229, 0.35);
} */

/* ANIMATION */

@keyframes shimmer{

    0%{
        left: -75%;
    }

    100%{
        left: 130%;
    }

}

.coolboots-btn-icon{
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f46e5;
    font-size: 24px;
}

.coolboots-primary-btn{
   background: #2f46e5;
    color: #ffffff;
    padding: 10px 12px 10px 23px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 35px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 0px 14px rgba(47, 70, 229, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s ease;
}

/* TOP BORDER */

.coolboots-primary-btn::before{
   content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 80px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #f6aa14,
        transparent
    );
    animation: topMove 2.5s linear infinite;
}

/* BOTTOM BORDER */
.coolboots-primary-btn::after{
  content: "";
    position: absolute;
    bottom: 0;
    right: -35%;
    width: 80px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #f6aa14,
        transparent
    );
    animation: bottomMove 2.5s linear infinite;
}

/* ANIMATION */

@keyframes topMove{

    0%{
        left: -35%;
    }

    100%{
        left: 110%;
    }

}

@keyframes bottomMove{

    0%{
        right: -35%;
    }

    100%{
        right: 110%;
    }

}

/* HOVER */

.coolboots-primary-btn:hover{
    transform: translateY(-2px);
   box-shadow: 0 0px 14px rgba(47, 70, 229, 0.25);
}


/* SECONDARY BTN */

.coolboots-secondary-btn{

       padding:10px 12px 10px 23px;
    border-radius: 100px;
    border: 2px dashed #cfcfcf;
    display: inline-flex;
    align-items: center;
    gap: 35px;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    background: #ffffff;
}

.coolboots-play-btn{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6aa14;
    font-size: 22px;
}

/* HERO IMAGE */

.coolboots-hero-image{
    text-align: center;
}

.coolboots-hero-image img{
    width: 100%;
}

/* =========================
   TRUSTED SECTION
========================= */

.coolboots-trusted-section{
    background: url(../images/trusted-bg.png);
    padding:30px 10px 50px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
        background-position: top;
    background-size: cover;
}

/* BG SHAPES */

.coolboots-map-shape{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.12;
    z-index: -1;
}

.coolboots-dot-shape{
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.35;
    z-index: -1;
}

/* TOP */

.coolboots-trusted-top{
    max-width: 1100px;
    margin: 0 auto 90px;
}

.coolboots-trusted-badge{
    border: 1px solid rgba(255,255,255,0.15);
    height: 58px;
    padding: 0 45px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    background-color:#061248;
}

.coolboots-trusted-top p{
    color: #ffffff;
    font-size:26px;
    font-weight: 400;
    margin-bottom: 0px;
}

/* CARD */

.coolboots-trusted-card{
    display: flex;
    align-items: center;
    gap:16px;
        margin-top: -30px;
}

/* ICON */

.coolboots-trusted-icon{
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coolboots-trusted-icon i{
    font-size: 20px;
    color: #3946e9;
}

/* INFO */

.coolboots-trusted-info h3{
   font-size: 32px;
    line-height: 1;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0px;
}

.coolboots-trusted-info span{
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    padding-top: 10px;
}


a:focus-visible{
    border-color: #2f46e5;
    box-shadow: 0 0 0 4px rgba(47,70,229,0.15);
    outline: none;
}

/* =========================
   PROBLEM SECTION
========================= */

.coolboots-problem-section{
    padding: 110px 0px 40px 0px;
    background: url(../images/publisher-traffic.png);
    position: relative;
    overflow: hidden;
    z-index: 1;
        background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.coolboots-problem-section .container{
    position: relative;
}

/* BG SHAPES */

.coolboots-problem-wave{
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: -1;
}

.coolboots-problem-dots{
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    z-index: -1;
}

/* =========================
   BADGE
========================= */

.coolboots-problem-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FCF1F4;
    padding:  5px 15px;

    border-radius: 100px;
    color: #d16f6f;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 32px;
}

.coolboots-problem-dot{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d16f6f;
}

/* =========================
   LEFT CONTENT
========================= */

.coolboots-problem-left h2{
    font-size:38px;
    line-height: 1.1;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
  
}

.coolboots-problem-left p{
    font-size: 18px;
    color: #222;
    line-height: 1.6;
}

.coolboots-problem-left p span{
    color: #3147e7;
    font-weight: 700;
}

/* =========================
   RIGHT CONTENT
========================= */

.coolboots-problem-right{
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding-right: 190px;
}

.coolboots-problem-border{
    width: 2px;
    min-width: 2px;
    height: 180px;
    background: linear-gradient(to bottom, #3147e7, transparent);
}

.coolboots-problem-content p{
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
}

.coolboots-problem-content h4{
    font-size: 24px;
    line-height: 1.45;
    font-weight: 800;
    color: #000;
}

/* =========================
   FLOATING CARDS
========================= */

.coolboots-floating-cards{
    position: absolute;
    right: 0;
    top: -10px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.coolboots-floating-card{
    width: 150px;
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.coolboots-floating-card h5{
    font-size: 20px;
    font-weight: 700;
    color: #1f2f65;
    margin-bottom: 16px;
}

.coolboots-floating-card span{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
}

.coolboots-floating-card span i{
    font-size: 28px;
}

.coolboots-floating-card .green{
    color: #42ba3d;
}



.coolboots-floating-card .red{
    color: #e04c4c;
}

.coolboots-floating-card .green img,
.coolboots-floating-card .red img{

    width: 15px;
}

/* =========================
   CARDS
========================= */

.coolboots-problem-cards-row{
    margin-top: 30px;
}

.coolboots-problem-card{
    background: #fff;
    border-radius: 24px;
    padding: 28px 24px;
    border-top: 4px solid #f4aa10;
    box-shadow: 0 10px 40px rgba(71,84,255,0.08);
    height: 100%;
    transition: 0.4s ease;
}

.coolboots-problem-card:hover{
    transform: translateY(-8px);
}

.coolboots-card-number{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f9f3e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3147e7;
   font-size: 16px;
    font-weight: 500;
    margin-bottom: 32px;
}

.coolboots-card-icon{
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #fcf6e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.coolboots-card-icon i{
    font-size: 40px;
    color: #5a56ff;
}

.coolboots-problem-card h3{
    font-size: 22px;
    line-height: 1.45;
    font-weight: 800;
    color: #111;
    text-align: center;
    margin-bottom: 24px;
}

.coolboots-card-line{
    width: 60px;
    height: 2px;
    background: #4a5cff;
    margin: 0 auto 24px;
}

.coolboots-problem-card p{
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    color: #444;
}

/* =========================
   CENTER ICON
========================= */

.coolboots-problem-center-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d9dcff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 23px auto 7px;
    color: #4a5cff;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        animation: coolboots-problem-center-icon 5s ease-in-out infinite;
    transform-origin: center;
}




@keyframes coolboots-problem-center-icon{

    0%{
        transform:
        translateY(0px);
    }

    50%{
        transform:
        translateY(-18px);
    }

    100%{
        transform:
        translateY(0px);
    }

}

/* =========================
   BOTTOM TEXT
========================= */

.coolboots-problem-bottom-text{
    text-align: center;
}

.coolboots-problem-bottom-text h2{
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #000;
    max-width: 850px;
    margin: auto;
}

.coolboots-problem-bottom-text h2 span{
    color: #3147e7;
    display: block;
}

/* =========================
   TABS
========================= */

.coolboots-problem-tabs{
    margin-top: 60px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #d9d9d9;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.coolboots-problem-tab{
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    border-right: 1px solid #d9d9d9;
}

.coolboots-problem-tab:last-child{
    border-right: none;
}

.coolboots-problem-tab span{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #f0b3b3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f07d7d;
    font-size: 10px;
}


/* =========================
   SOLUTION SECTION
========================= */

.coolboots-solution-section{
    padding: 40px 6px 51px 10px;
    background: rgb(255, 255, 255);
    overflow: hidden;
    position: relative;
border-bottom: solid 1px rgba(112, 112, 112, 0.4);
}

/* =========================
   TOP CONTENT
========================= */

.coolboots-solution-top{
    max-width: 1180px;
    margin: auto;
}

.coolboots-solution-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f4e3;
    color: #2d7b31;
    height: 42px;
    padding: 0 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
}

.coolboots-solution-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #79c365;
}

.coolboots-solution-top h2{
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #000;
    margin-bottom:15px;
}

.coolboots-solution-top p{
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    max-width: 1220px;
    margin: auto;
}

.coolboots-solution-top p strong{
    font-weight: 800;
    color: #000;
}

/* =========================
   ROW
========================= */

.coolboots-solution-row{
    margin-top: 0px;
}

/* =========================
   IMAGE SIDE
========================= */

.coolboots-solution-image-wrapper{
    position: relative;
    max-width: 620px;
}

/* MAIN IMAGE */

.coolboots-solution-main-image img{
    width: 100%;
    animation: floatImage 5s ease-in-out infinite;
}

/* FLOATING CARDS */

.coolboots-solution-float-card{
    position: absolute;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    animation: floatingCard 4s ease-in-out infinite;
}

.coolboots-solution-float-card img{
    width: 42px;
}

.coolboots-solution-float-card span{
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 600;
    margin-bottom: 4px;
}

.coolboots-solution-float-card h4{
    font-size: 20px;
    font-weight: 800;
    color: #2f57ff;
}

/* CARD POSITION */

.revenue-card{
    top: -10px;
    right: 40px;
}

.engagement-card{
    left: -15px;
    bottom: 30px;
}

/* =========================
   RIGHT BOXES
========================= */

.coolboots-solution-right{
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.coolboots-solution-box{
    background: #fff;
    border: 1px solid #dddfff;
    border-radius: 26px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 10px 25px rgba(83,92,255,0.08);
    transition: 0.4s ease;
}

.coolboots-solution-box:hover{
    transform: translateY(-6px);
}

/* ICON */

.coolboots-solution-box-icon{
    min-width: 92px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #FFF8EA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coolboots-solution-box-icon img{
    width: 42px;
}

/* CONTENT */

.coolboots-solution-box-content h3{
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.coolboots-solution-box-content p{
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

/* =========================
   BOTTOM CONTENT
========================= */

.coolboots-solution-bottom{
    margin-top: 70px;
}

.coolboots-solution-bottom p{
    max-width: 1180px;
    margin: auto auto 45px;
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}


/* =========================
   PRODUCT SECTION
========================= */

.coolboots-product-section{
    padding:50px 0px 50px 0px;
    background: #fff;
    overflow: hidden;
}

/* =========================
   TOP
========================= */

.coolboots-product-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 18px;
    border-radius: 100px;
    background: #f4e7d8;
    color: #b78558;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 26px;
}

.coolboots-product-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c89b70;
}

.coolboots-product-top-left h2{
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    color: #000;
    max-width: 620px;
}

.coolboots-product-top-right p{
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    max-width: 430px;
}

/* =========================
   SLIDER
========================= */

.coolboots-product-slider-main{
    position: relative;
    margin-top: 55px;
}

/* CARD */

.coolboots-product-card{
    background: #F7F5FD;
    border-radius: 26px;
    padding: 54px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* =========================
   CONTENT
========================= */

.coolboots-product-logo{
    width: 110px;
    margin-bottom: 30px;
}

.coolboots-product-content h3{
    font-size:28px;
    line-height: 1.3;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
    max-width: 450px;
}

.coolboots-product-content p{
    font-size: 18px;
    color: #333;
    max-width: 520px;
    margin-bottom: 34px;
}

.mg-buttom{
    margin-bottom: 10px !important;
}
.quizupp-logo{
        width: 170px;
    margin-bottom: 30px;
}
/* =========================
   IMAGE
========================= */

.coolboots-product-image{
    text-align: center;
}

.coolboots-product-image img{
    width: 100%;

}

/* =========================
   FEATURES
========================= */

.coolboots-product-features{
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.coolboots-product-feature{
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.coolboots-feature-icon{
    min-width: 62px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fdf5e7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coolboots-feature-icon img{
    width: 28px;
}

.coolboots-product-feature h4{
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
    color: #111;
    margin-bottom: 0px;
}

.coolboots-product-feature p{
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* =========================
   ARROWS
========================= */

.coolboots-slider-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #222;
}

.coolboots-slider-arrow i{
    font-size: 30px;
}

.coolboots-slider-arrow span{
    font-size: 16px;
}

.coolboots-prev{
    left: -60px;
}

.coolboots-next{
    right: -60px;
}

/* =========================
   STEP FLOW SECTION
========================= */

.coolboots-step-section{
    padding: 50px 50px;
    background: #f7f8ff;
    overflow: hidden;
}

/* =========================
   TOP
========================= */

.coolboots-step-top{
    margin-bottom: 60px;
}

.coolboots-step-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 18px;
    border-radius: 100px;
    background: #ffffff;
    color: #6c7dc7;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 26px;
}

.coolboots-step-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #8ea0e6;
  
}

.coolboots-step-top h2{
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #000;
    
}

.coolboots-step-top h2 span{
    display: block;
    color: #3047e8;
}

/* =========================
   CARD
========================= */

.coolboots-step-card{
    background: #fff;
    border-radius: 28px;
    padding:20px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 300px;
        transition: all 0.9s ease;
}




/* =========================
   IMAGE
========================= */

.coolboots-step-image{
    background: #f9f4e8;
    border-radius: 24px;
    padding:15px;
    margin-bottom: 30px;
    height:230px;
}

.coolboots-step-image img{
    width: 150px;
    margin: auto;
    transition: 0.4s ease;
}

/* HOVER */

.coolboots-step-card:hover .coolboots-step-image img{
    transform: scale(1.05);
}

/* =========================
   CONTENT
========================= */

.coolboots-step-content h3{
    font-size: 20px;
    line-height: 1.45;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.coolboots-step-content p{
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}
.coolboots-step-image-title{
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    margin-bottom:20px;
          margin-top: 10px;
}

/* =========================
   CARD ARROW
========================= */

.coolboots-step-arrow{
position: absolute;
    top: 48%;
    right:0px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5cff;
    font-size: 34px;
    pointer-events: none;
    
}

.coolboots-step-arrow img{
    width: 30px;
}
.coolboots-step-section .row{
    position: relative;
}

.coolboots-step-section .col-xl-3{
    position: relative;
}


/* =========================
   PILLARS SECTION
========================= */

.coolboots-pillars-section{
    padding: 50px 0;
    border-bottom: solid 1px rgba(112, 112, 112, 0.4);
    background: #fff;
    overflow: hidden;
}

/* =========================
   TOP
========================= */

.coolboots-pillars-top{
    max-width: 1100px;
    margin: auto auto 70px;
}

.coolboots-pillars-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 18px;
    border-radius: 100px;
    background: #f2edff;
    color: #7566b9;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
}

.coolboots-pillars-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9b85df;
}

.coolboots-pillars-top h2{
    font-size:38px;
    line-height: 1.2;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
}

.coolboots-pillars-top h2 span{
    color: #3047e8;
}

.coolboots-pillars-top p{
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    max-width: 980px;
    margin: auto;
}

/* =========================
   SIDE ITEMS
========================= */

.coolboots-pillars-side{
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.coolboots-pillars-item{
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ICON */

.coolboots-pillars-icon{
    min-width: 90px;
    width:90px;
    height:90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.coolboots-pillars-icon img{
    width: 30px;
}

/* COLORS */

.coolboots-pillars-icon.purple{
    background: #f3efff;
}

.coolboots-pillars-icon.blue{
    background: #edf9fb;
}

.coolboots-pillars-icon.green{
    background: #f1fae8;
}

.coolboots-pillars-icon.orange{
    background: #fff5ea;
}

.coolboots-pillars-icon.sky{
    background: #eef8ff;
}

.coolboots-pillars-icon.pink{
    background: #f8efff;
}

/* CONTENT */

.coolboots-pillars-content h3{
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.coolboots-pillars-content span{
    display: block;
    width: 34px;
    height: 2px;
    background: #7a86ff;
    margin-bottom: 16px;
}

.coolboots-pillars-content p{
    font-size: 13px;
    line-height: 1.7;
    color: #444;
}

/* =========================
   CENTER IMAGE
========================= */

.coolboots-pillars-center{
    text-align: center;
}

.coolboots-pillars-center img{
    width: 100%;
    max-width: 620px;

}

/* =========================
   GLOBAL SECTION
========================= */

.coolboots-global-section{
    padding: 50px 0;
    background: url(../images/global-bg.png);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

/* BG SHAPE */

.coolboots-global-wave{
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.4;
    z-index: 1;
}

.coolboots-global-wave img{
    width: 100%;
}

/* CONTAINER */

.coolboots-global-section .container{
    position: relative;
    z-index: 2;
}

/* =========================
   LEFT CONTENT
========================= */

.coolboots-global-content h2{
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #000;
    margin-bottom: 38px;
}

.coolboots-global-content h2 span{
    display: block;
    color: #3047e8;
}

.coolboots-global-item{
    margin-bottom: 42px;
}

.coolboots-global-item:last-child{
    margin-bottom: 0;
}

.coolboots-global-item h3{
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}

.coolboots-global-item p{
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    max-width: 480px;
}

/* =========================
   IMAGE
========================= */

.coolboots-global-image{
    text-align: center;
}

.coolboots-global-image img{
    width: 100%;
    max-width: 760px;

}

/* =========================
   CTA BOX
========================= */

.coolboots-global-cta{
    margin-top: 20px;
    background: linear-gradient(90deg, #2841eb 0%, #4f72ff 100%);
    border-radius: 30px;
    padding: 34px 38px;
    box-shadow: 0 20px 45px rgba(48,71,232,0.18);
}

/* LEFT */

.coolboots-global-cta-left{
    display: flex;
    align-items: center;
    gap: 24px;
}

.coolboots-global-cta-icon{
    min-width: 72px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coolboots-global-cta-icon img{
    width: 60px;
}

.coolboots-global-cta-left h3{
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    max-width: 420px;
}

/* CENTER */

.coolboots-global-cta-text{
    border-left: 1px solid rgba(255,255,255,0.35);
    padding-left: 34px;
    margin-top: 20px;
}

.coolboots-global-cta-text p{
    font-size: 16px;
    color: #fff;
}

/* =========================
   WHITE BUTTON
========================= */

.coolboots-white-btn{
    background: #fff;
    height: 72px;
    padding: 0 10px 0 30px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    max-width: 320px;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s ease;
}

.coolboots-white-btn:hover{
    transform: translateY(-3px);
    color: #111;
}

.coolboots-white-btn-icon{
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #3f5cff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* =========================
   ANIMATION
========================= */

@keyframes globeFloat{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0);
    }

}
.GCPP_logo img {
    width:200px;
}


.coolboots-hero-graph{
    position: relative;
    animation: heroFloat 5s ease-in-out infinite;
    transform-origin: center;
}

/* MAIN FLOAT */

@keyframes heroFloat{

    0%{
        transform:
        translateY(0px);
    }

    50%{
        transform:
        translateY(-18px);
    }

    100%{
        transform:
        translateY(0px);
    }

}



/* =========================
   FAQ SECTION
========================= */

.coolboots-faq-section{
    padding: 50px 0px 100px 0px;
    background: #fff;

}

/* =========================
   TOP
========================= */

.coolboots-faq-top{
   
    margin: auto auto 70px;
}

.coolboots-faq-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 18px;
    border-radius: 100px;
    background: #f7eddc;
    color: #b58552;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
}

.coolboots-faq-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1a06b;
}

.coolboots-faq-top h2{
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #000;
    margin-bottom: 22px;
}

.coolboots-faq-top p{
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

/* =========================
   FAQ MAIN
========================= */

.coolboots-faq-main{
    max-width: 980px;
    margin: auto;
    height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 50px;

    /* FIREFOX */

    scrollbar-width: thin;
    scrollbar-color: #b9c0ff transparent;
}

/* =========================
   CHROME SCROLLBAR
========================= */

.coolboots-faq-main::-webkit-scrollbar{
    width: 6px;   /* scrollbar width */
}

.coolboots-faq-main::-webkit-scrollbar-track{
    background: transparent;
}

.coolboots-faq-main::-webkit-scrollbar-thumb{
    background: #b9c0ff;
    border-radius: 100px;
}

.coolboots-faq-main::-webkit-scrollbar-thumb:hover{
    background: #3047e8;
}

/* ITEM */

.coolboots-faq-item{
    border-bottom: 1px solid #d9d9d9;
    padding: 21px 0;
}

/* QUESTION */

.coolboots-faq-question{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.coolboots-faq-question h3{
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* ICON */

.coolboots-faq-icon{
    min-width: 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f6ff;
    color: #3047e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.4s ease;
}

/* ANSWER */

.coolboots-faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.coolboots-faq-answer p{
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    padding-top: 18px;
    max-width: 850px;
}

/* ACTIVE */

.coolboots-faq-item.active .coolboots-faq-answer{
    max-height: 300px;
}

.coolboots-faq-item.active .coolboots-faq-icon{
    transform: rotate(45deg);
    background: #3047e8;
    color: #fff;
}

/* =========================
   FOOTER
========================= */

.coolboots-footer{
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #d9d9d9;
    overflow: hidden;
}

/* =========================
   LEFT
========================= */

.coolboots-footer-left{
    padding-right: 40px;
    border-right: 1px solid #d9d9d9;
    height: 100%;
}

.coolboots-footer-logo img{
    max-width: 240px;
}

.coolboots-footer-left p{
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin: 24px 0 40px;
    max-width: 260px;
}

/* MAP */

.coolboots-footer-map img{
    width: 100%;
    max-width: 320px;
}

/* =========================
   CENTER LINKS
========================= */

/* =========================
   FOOTER LINKS
========================= */

.coolboots-footer-links{
    padding: 0 0px;
    border-right: 1px solid #d9d9d9;
    height: 100%;
}

/* =========================
   TOP MENU
========================= */

.coolboots-footer-menu{
    display: flex;
    flex-wrap: wrap;
    column-gap: 48px;
    row-gap: 34px;
}

.coolboots-footer-menu li{
    width: calc(33.33% - 32px);
}

.coolboots-footer-menu li a{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    transition: 0.3s ease;
}



/* =========================
   DIVIDER
========================= */

.coolboots-footer-divider{
    width: 100%;
    height: 1px;
    background: #d9d9d9;
    margin: 40px 0;
}

/* =========================
   BOTTOM MENU
========================= */

.coolboots-footer-submenu{
    display: flex;
    flex-wrap: wrap;
    column-gap: 42px;
    row-gap: 28px;
}

.coolboots-footer-submenu li a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    transition: 0.3s ease;
}

.coolboots-footer-submenu li a img{
    width: 16px;
    min-width: 16px;
}

/* HOVER */

.coolboots-footer-menu li a:hover,
.coolboots-footer-submenu li a:hover{
    color: #3047e8;
    transform: translateX(3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){

    .coolboots-footer-links{
        padding: 0;
        border-right: none;
    }

}

@media (max-width: 767px){

    .coolboots-footer-menu{
        column-gap: 20px;
        row-gap: 24px;
    }

    .coolboots-footer-menu li{
        width: calc(50% - 10px);
    }

    .coolboots-footer-menu li a{
        font-size: 15px;
    }

    .coolboots-footer-submenu{
        column-gap: 24px;
        row-gap: 20px;
    }

    .coolboots-footer-submenu li{
        width: calc(50% - 12px);
    }

    .coolboots-footer-submenu li a{
        font-size: 14px;
    }

}

.coolboots-footer-links ul li a img{
    width:15px;
}

/* =========================
   RIGHT
========================= */

.coolboots-footer-global{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

/* ICON */

.coolboots-footer-global-icon{
    min-width: 86px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #f4efff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coolboots-footer-global-icon img{
    width: 42px;
}

/* CONTENT */

.coolboots-footer-global h3{
    font-size: 20px;
    font-weight: 800;
    color: #222;
    margin-bottom: 8px;
}

.coolboots-footer-global p{
    font-size: 16px;
    color: #777;
}

/* =========================
   OFFICE CARD
========================= */

.coolboots-office-card{
    position: relative;
    border-radius: 24px;
    padding: 24px;
    min-height: 260px;
    overflow: hidden;
    z-index: 1;

    border: 1px solid #ece8ff;

    /* SOFT BACKGROUND */

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fffdfa 72%,
        #fff8ef 100%
    );

    transition: 0.3s ease;
}

/* HOVER */

.coolboots-office-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(48,71,232,0.08);
}

/* BOTTOM IMAGE */

.coolboots-office-card::before{
    content: "";
    position: absolute;
        right: 0;
    bottom: 0;
    width: 150px;
    height: 130px;

    background-image: url("../images/uae.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;

    opacity: 0.9;
    z-index: -1;
}

/* FLAG */

.coolboots-office-flag{
    position: absolute;
    top: 24px;
    right: 24px;
}

.coolboots-office-flag img{
    width: 42px;
    border-radius: 4px;
}

/* TITLE */

.coolboots-office-card h4{
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    color: #222;
    margin-bottom: 6px;
}

/* LOCATION */

.coolboots-office-card .office-location{
    display: block;
    font-size: 15px;
    color: #888;
    margin-bottom: 18px;
}

/* ONLINE */

.coolboots-office-status{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #22a313;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 26px;
}

.coolboots-office-status span{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22a313;
    animation: quizzuppBlink 1.2s infinite;
     box-shadow: 0 0 6px #2ecc71;
}

@keyframes quizzuppBlink{
  0%,100%{opacity:1;}
  50%{opacity:0.3;}
}

/* DIVIDER */

.coolboots-office-divider{
    width: 100%;
    height: 1px;
    background: #ececec;
    margin-bottom: 18px;
}

/* TIME */

.coolboots-office-time-label{
    font-size: 15px;
    color: #8a8a8a;
    margin-bottom: 6px;
}

.coolboots-office-time{
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 6px;
}

.coolboots-office-time h3{
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #222;
}

.coolboots-office-time span{
    font-size: 24px;
    font-weight: 800;
    color: #3047e8;
    margin-bottom: 3px;
}

/* GMT */

.coolboots-office-gmt{
    font-size: 14px;
    color: #8a8a8a;
}

/* =========================
   FOOTER BOTTOM
========================= */

.coolboots-footer-bottom{
    border-top: 1px solid #d9d9d9;
    padding: 20px 0;
}

/* SOCIAL */

.coolboots-footer-social{
    display: flex;
    align-items: center;
    gap: 18px;
}

.coolboots-footer-social span{
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* ICON */

.coolboots-social-icon{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #0a66c2;
    color: #0a66c2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
}

.coolboots-social-icon:hover{
    background: #0a66c2;
    color: #fff;
    transform: translateY(-3px);
}

/* COPYRIGHT */

.coolboots-footer-copyright{
    text-align: right;
}

.coolboots-footer-copyright p{
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}


/* =========================
   OPEN BUTTON
========================= */

.coolboots-chat-open-btn{
    height: 54px;
    padding: 0 28px;
    border: none;
    border-radius: 100px;
    background: #3047e8;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* =========================
   OVERLAY
========================= */

.coolboots-flow-overlay{
     position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(5px);
    z-index: 99999;

    display: flex;
    justify-content: center;

    padding: 60px 20px;

    overflow: hidden; /* REMOVE DOUBLE SCROLL */

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;
}

/* ACTIVE */

.coolboots-flow-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* =========================
   WRAPPER
========================= */
body.flow-open{
    overflow: hidden;
}
.coolboots-flow-wrapper{
  width: 100%;
    max-width: 900px;

    height: 100%;

    overflow-y: auto;

    padding-right: 10px;
}
.coolboots-flow-wrapper::-webkit-scrollbar{
    width: 5px;
}

.coolboots-flow-wrapper::-webkit-scrollbar-thumb{
    background: #7f8cff;
    border-radius: 100px;
}

.coolboots-flow-wrapper::-webkit-scrollbar-track{
    background: transparent;
}
/* =========================
   CLOSE
========================= */

.coolboots-flow-close{
    position: absolute;
    top: 28px;
    right: 30px;
    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 18px;

    cursor: pointer;
}

/* =========================
   BODY
========================= */

.coolboots-flow-body{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* STEP */

.coolboots-flow-step{
    display: flex;
    align-items: flex-start;
    gap: 14px;

    animation: fadeUp 0.5s ease;
}

/* LOGO */

.coolboots-flow-logo{
    min-width:60px;
    width: 60px;
    height: 60px;

    margin-top: 4px;
}

.coolboots-flow-logo img{
    width: 100%;
}

/* MESSAGE */

.coolboots-flow-message{
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    width: 100%;
    max-width: 620px;
}

.coolboots-flow-message p{
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    font-weight: 600;
}

/* ACTION */

.coolboots-flow-action{
    margin-left: 56px;
    margin-top: 10px;
}

/* BUTTON */

.coolboots-flow-btn{
    min-width: 140px;
    height: 52px;
margin-left: 20px;
    border: none;
    border-radius: 12px;

    background: #3047e8;
    color: #fff;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;
}

/* OPTIONS */

.coolboots-flow-options{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* USER ANSWER */

.coolboots-user-answer{
    margin-left: auto;

    background: #3047e8;
    color: #fff;

    padding: 14px 18px;

    border-radius: 14px;

    width: fit-content;
    max-width: 300px;

    font-size: 15px;
    font-weight: 600;

    animation: fadeUp 0.4s ease;
}

/* INPUT WRAP */

.coolboots-input-wrap{
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 620px;
}

/* INPUT */

.coolboots-flow-input{
    flex: 1;
    height: 58px;

    border: none;
    outline: none;

    background: #f4f4f4;

    border-radius: 10px;

    padding: 0 18px;

    font-size: 15px;
}

/* MOBILE NUMBER */

.coolboots-phone-wrap{
    display: flex;
    align-items: center;

    background: #f4f4f4;

    border-radius: 10px;

    overflow: hidden;

    flex: 1;
}

.coolboots-country-code{
    padding: 0 16px;
    height: 58px;

    display: flex;
    align-items: center;

    font-size: 15px;
    font-weight: 700;

    color: #3047e8;

    border-right: 1px solid #ddd;
}

.coolboots-phone-input{
    flex: 1;
    height: 58px;

    border: none;
    outline: none;

    background: transparent;

    padding: 0 16px;

    font-size: 15px;
}

/* SUCCESS */

.coolboots-success{
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.coolboots-success h3{
    font-size: 28px;
    margin-bottom: 10px;
}

.coolboots-success p{
    color: #666;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(20px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}


/* ERROR */

.coolboots-error{
    color: #ff3b30;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    padding-left: 6px;
}

.mob-none{
    display: block;
}
.ds-none{
    display: none;
}

/* =========================
PRIVACY POLICY
========================= */

.coolboots-privacy-policy{
    padding: 30px 0 80px;
    background: #f7f7fb;
}

/* HERO */

.coolboots-policy-hero{
   padding: 44px 0px 40px 30px
}

.coolboots-policy-left{
    padding-top: 30px;
}

.coolboots-policy-tag{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #222;
    display: inline-block;
    margin-bottom: 22px;
}

.coolboots-policy-left h1{
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
    margin-bottom: 34px;
}

.coolboots-policy-update{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    padding: 0 30px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ededf3;
    box-shadow:
    0 8px 20px rgba(0,0,0,.04);
    font-size: 18px;
    font-weight: 600;
    color: #111;
    letter-spacing: 1px;
}

.coolboots-policy-right{
    text-align: right;
}

.coolboots-policy-right img{
    width: 100%;
    max-width: 520px;
}

/* CONTENT */

.coolboots-policy-content{
    background: #fff;
    border: 1px solid #ebebf2;
    border-radius: 24px;
    padding: 52px 46px;
}

.coolboots-policy-content p{
    font-size: 16px;
    line-height: 2;
    color: #000;

    font-weight: 400;
}

.coolboots-policy-content .policy-bold{
    font-weight: 700;
    color: #111;
}

.coolboots-policy-content strong{
    color: #111;
    font-weight: 700;
}
.coolboots-policy-content h1{
       font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1f3a8a ;
}


.coolboots-policy-content h2{
       font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1f3a8a ;
}



.coolboots-policy-content ul{
padding-left: 30px;
}

.coolboots-policy-content ul li{

    list-style-type: disc;
    font-size: 16px;
    margin-bottom: 15px;
}


.coolboots-policy-content table p{
margin-bottom: 0px;
 color: #000;
}
.coolboots-policy-content table td{
      border: solid #cccccc 0.5pt;
    padding: 10px 16px 10px 13px;
    text-align: CENTER;
    color: #000;
}
.coolboots-policy-content table th{
   color:#1f3a8a;background-color:#1f3a8a;border: solid #cccccc 0.5pt;
       color: #fff;
    padding: 5px;
    text-align: center;
}



/* =========================
CONTACT PAGE
========================= */

.coolboots-contact-page{
    padding: 30px 0 80px;
    background: #f7f7fb;
}

/* HERO */

.coolboots-contact-hero{
       padding: 44px 0px 77px 30px;
}

.coolboots-contact-tag{
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
    color: #222;
    display: inline-block;
    margin-bottom: 24px;
}

.coolboots-contact-left h1{
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
    margin-bottom: 26px;
}

.coolboots-contact-left p{
    font-size: 22px;
    line-height: 1.9;
    color: #555;
    max-width: 520px;
}

.coolboots-contact-image{
    text-align: right;
}

.coolboots-contact-image img{
    width: 100%;
    max-width: 560px;
}

/* CARD */

.coolboots-office-card,
.coolboots-contact-form-box{
    background: #fff;
    border: 1px solid #ececf3;
    border-radius: 22px;
    padding: 38px 34px;
    height: 100%;
}

.coolboots-office-card h2,
.coolboots-contact-form-box h2{
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.coolboots-line{
    width: 60px;
    height: 3px;
    background: #3046E5;
    border-radius: 50px;
    margin-bottom: 30px;
}

/* LEFT INFO */

.coolboots-office-item{
   
    margin-bottom: 24px;
    border-bottom: 1px solid #ececf3;
}

.coolboots-office-item:last-child{
    border-bottom: 0;
}
.coolboots-office-title{
 display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.46px;
    color: #213DE3;
}

.coolboots-office-title img{
       width: 20px;
    height: auto;
}

/* CHECKBOX WRAPPER */

.coolboots-check{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
  
}

/* CHECKBOX */

.coolboots-check input{
    width: 18px !important;
    height: 18px !important;
    margin: 0;
    cursor: pointer;
    accent-color: #3046E5;
    flex-shrink: 0;
}

/* LABEL */

.coolboots-check label{
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0;
    cursor: pointer;
}

/* LINK */

.coolboots-check label a{
    color: #3046E5;
    text-decoration: none;
    font-weight: 500;
}


.coolboots-office-item h5{
    font-size: 16px;
    font-weight: 600;
    color: #3046E5;
    margin-bottom: 16px;
}

.coolboots-office-item p{
font-size: 16px;
    color: #000;
}

.coolboots-map img{
    width: 100%;
    border-radius: 14px;
}

/* FORM */

.coolboots-form-subtitle{
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.coolboots-contact-form-box input,
.coolboots-contact-form-box textarea{
    width: 100%;
    border: 1px solid #e4e4ed;
    background: #f8f8fc;
    border-radius: 10px;
    padding: 18px 22px;
    font-size: 17px;
    outline: none;
    transition: .3s ease;
}

.coolboots-contact-form-box input:focus,
.coolboots-contact-form-box textarea:focus{
    border-color: #3046E5;
    background: #fff;
}

.coolboots-contact-form-box textarea{
    height: 240px;
    resize: none;
}

.coolboots-contact-form-box input::placeholder,
.coolboots-contact-form-box textarea::placeholder{
    color: #777;
}

.error-text{
    color: red;
    font-size: 14px;
    margin-top: 6px;
    display: block;
}

/* CHECK */


.coolboots-check label{
    font-size: 16px;
    color: #666;
}

.coolboots-check a{
    color: #3046E5;
    text-decoration: none;
}

/* BUTTON */

.coolboots-submit-btn{
    height: 62px;
    padding: 0 32px;
    border: 0;
    border-radius: 100px;
    background: #3046E5;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    transition: .3s ease;
}

.coolboots-submit-btn span{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #3046E5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coolboots-submit-btn:hover{
    transform: translateY(-3px);
}

/* WHATSAPP */
.partnership-banner {
    width: 100%;
    margin-top: 20px;
    padding: 24px 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #F5F4FD;
    border: 1px solid #E2D7D7;
    border-radius: 16px;
}
.partnership-banner .banner-left {
    display: flex;
    align-items: center;
    gap: 25px;
}
.partnership-banner .banner-left .handshake-icon-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}
.partnership-banner .banner-left .handshake-icon-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.partnership-banner .banner-left .banner-text h5 {
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
}
.partnership-banner .banner-left .banner-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
}
.partnership-banner .whatsapp-btn {
    width: 250px;
    height: auto;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.partnership-banner .whatsapp-btn img {
    width: 100%;
    height: auto;
    display: block;
}


.button-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 30PX;
}

.coolboots-hero-video{
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
    line-height: 0;
        position: absolute;
    top: -30px;
    max-width: 650px;
}

.coolboots-hero-video video{
    width: 100%;
    display: block;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.coolboots-hero-right{
    overflow: hidden;
}
/* MOBILE */

@media(max-width:991px){

    .coolboots-hero-video{
        max-width: 100%;
        margin-top: 40px;
        position: relative;
    top: -31px;
    }

}

.coolboots-solution-video{
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.coolboots-solution-video video{
    width: 100%;

    object-fit: cover;

    border: none;
    outline: none;
    box-shadow: none;

  
}

.coolboots-growth-video{
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: auto;

    overflow: hidden;
    line-height: 0;
}

.coolboots-growth-video video{
    width: 100%;

    object-fit: cover;

    border: none;
    outline: none;
    box-shadow: none;

    /* CLEAN LOOK */

    transform: scale(1.04);
}

.GCPP_logo{
margin-top: 30px;
}

.coolboots-logo a{
    display:flex;
    align-items:center;
    gap:15px;
}

/* GIF size */
.logo-gif{
    width:80px;
    height:auto;
}


.logo-img{
      margin-left: -15px;
    margin-top: 0px;
    position: relative;
    top: 5px;
}

.fixed-navbar .logo-gif{
    width:100px !important;
    height:auto;
}