/* ===========================
   Professional Top Header
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
p{
    margin: 0 !important;
}
h2{
    font-size: 30px !important;
    font-weight:700 !important;
    color:#0f172a;
    margin:15px 0;
}
h4{
    font-size: 18px !important;
}
span{
    color: #ea5e29;
}

.top-header{
    background:#032b3a;
    color:#fff;
    font-size:14px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.top-header .container{
    
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 20px;
    flex-wrap:wrap;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.top-left a,
.top-left span{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.top-left a:hover{
    color:#4fc3f7;
}

.top-right a{
    width:35px;
    height:35px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:#fff;
    background:#ea5e29;
    text-decoration:none;
    transition:.3s;
}

.top-right a:hover{
    background:#0ea5e9;
    transform:translateY(-2px);
}

.top-left i{
    color:#ea5e29;
}

/* header section */

/*==========================
HEADER
==========================*/

.tm-header{
    width:100%;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 30px rgba(0,0,0,.08);
}

.tm-container{
    /* max-width:1280px;
    margin:auto;
    padding:0 20px; */
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Logo */

.tm-logo img{
    max-height:80px;
}

/* Menu */

.tm-navbar{
    flex:1;
    display:flex;
    justify-content:center;
}

.tm-menu{
    display:flex;
    align-items:center;
    gap:20px;
    list-style:none;
    margin-bottom: 0;
}

.tm-menu li{
    position:relative;
}

.tm-menu li a{
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:6px;
}

.tm-menu li>a:hover,
.tm-menu li>a.active{
    color:#ea5e29;
}

.tm-menu li>a i{
    font-size:11px;
}

/* Dropdown */

.tm-submenu{
    position:absolute;
    top:130%;
    left:0;
    width:260px;
    background:#fff;
    list-style:none;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s;
    overflow:hidden;
    padding-left: 0;
}

.tm-submenu li{
    width:100%;
}

.tm-submenu li a{
    display:block;
    padding:14px 20px;
    color:#333;
    font-size:15px;
    font-weight:500;
}

.tm-submenu li a:hover{
    background:#f5f8ff;
    color:#ea5e29;
    padding-left:28px;
}

.tm-dropdown:hover .tm-submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Right */

.tm-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.tm-btn{
    padding:14px 28px;
    background:#eb5e28;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    transition:.3s;
    text-transform: uppercase;
}

.tm-btn:hover{
    background:#081c3a;
}

.tm-btn i{
    transition:.3s;
}

.tm-btn:hover i{
    transform:translateX(5px);
}

/* Mobile Toggle */

.tm-toggle{
    display:none;
    width:34px;
    cursor:pointer;
}

.tm-toggle span{
    display:block;
    height:3px;
    background:#222;
    margin:6px 0;
    border-radius:50px;
}

/* Responsive */

/* slider section */

.tm-hero-slider{
    position:relative;
}

.tm-slide-item{
    height:500px;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

.tm-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, #03142d80, rgba(3, 20, 45, .45));
}

.tm-slide-content{
    position:relative;
    z-index:2;
    max-width:650px;
    color:#fff;
}

.tm-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    border-radius:30px;
    margin-bottom:25px;
    font-size:15px;
    letter-spacing:1px;
    color: #fff;
}

.tm-slide-content h1{
    font-size:30px;
    line-height:1.15;
    margin-bottom:10px;
    font-weight:700;
}

.tm-slide-content p{
    font-size:18px;
    line-height:32px;
    margin-bottom:20px;
    color:#d6d6d6;
}

.tm-slider-btn{
    display:inline-block;
    padding:16px 40px;
    background:#ea5e29;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.35s;
    margin-top: 20px;
}

.tm-slider-btn:hover{
    background:#ffffff;
    color:#ea5e29;
}

.tm-slider .owl-nav{
    margin:0;
}

.tm-slider .owl-prev,
.tm-slider .owl-next{

    width:30px;
    height:30px;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    border-radius:50% !important;
    background:#fff !important;
    color:#ea5e29 !important;
    font-size:15px !important;
    transition:.3s;
}

.tm-slider .owl-prev:hover,
.tm-slider .owl-next:hover{
    background:#ea5e29 !important;
    color:#fff !important;
}

.tm-slider .owl-prev{
    left:40px;
}

.tm-slider .owl-next{
    right:40px;
}

.tm-slider .owl-dots{
    position:absolute;
    bottom:35px;
    width:100%;
    text-align:center;
}

.tm-slider .owl-dot span{
    width:12px;
    height:12px;
    margin:5px;
    background:#fff !important;
}

