

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}
.reverse-grid{
    grid-template-columns:1fr 1fr;
}

.category-section:nth-child(even){
    background:#fff;
}

.category-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.product-box ul{
    margin-top:15px;
}

.product-box ul li{
    margin-bottom:12px;
    position:relative;
    padding-left:18px;
}

.product-box ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:7px;
    height:7px;
    border-radius:50%;
    background:#122d91;
}

@media(max-width:991px){

    .category-grid,
    .reverse-grid{
        grid-template-columns:1fr;
    }

}
/* =========================
   GET A QUOTE BUTTON (PREMIUM UI)
========================= */

.quote_btn_li{
    display:flex;
    align-items:center;
}

.get_quote_btn{
    background:#122d91;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:0.3s ease;
    border:2px solid transparent;
    white-space:nowrap;
    text-decoration: none;
}

/* HOVER EFFECT */
.get_quote_btn:hover{
    background:#000000;
    color:#ffffff;
    border:2px solid #000000;
    transform:translateY(-2px);
}

/* CLICK EFFECT */
.get_quote_btn:active{
    transform:scale(0.96);
}
/* =========================
   HEADER SECTION
========================= */

.header-section{
    width:100%;
    font-family:'Poppins',sans-serif;
    position:relative;
    z-index:999;
}

/* =========================
   TOP HEADER
========================= */

.header_top{
    background:#ffffff;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.header_top_inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.header_top_left ul,
.header_top_right ul{
    display:flex;
    align-items:center;
    gap:18px;
    list-style:none;
    margin:0;
    padding:0;
}

.header_top_left ul li a,
.header_top_right ul li button{
    color:#122d91;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    background:none;
    border:none;
    cursor:pointer;
    transition:0.3s ease;
}

.header_top_left ul li a:hover,
.header_top_right ul li button:hover{
    color:#a32a23;
}

.header_top_left ul li a i,
.header_top_right ul li i{
    margin-right:6px;
}

/* =========================
   DROPDOWN
========================= */

.dropdown_box{
    position:relative;
}

.dropdown_menu{
    position:absolute;
    top:35px;
    left:0;
    width:220px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
}

.dropdown_box:hover .dropdown_menu{
    opacity:1;
    visibility:visible;
}

.dropdown_menu a{
    display:block;
    padding:10px 18px;
    color:#222;
    font-size:14px;
    text-decoration:none;
    transition:0.3s ease;
}

.dropdown_menu a:hover{
    background:#f4f7fb;
    color:#a32a23;
}

/* =========================
   HEADER MIDDLE
========================= */

.header_middle{
    background:#fff;
    padding:0px 0;
    border-bottom:1px solid #eaeaea;
}

.header_middle_inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

/* LOGO */

.header_logo h2{
    font-size:34px;
    font-weight:800;
    color:#111827;
    margin:0;
    white-space:nowrap;
}

.header_logo h2 span{
    color:#a32a23;
}

/* =========================
   SEARCH FORM
========================= */

.header_search{
    flex:1;
    max-width:700px;
}

.search_form{
    display:flex;
    align-items:center;
    border:2px solid #122d91;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
}

.search_form select{
    border:none;
    outline:none;
    padding:15px;
    background:#f7f9fc;
    font-size:14px;
    font-weight:500;
    min-width:180px;
    cursor:pointer;
}

.search_input_box{
    flex:1;
    position:relative;
}

.search_input_box input{
    width:100%;
    border:none;
    outline:none;
    padding:15px 55px 15px 18px;
    font-size:14px;
    font-weight:400;
}

.voice_btn{
    position:absolute;
    top:50%;
    right:15px;
    transform:translateY(-50%);
    border:none;
    background:none;
    cursor:pointer;
    color:#555;
    font-size:18px;
}

.search_btn{
    border:none;
    background:#122d91;
    color:#fff;
    padding:16px 22px;
    cursor:pointer;
    transition:0.3s ease;
    font-size:16px;
}

.search_btn:hover{
    background:#000000;
}

/* =========================
   HEADER BUTTONS
========================= */

.header_action_buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.header_action_btn{
    background:#122d91;
    color:#fff;
    text-decoration:none;
    padding:13px 18px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    transition:0.3s ease;
    white-space:nowrap;
}

.header_action_btn:hover{
    background:#000000;
    transform:translateY(-2px);
}

.secondary_btn{
    background:#122d91;
}

.secondary_btn:hover{
    background:#000;
}

/* =========================
   NAVBAR
========================= */

.main_navbar{
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
}

.navbar_inner ul{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:18px 0;
}

.navbar_inner ul li a{
    text-decoration:none;
    color:#111827;
    font-size:15px;
    font-weight:600;
    transition:0.3s ease;
    position:relative;
}

.navbar_inner ul li a:hover{
    color:#00b4ff;
}

/* =========================
   MOBILE HEADER
========================= */

.mobile_header{
    display:none;
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    padding:15px 0;
}

.mobile_header_inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.mobile_menu_icon i,
.mobile_user_icon i{
    font-size:22px;
    cursor:pointer;
    color:#111827;
}

.mobile_logo h2{
    font-size:24px;
    font-weight:800;
    margin:0;
    color:#111827;
}

.mobile_logo h2 span{
    color:#00b4ff;
}

/* MOBILE SEARCH */

.mobile_search_box{
    margin-top:18px;
}

.mobile_search_form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.mobile_search_form select{
    width:100%;
    border:1px solid #d1d5db;
    padding:14px;
    border-radius:10px;
    outline:none;
}

.mobile_input_box{
    position:relative;
}

.mobile_input_box input{
    width:100%;
    border:1px solid #d1d5db;
    padding:14px 50px 14px 15px;
    border-radius:10px;
    outline:none;
}

.mobile_input_box button{
    position:absolute;
    top:50%;
    right:15px;
    transform:translateY(-50%);
    border:none;
    background:none;
    cursor:pointer;
    font-size:18px;
    color:#555;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .header_middle_inner{
        flex-wrap:wrap;
    }

    .header_search{
        width:100%;
        max-width:100%;
    }

}

@media(max-width:992px){

    .header_top,
    .header_middle,
    .main_navbar{
        display:none;
    }

    .mobile_header{
        display:block;
    }

}

@media(max-width:768px){

    .header_top_inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .header_top_left ul,
    .header_top_right ul{
        flex-wrap:wrap;
        gap:10px;
    }

}

@media(max-width:576px){

    .mobile_logo h2{
        font-size:20px;
    }

}
/* TOPBAR */

.topbar{
    display:none;
    background:#ffffff;
    padding:12px 0;
    color:#fff;
    border-bottom-style: groove;
}

.topbar-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-contact{
    display:flex;
    gap:30px;
    font-size:14px;
    color: black;
    font-weight: 700;
}

.top-contact i{
    color:#00b4ff;
    margin-right:8px;
}

.top-social{
    display:flex;
    gap:12px;
}

.top-social a{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#122d91;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
}

.top-social a:hover{
    background:#000000;
}

/* HEADER */

.header{
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,0.06);
    position:sticky;
    top:0;
    z-index:999;
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo h2{
    font-size:34px;
    font-weight:800;
    color:#0d1b2a;
}

.logo span{
    color:#00b4ff;
}

.navbar ul{
    display:flex;
    gap:35px;
}

.navbar ul li a{
    color:#222;
    font-weight:600;
    transition:.3s;
}

.navbar ul li a:hover{
    color:#00b4ff;
}