.tm-slider .owl-dot.active span{
    background:#ea5e29 !important;
}

/* marquee slider */

.tm-marquee{
    width:100%;
    overflow:hidden;
    background:#ea5e29;
    color:#fff;
    padding:15px 0;
    white-space:nowrap;
}

.tm-marquee-content{
    display:inline-block;
    padding-left:100%;
    animation:marquee 25s linear infinite;
    font-size:25px;
    font-weight:600;
}

@keyframes marquee{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-100%);
    }
}

/* service section */



.sub-title{
    color:#ea5e29;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* .section-title{
    font-size:42px;
    font-weight:700;
    color:#0f172a;
    margin:15px 0;
} */

.section-desc{
    color:#64748b;
    line-height:1.8;
}

.service-box{
    background:#fff;
    padding:25px 25px;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    height:100%;
    position:relative;
    overflow:hidden;
    border-top: 4px solid #2b9dab;
    /* width: 23.8%;
    height: 255px; */
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.service-box .icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#2b9dab;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-bottom:15px;
}

.service-box h4{
    font-size:24px;
    font-weight:700;
    /* margin-bottom:15px; */
    color:#032b3a;
}

.service-box p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:10px !important;
}

.service-box a{
    color:#ea5e29;
    font-weight:600;
    text-decoration:none;
}

.service-box a i{
    margin-left:6px;
    transition:.3s;
}

.service-box:hover a i{
    transform:translateX(6px);
}

@media(max-width:768px){

.section-title{
    font-size:32px;
}

.service-box{
    padding:30px 15px;
}

}

/* our technologies */

.technology-section{
    background:#fff;
    padding: 50px 0;
}

.tech-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:15px;
    padding:15px 15px;
    text-align:center;
    transition:.35s ease;
    height:100%;
    position:relative;
    overflow:hidden;
    /* max-width: 150px; */
    border-top: 2px solid #2b9dab;
}

.tech-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#ea5e29;
    transform:scaleX(0);
    transition:.35s;
}

.tech-box:hover::before{
    transform:scaleX(1);
}

.tech-box:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.tech-box img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 100%;
    background: #dddddd42;
}

.tech-box h5{
    font-size:16px;
    font-weight:700;
    margin-bottom:10px;
    color:#0f172a;
}

.tech-box p{
    color:#64748b;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

/* about section start */

.about-section{
        /* background: #58a4b0; */
    background-image: url(../image/about_banner.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* padding: 100px 0; */
    position: fixed;
    top: 0;
    left: 0;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}
.about-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #032b3abd;
    z-index: -1;
}


.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border: 2px solid #ddd;
}
.section-title-head{
    color: #fff;
}

.about-text{
    color:#fff;
    line-height:1.8;
    margin:25px 0;
    font-size:16px;
    margin-bottom: 10px !important;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#fff;
}

.about-feature i{
    color:#ea5e29;
    font-size:18px;
}

.theme-btn{
    display:inline-flex;
    align-items:center;
    padding:14px 32px;
    background:#ea5e29;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.theme-btn:hover{
    background:#0f172a;
    color:#fff;
}

/* footer section start */
.footer{
    background:#032b3a;
    color:#d8d8d8;
    padding:60px 0 25px;
        border-top: 10px solid #2f9bad;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(227px,1fr));
    gap:40px;
}

.footer-logo{
    color:#fff;
    font-size:32px;
    margin-bottom:20px;
}

.footer-logo span{
    color:#ea5e29;
}

.footer-widget h4{
    color:#fff;
    margin-bottom:25px;
    font-size:20px;
    position:relative;
}

.footer-widget h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:3px;
    background:#ea5e29;
}

.footer-widget p{
    line-height:1.8;
    margin-bottom:15px;
}

.footer-widget ul{
    list-style:none;
    padding:0;
}

.footer-widget ul li{
    margin-bottom:14px;
}

.footer-widget ul li a{
    color:#d8d8d8;
    text-decoration:none;
    transition:.3s;
    text-transform: uppercase;
    font-size: 15px;
}
.location_wise p{
    line-height: 50px;
}

.footer-widget ul li a:hover{
    color:#ea5e29;
    padding-left:8px;
}

.footer-widget i{
    color:#ea5e29;
    margin-right:10px;
}
.social-links a i{
    margin-right: 0;
}

.social-links{
    margin-top:25px;
}

.social-links a{
    width:42px;
    height:42px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#1d2535;
    color:#fff;
    margin-right:10px;
    transition:.3s;
    text-decoration:none;
}

.social-links a:hover{
    background:#ea5e29;
    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:60px;
    padding-top:25px;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#aaa;
}

/* our project code */