.header-btn{
    background:linear-gradient(135deg,#00b4ff,#0077ff);
    padding:14px 28px;
    border-radius:40px;
    color:#fff;
    font-weight:600;
}

/* HERO */

.hero{
    padding:50px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

/* SLIDER */

.slider{
    position:relative;
    height:650px;
    border-radius:30px;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.slide-content{
    position:absolute;
    top:50%;
    left:60px;
    transform:translateY(-50%);
    color:#fff;
    max-width:550px;
}

.slide-content span{
    background:#122d91;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
}

.slide-content h1{
    font-size:60px;
    line-height:1.1;
    margin:25px 0;
}

.slide-content p{
    font-size:18px;
    margin-bottom:35px;
}

.slide-content a{
    background:#fff;
    color:#000;
    padding:15px 35px;
    border-radius:40px;
    font-weight:600;
}

/* SIDEBAR */

.sidebar{
    background:#fff;
    border-radius:30px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

.sidebar h3{
    font-size:28px;
    margin-bottom:25px;
}

.sidebar ul li{
    margin-bottom:18px;
}

.sidebar ul li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 18px;
    background:#f4f7fc;
    border-radius:15px;
    color:#222;
    transition:.4s;
}

.sidebar ul li a:hover{
    background:#00b4ff;
    color:#fff;
    transform:translateX(8px);
}

/* GLOBAL */

.section{
    padding:110px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#122d91;
    font-weight:bold;
    font-size: 40px;
}

.section-title h2{
    font-size:35px;
    margin-top:12px;
    color:#0d1b2a;
    font-weight: 800;
}

/* ABOUT */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-img img{
    width:100%;
    border-radius:30px;
    height:400px;
    object-fit:cover;
}

.about-content h2{
    font-size:48px;
    margin-bottom:25px;
}

.about-content p{
    line-height:2;
    color:#555;
    text-align: justify;
    margin-bottom:18px;
    font-weight: 600;
}

/* SLIDER CARDS */

.slider-wrapper{
    overflow:hidden;
    position:relative;
}

.slider-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:scroll 30s linear infinite;
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

.category-card,
.region-card,
.country-card,
.partner-card{
    min-width:280px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
}

.category-card:hover,
.region-card:hover,
.country-card:hover,
.partner-card:hover{
    transform:translateY(-10px);
}

.category-card img,
.region-card img,
.country-card img,
.partner-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.category-content,
.region-content,
.country-content,
.partner-content{
    padding:25px;
}

.category-content h3,
.region-content h3,
.country-content h3,
.partner-content h3{
    font-size:24px;
}

/* CATEGORY PRODUCTS */

.category-section{
    padding:60px 0;
}

.category-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.category-image img{
    width:100%;
    border-radius:25px;
    height:500px;
    object-fit:cover;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.product-box{
    background:#fff;
    border:2px solid #e6eef8;
    padding:25px;
    border-radius:20px;
    transition:.4s;
}

.product-box:hover{
    border-color:#122d91;
    transform:translateY(-5px);
}

.product-box h4{
    margin-bottom:15px;
    color:#0d1b2a;
    font-weight: 700;
}

.product-box ul li{
    margin-bottom:10px;
    color:#555;
}

/* FOOTER */

.footer{
    background:#0d1b2a;
    color:#fff;
    padding-top:90px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footer-col h2,
.footer-col h3{
    margin-bottom:25px;
}

.footer-col p{
    line-height:1.9;
    color:#cdd7e1;
}

.footer-col ul li{
    margin-bottom:15px;
}

.footer-col ul li a{
    color:#cdd7e1;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#1b263b;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
}

.copyright{
    text-align:center;
    padding:25px;
    margin-top:70px;
    border-top:1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-grid,
    .about-grid,
    .category-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .navbar{
        display:none;
    }

    .slide-content h1{
        font-size:40px;
    }

}

@media(max-width:768px){

    .topbar-flex,
    .header-flex{
        flex-direction:column;
        gap:20px;
    }

    .slider{
        height:500px;
    }

    .slide-content{
        left:25px;
    }

    .slide-content h1{
        font-size:32px;
    }

    .section-title h2,
    .about-content h2{
        font-size:34px;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

}
/* =========================
   PARTNER SECTION
========================= */

.slider-wrapper{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;

    scrollbar-width:none;
}

.slider-wrapper::-webkit-scrollbar{
    display:none;
}

/* SINGLE ROW */

.slider-track{
    display:flex;
    gap:25px;

    width:max-content;
}

/* CARD */

.partner-card{
    width:260px;
    min-width:260px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    text-decoration:none;

    color:#111;

    box-shadow:0 8px 25px rgba(0,0,0,0.08);

    transition:0.35s ease;

    display:flex;
    flex-direction:column;

    min-height:320px;
}

.partner-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* IMAGE */

.partner-card img{
    width:100%;
    height:220px;

    object-fit:contain;

    background:#fff;

    padding:25px;
}

/* CONTENT */

.partner-content{
    padding:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex:1;

    text-align:center;

    border-top:1px solid #f1f1f1;
}

/* TITLE */

.partner-content h3{
    font-size:18px;
    font-weight:600;
    line-height:1.5;
    color:#122d91;

    margin:0;
}

/* RESPONSIVE */

@media(max-width:768px){

    .partner-card{
        width:220px;
        min-width:220px;

        min-height:290px;
    }

    .partner-card img{
        height:180px;
    }

    .partner-content h3{
        font-size:16px;
    }

}


/* CATEGORY CARD FIX */

.slider-track{
    display:flex;
    gap:25px;
    align-items:stretch;
}

.category-card{
    min-width:300px;
    height:420px; /* SAME HEIGHT FOR ALL */
    position:relative;
    overflow:hidden;
    border-radius:18px;
    flex-shrink:0;
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.category-content{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:30px;

    background:linear-gradient(to top, rgba(0,0,0,0.75), transparent);

    display:flex;
    align-items:flex-end;
    justify-content:center;
    text-align:center;
}

.category-content h3{
    color:#fff;
    font-size:24px;
    line-height:1.5;
    font-weight:600;
    max-width:90%;
    margin:0;
}


.header_logo{
    display:flex;
    align-items:center;
}

.header_logo img{
    width:150px;
    height:auto;
    object-fit:contain;
}
.header_logo1{
    display:flex;
    align-items:center;
}

.header_logo1 img{
    width:180px;
    height:auto;
    object-fit:contain;
}

.igt-newsletter{
    position:relative;
    padding:80px 20px;
    background:url('images/global-bg.jpg') center center/cover no-repeat;
    border-radius:20px;
    overflow:hidden;
    margin:80px 0;
}

.igt-newsletter-overlay{
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    background:rgba(13,27,42,0.78);
}

.igt-newsletter-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:750px;
    margin:auto;
}

.igt-newsletter-content h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.igt-newsletter-content p{
    color:#dce7f3;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}

.igt-newsletter-form{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.igt-newsletter-form input{
    width:420px;
    max-width:100%;
    height:58px;
    border:none;
    border-radius:10px;
    padding:0 20px;
    font-size:15px;
    outline:none;
    color:#222;
}

.igt-newsletter-form button{
    height:58px;
    padding:0 35px;
    border:none;
    border-radius:10px;
    background:#00b4ff;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.igt-newsletter-form button:hover{
    background:#0096d6;
    transform:translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:768px){

    .igt-newsletter{
        padding:60px 20px;
    }

    .igt-newsletter-content h2{
        font-size:30px;
    }

    .igt-newsletter-form{
        flex-direction:column;
    }

    .igt-newsletter-form input,
    .igt-newsletter-form button{
        width:100%;
    }

}


/* login */

        a{
            text-decoration:none;
        }

        /* BREADCRUMB */

        .breadcrumb-area{
            position:relative;
            background:url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1920') center center/cover no-repeat;
            padding:140px 0px;
            overflow:hidden;
        }

        .breadcrumb-overlay{
            position:absolute;
            width:100%;
            height:100%;
            left:0;
            top:0;
            background:rgba(0,0,0,0.7);
        }

        .breadcrumb-content{
            position:relative;
            z-index:2;
            text-align:center;
        }

        .breadcrumb-content h1{
            color:#fff;
            font-size:60px;
            font-weight:700;
            margin-bottom:15px;
        }

        .breadcrumb-links{
            display:flex;
            justify-content:center;
            align-items:center;
            gap:12px;
        }

        .breadcrumb-links a,
        .breadcrumb-links span,
        .breadcrumb-links p{
            color:#fff;
            font-size:16px;
            margin:0;
        }

        /* AUTH SECTION */

        .auth-section{
            padding:100px 0px;
        }

        .auth-wrapper{
            max-width:650px;
            margin:auto;
            background:#fff;
            padding:60px;
            box-shadow:0px 15px 50px rgba(0,0,0,0.08);
        }

        /* TABS */

        .auth-tabs{
            display:flex;
            gap:15px;
            margin-bottom:40px;
        }

        .auth-tab{
            flex:1;
            height:58px;
            border:none;
            background:#f1f1f1;
            font-size:17px;
            font-weight:600;
            cursor:pointer;
            transition:0.4s;
        }

        .auth-tab.active{
            background:#0d6efd;
            color:#fff;
        }

        /* FORM */

        .auth-form{
            display:none;
        }

        .auth-form.active{
            display:block;
        }

        .auth-form h3{
            font-size:35px;
            color:#122d91;
            margin-bottom:10px;
            font-weight:700;
        }

        .auth-form p{
            color:#666;
            margin-bottom:35px;
            font-weight: 700;
        }

        .form-group{
            margin-bottom:22px;
        }

        .form-group label{
            display:block;
            margin-bottom:10px;
            color:#222;
            font-weight:600;
        }

        .input-box{
            position:relative;
        }

        .input-box i{
            position:absolute;
            left:18px;
            top:50%;
            transform:translateY(-50%);
            color:#888;
            font-size:15px;
        }

        .input-box input{
            width:100%;
            height:58px;
            border:1px solid #ddd;
            padding:0px 20px 0px 50px;
            font-size:15px;
            outline:none;
            transition:0.3s;
            color:#222;
        }

        .input-box input:focus{
            border-color:#0d6efd;
        }

        .auth-options{
            display:flex;
            justify-content:space-between;
            align-items:center;
            margin-bottom:25px;
            flex-wrap:wrap;
            gap:10px;
        }

        .auth-options label{
            font-size:14px;
            color:#666;
        }

        .auth-options a{
            font-size:14px;
            color:#122d91;
            font-weight:500;
        }

        .auth-btn{
            width:100%;
            height:58px;
            border:none;
            background:#122d91;
            color:#fff;
            font-size:17px;
            font-weight:600;
            cursor:pointer;
            transition:0.4s;
        }

        .auth-btn:hover{
            background:#000000;
        }

        /* SOCIAL */

        .social-login{
            margin-top:35px;
        }

        .social-login p{
            text-align:center;
            color:#666;
            margin-bottom:20px;
        }

        .social-icons{
            display:flex;
            gap:15px;
        }

        .social-icons a{
            flex:1;
            height:52px;
            border:1px solid #ddd;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#333;
            font-size:18px;
            transition:0.3s;
        }

        .social-icons a:hover{
            background:#000000;
            color:#fff;
            border-color:#0d6efd;
        }

        /* RESPONSIVE */

        @media(max-width:767px){

            .breadcrumb-content h1{
                font-size:40px;
            }

            .auth-wrapper{
                padding:40px 25px;
            }

            .auth-tabs{
                flex-direction:column;
            }

            .auth-form h3{
                font-size:28px;
            }

        }

.breadcrumb-area{
    position:relative;
    padding:180px 0 130px;
    overflow:hidden;
    z-index:1;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    /* CENTER CONTENT */
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* DARK OVERLAY */
/*.breadcrumb-area::before{*/
/*    content:'';*/
/*    position:absolute;*/
/*    inset:0;*/
/*    background:linear-gradient(*/
/*        90deg,*/
/*        rgba(0,0,0,0.88) 0%,*/
/*        rgba(0,0,0,0.72) 45%,*/
/*        rgba(0,0,0,0.45) 100%*/
/*    );*/
/*    z-index:-1;*/
/*}*/

/* OPTIONAL SHAPE */
/*.breadcrumb-area::after{*/
/*    content:'';*/
/*    position:absolute;*/
/*    width:600px;*/
/*    height:600px;*/
/*    background:rgba(0,180,255,0.08);*/
/*    border-radius:50%;*/
/*    right:-200px;*/
/*    top:-180px;*/
/*    z-index:-1;*/
/*}*/

.breadcrumb-content{
    max-width:760px;
    margin:0 auto;
}

.breadcrumb-content span{
     color:#fff;
    font-size:15px;
    font-weight:700;
}


.breadcrumb-content h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin-bottom:22px;
    letter-spacing:-1px;
}

.breadcrumb-content p{
    color:#e5e7eb;
    font-size:18px;
    line-height:1.9;
    max-width:680px;
    margin:0 auto;
}

.breadcrumb-links{
    margin-top:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.breadcrumb-links a{
    color:#fff;
    font-size:15px;
    font-weight:900;
    transition:0.3s ease;
    text-decoration: none;
}

.breadcrumb-links a:hover{
    color:#ffffff;
}

.breadcrumb-links i{
    color:#ffffff;
    font-size:12px;
}

@media(max-width:991px){

    .breadcrumb-area{
        padding:150px 0 110px;
    }

    .breadcrumb-content h1{
        font-size:52px;
    }

}

@media(max-width:767px){

    .breadcrumb-area{
        padding:130px 0 90px;
    }

    .breadcrumb-content h1{
        font-size:40px;
    }

    .breadcrumb-content p{
        font-size:16px;
    }

}