.portfolio-section{
    padding:60px 0;
    background:#f8f9fb;
}

.section-heading{
    text-align:center;
    max-width:750px;
    margin:auto;
    /* margin-bottom:30px; */
}

/* .section-heading span{
    color:#ea5e29;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
} */

.section-heading h2{
    font-size:48px;
    margin:10px 0 0;
    color:#0d1b2a;
}

.section-heading p{
    color:#666;
    line-height:30px;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.portfolio-item{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    height:400px;
    margin-bottom: 25px;
}

/* .portfolio-item{
    position: absolute;
    top: 0;
    left: 0;
} */

.portfolio-item.large{
    grid-column:span 2;
}

.portfolio-item img{
    width:100%;
    /* height:100%; */
    object-fit:cover;
    transition:.6s;
    background-position: top;
}
.portfolio-overlay_pos{
    position: absolute;
    /* top: 0; */
    bottom: 0;
    left: 0;
    background-color: #032b3ad9;
    width: 100%;
    /* height: 20px; */
    padding: 20px;
}
.portfolio-overlay_pos h3{
    color: #fff;
    font-size: 20px;
}
.portfolio-overlay_pos span{
    color: #fff;
    font-size: 15px;
}
.portfolio-overlay_pos a{
    color: #fff;
    text-decoration: none;
}

/* .portfolio-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.9),
    rgba(0,0,0,.2));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
    color:#fff;
    opacity:0;
    transition:.4s;
} */

.portfolio-item:hover img{
    transform:scale(1.05);
}

.img_conyent{
    background-color: red;
}

/* .portfolio-item:hover .portfolio-overlay{
    opacity:1;
} */

/* .portfolio-overlay span{
    color:#ea5e29;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;
} */

/* .portfolio-overlay h3{
    margin:10px 0 20px;
    font-size:28px;
}

.portfolio-overlay a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.portfolio-overlay a:hover{
    color:#ea5e29;
} */

@media(max-width:991px){

.portfolio-grid{
grid-template-columns:1fr;
}

.portfolio-item.large{
grid-column:span 1;
}

}

/* contact us section for home page */

.contact-area{
    padding:50px 0;
    /* background:#f7f8fc; */
}

/* Heading */

.contact-heading{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
}

.contact-subtitle{
    display:inline-block;
    color:#ea5e29;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.contact-title{
    font-size:48px;
    color:#0d1b2a;
    margin-bottom:20px;
    line-height:1.2;
}

.contact-description{
    color:#6b7280;
    line-height:30px;
    font-size:16px;
}

/* Layout */

.contact-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:25px;
    align-items:center;
}

/* Left Side */

.contact-info{
    background:#032b3a;
    color:#fff;
    padding:30px;
    border-radius:10px;
    height:100%;
}

.contact-info h3{
    font-size:32px;
    margin-bottom:15px;
}

.contact-info>p{
    color:#d4d4d4;
    line-height:28px;
    margin-bottom:35px;
}

.info-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
}

.info-icon{
    width:50px;
    height:50px;
    background:#ea5e29;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.info-icon i{
    color:#fff;
    font-size:20px;
}

.info-content h5{
    color:#fff;
    margin-bottom:8px;
    font-size:18px;
}

.info-content p{
    color:#d4d4d4;
    margin:0;
    line-height:26px;
}

/* Form */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:10px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #e5e7eb;
    border-radius:10px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.contact-form textarea{
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#ea5e29;
    box-shadow:0 0 0 3px rgba(193,145,70,.15);
}

.contact-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ea5e29;
    color:#fff;
    border:none;
    padding:16px 35px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{
    background:#0d1b2a;
    transform:translateY(-2px);
}

/* Responsive */

@media(max-width:991px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.contact-title{
    font-size:36px;
}

.contact-info,
.contact-form{
    padding:20px;
}

.form-row{
    grid-template-columns:1fr;
}

}
.heading_border{
    width: 300px;
    height: 20px;
    margin: 10px auto 10px;
    background: url(../image/head_img_line.png) no-repeat center;
    background-size: contain;
        filter: brightness(0) saturate(100%) invert(13%) sepia(32%) saturate(1815%) hue-rotate(163deg) brightness(96%) contrast(97%);

}


/* for more offers */

.certificate-offer{
    padding:60px 0;
    /* background:linear-gradient(135deg,#0f172a,#1e3a8a); */
    color:#111;
    text-align:center;
        background: #cccccc1f;
}

.certificate-offer .container{
    max-width:900px;
    margin:auto;
}

.offer-badge{
    display:inline-block;
    background:#f97316;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}

.certificate-offer h2{
    font-size:42px;
    margin-bottom:20px;
    line-height:1.3;
}

.description{
    font-size:18px;
    color:#111;
    line-height:1.8;
    /* max-width:750px; */
    margin:0 auto 40px;
}

.offer-box{
    background:#ffffff15;
    border:1px solid rgba(255,255,255,.2);
    backdrop-filter:blur(8px);
    border-radius:15px;
    padding:30px 0 10px;
    /* margin-bottom:40px; */
}

.offer-box h3{
    font-size:32px;
    color:#2f9bad;
    margin-bottom:15px;
    font-weight: 700;
}

.offer-box p{
    font-size:17px;
    color:#2f9bad;
    line-height:1.8;
}

.btn-group{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
}

.btn-primary{
    background:#f97316;
    color:#fff;
}

.btn-primary:hover{
    background:#ea580c;
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#1e3a8a;
    transform:translateY(-4px);
}

@media(max-width:768px){

.certificate-offer{
    padding:60px 15px;
}

.certificate-offer h2{
    font-size:30px;
}

.description{
    font-size:16px;
}

.offer-box{
    padding:25px;
}

.offer-box h3{
    font-size:24px;
}

.offer-box p{
    font-size:15px;
}

.btn{
    width:100%;
}

}


/* why choose us section */

.why-choose{
    padding:50px 0;
    /* background:#f8fafc; */
    background-image: url(../image/about_banner.avif);
    position: relative;
    z-index: 1;
   background-attachment: fixed;
   background-repeat: no-repeat;

}
.why-choose::before{
    content: "";
    position: absolute;
    background-color: #032b3abd;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    z-index: -1;
}

/* .why-choose .container{
    max-width:1200px;
    margin:auto;
} */

.section-title{
    text-align:center;
    margin-bottom:30px;
}

/* .section-title span{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
} */

.section-title h2{
    font-size:40px;
    color:#0f172a;
    margin:15px 0;
    color: #fff;
}

.section-title p{
    /* max-width:700px; */
    margin:auto;
    color:#fff;
    font-size:17px;
    line-height:1.8;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.choose-box{
    background:#fff;
    border-radius:10px;
    padding:35px 30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-top: 4px solid #2b9dab;
}

.choose-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(37,99,235,.15);
}

.choose-box .icon{
    width: 50px;
    height:50px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#2b9dab;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:20px;
    transition:.4s;
}

.choose-box:hover .icon{
    transform:rotateY(180deg);
    background:#f97316;
}

.choose-box h4{
    font-size:24px;
    color:#0f172a;
    margin-bottom:15px;
        text-transform: uppercase;
    font-weight: 700;
}

.choose-box p{
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

@media(max-width:768px){

.why-choose{
    padding:50px 0px;
}

.section-title h2{
    font-size:30px;
}

.section-title p{
    font-size:15px;
}

.choose-box{
    padding:10px;
}

.choose-box h3{
    font-size:22px;
}

}

/* float icons */

.floating-contact{
    position:fixed;
    right:20px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.floating-contact a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s ease;
    animation:floatPulse 2s infinite;
}

.call-btn{
    background:#0d6efd;
}

.whatsapp-btn{
    background:#25D366;
}

.floating-contact a:hover{
    transform:translateY(-5px) scale(1.08);
}

@keyframes floatPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(0,0,0,.3);
    }

    70%{
        transform:scale(1.08);
        box-shadow:0 0 0 15px rgba(0,0,0,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(0,0,0,0);
    }

}

@media(max-width:768px){

.floating-contact{
    right:15px;
    bottom:20px;
}

.floating-contact a{
    width:55px;
    height:55px;
    font-size:22px;
}

}


/* popup css */

.customPopup{
     position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;

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

    z-index: 9999;
}

.popupBox{
     position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.closePopup{
    position:absolute;
    right:20px;
    top:15px;
    font-size:30px;
    cursor:pointer;
    color:#333;
}

.popupBox h4{
    margin-bottom:15px;
}

.popupBox ul{
    padding-left:20px;
}

.popupBox li{
    margin-bottom:8px;
}

@keyframes popup{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.popupContent h3{
        padding: 0 0 10px !important;
    font-weight: 500;
    font-size: 25px;
    border-bottom: 1px solid #111;
    margin-bottom: 15px;
}
.popupContent p{
    padding-bottom: 15px;
}

/* registration form popup */

/* Register Button */

.register-btn{
    background:#0d6efd;
    color:#fff;
    padding:14px 30px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.register-btn:hover{
    background:#0b5ed7;
}

/* Popup */

.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,.6);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

.popup-overlay.active{
    opacity:1;
    visibility:visible;
}

.popup-box{
    width:90%;
    max-width:500px;
    background:#fff;
    border-radius:12px;
    padding:30px;
    position:relative;
    transform:scale(.8);
    transition:.3s;
}

.popup-overlay.active .popup-box{
    transform:scale(1);
}

.close-btn{
    position:absolute;
    right:18px;
    top:10px;
    font-size:32px;
    cursor:pointer;
    color:#555;
}

.popup-box h2{
    margin-bottom: 8px;
    /* color: #0d6efd; */
    border-bottom: 1px solid;
    padding: 10px 0;
}

.popup-box p{
    /* margin-bottom:20px; */
    color:#666;
    padding: 10px 0 20px;
}

.form-group{
    margin-bottom:15px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
    outline:none;
    font-size:15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#032b3a;
}

.submit-btn{
    width:100%;
    padding:14px;
    border:none;
    background:#ea5e29;
    color:#fff;
    font-size:16px;
    border-radius:6px;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#032b3a;
}

/*=============================
  Floating Social Icons
==============================*/

.tmce-social-fixed{
    position:fixed;
    left:0;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;
}

.tmce-social-fixed a{
    position:relative;
    display:flex;
    align-items:center;
    width:50px;
    height:50px;
    margin:8px 0;
    color:#fff !important;
    text-decoration:none;
    overflow:hidden;
    border-radius:0 30px 30px 0;
    transition:.35s ease;
    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.tmce-social-fixed a i{
    width:50px;
    text-align:center;
    font-size:20px;
    flex-shrink:0;
}

.tmce-social-fixed a span{
    white-space:nowrap;
    font-size:15px;
    font-weight:600;
    opacity:0;
    padding-right:18px;
    transition:.35s;
    color: #fff;
}

.tmce-social-fixed a:hover{
    width:170px;
}

.tmce-social-fixed a:hover span{
    opacity:1;
}

/* Individual Colors */

.tmce-whatsapp{
    background:#25D366;
}

.tmce-facebook{
    background:#1877F2;
}

.tmce-instagram{
    background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.tmce-linkedin{
    background:#0A66C2;
}

.footer-widget ul li a::before{
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 5px;
    font-size: 12px;
    color: #ea5e29;
}

/* Mobile */

@media(max-width:768px){

    .tmce-social-fixed a{
        width:45px;
        height:45px;
    }

    .tmce-social-fixed a i{
        width:45px;
        font-size:18px;
    }

    .tmce-social-fixed a:hover{
        width:45px;
    }

    .tmce-social-fixed a span{
        display:none;
    }

}

/* Mobile */
@media (max-width: 767px) {
    .grid-container{
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}



/* Hide desktop menu on mobile */

@media(max-width:991px){

.tm-navbar{
    display:none;
}

.tm-toggle{
    display:flex;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.tm-toggle span{
    width:28px;
    height:3px;
    background:#222;
    border-radius:20px;
}

/* Overlay */

.menu-overlay{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    visibility:hidden;
    opacity:0;
    transition:.35s;
    z-index:999;

}

/* Sidebar */

.mobile-menu{

    position:fixed;
    top:0;
    left:-320px;
    width:300px;
    height:100%;
    background:#fff;
    transition:.4s ease;
    z-index:1000;
    overflow-y:auto;
    box-shadow:0 0 30px rgba(0,0,0,.2);

}

.mobile-menu.active{
    left:0;
}

.menu-overlay.active{

    visibility:visible;
    opacity:1;

}

/* Header */

.mobile-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    /* background:#0d6efd; */
    color:#fff;

}

.close-menu{

    font-size:28px;
    cursor:pointer;

}

.mobile-menu ul{

    list-style:none;
    padding:0;
    margin:0;

}

.mobile-menu ul li{

    border-bottom:1px solid #eee;

}

.mobile-menu ul li a{

    display:block;
    padding:15px 20px;
    text-decoration:none;
    color:#222;
    font-weight:500;

}

.mobile-menu ul li a:hover{

    background:#f5f5f5;

}

/* submenu */

.submenu-btn{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    cursor:pointer;
    font-weight:600;

}

.submenu{

    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    background:#f8f8f8;

}

.submenu li a{

    padding-left:40px;
    font-size:15px;

}

.has-submenu.active .submenu{

    max-height:400px;
    overflow: scroll;

}

.has-submenu.active span{

    transform:rotate(45deg);
    transition:.3s;

}

body.menu-open{

    overflow:hidden;

}

}

nav.mobile-menu {
    display: none;
}


/* start featured courses */

.service_courses{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}