/* ===== GLOBAL SIDEBAR FORM ===== */
.global-sidebar-form{
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    display: flex;
    align-items: center;
    font-family: 'Montserrat-Regular', Arial, sans-serif;
}
.global-sidebar-form.hide-during-popup{
    display: none !important;
}
.global-sidebar-toggle{
    writing-mode: vertical-rl;
    transform: none;
    border: none;
    background:#fe4d29;
    color:#fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 18px 10px;
    border-radius: 0 14px 14px 0;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(254,77,41,0.28);
}

.global-sidebar-toggle:hover{
    background: #e74522;
}

.global-sidebar-panel{
    width: 340px;
    max-width: 340px;
    background:#fff;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
    overflow: hidden;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
}
.global-sidebar-form.active .global-sidebar-panel{
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.global-sidebar-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #0b1f3a;
}
.global-sidebar-header h3{
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.global-sidebar-close{
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.global-sidebar-body{
    padding: 18px;
    background: #fff;
}

.global-form-group{
    margin-bottom: 14px;
}

.global-form-group input,
.global-form-group textarea{
    width: 100%;
    border: 1px solid #d7dee8;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    outline: none;
    box-shadow: none;
    background: #fff;
}

.global-form-group input:focus,
.global-form-group textarea:focus{
    border-color: #fe4d29;
    box-shadow: 0 0 0 3px rgba(254,77,41,0.10);
}

.global-form-group textarea{
    resize: vertical;
    min-height: 95px;
}

.global-sidebar-submit{
    width: 100%;
    border: none;
    border-radius: 10px;
    background: #fe4d29;
    color: #fff;
    height: 48px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.global-sidebar-submit:hover{
    background: #e74522;
}
.global-sidebar-form.hide-on-consultation{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-20px) translateY(-50%);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
@media (max-width: 991px){
    .global-sidebar-form{
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        top: auto;
        transform: none !important;
        display: block;
        z-index: 99999;
    }

    .global-sidebar-toggle{
        writing-mode: horizontal-tb;
        transform: none !important;
        width: 100%;
        min-height: 48px;
        border-radius: 14px;
        padding: 12px 16px;
        font-size: 15px;
        line-height: 1.2;
        box-shadow: 0 10px 24px rgba(254,77,41,0.24);
    }
    .global-sidebar-panel{
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(100% + 10px);
        width: 100%;
        max-width: 100%;
        max-height: 70vh;
        overflow-y: auto;
        border-radius: 16px;
        margin-top: 0;
        transform: translateY(12px);
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    }

    .global-sidebar-form.active .global-sidebar-panel{
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .global-sidebar-header{
        padding: 14px 16px;
    }

    .global-sidebar-header h3{
        font-size: 18px;
    }

    .global-sidebar-body{
        padding: 16px;
    }

    .global-form-group input,
    .global-form-group textarea{
        font-size: 16px;
    }
}
/* FINAL CERTIFICATION / ACHIEVEMENT ARROWS */
.achievement-slider-wrap{
    position: relative;
    width: 80%;
}

.achievement-carousel-new{
    position: relative;
}

.achievement-carousel-new .owl-nav{
    position: absolute;
    top: calc(50% + 40px);  /* 👈 adjust karo */
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.achievement-carousel-new .owl-prev,
.achievement-carousel-new .owl-next{
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    pointer-events: auto;
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(11,31,58,0.55) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    margin-top: 12px;
    padding: 0 !important;
}

.achievement-carousel-new .owl-prev{
    left: -18px !important;
    right: auto !important;
}

.achievement-carousel-new .owl-next{
    right: -18px !important;
    left: auto !important;
}

.achievement-carousel-new .owl-prev:hover,
.achievement-carousel-new .owl-next:hover{
    background: #fe4d29 !important;
    color: #fff !important;
}

@media (max-width: 991px){
    .achievement-slider-wrap{
        width: 100%;
    }

    .achievement-carousel-new .owl-prev{
        left: -10px !important;
    }

    .achievement-carousel-new .owl-next{
        right: -10px !important;
    }
}

@media (max-width: 767px){
    .achievement-carousel-new .owl-prev,
    .achievement-carousel-new .owl-next{
        width: 36px;
        height: 36px;
    }

    .achievement-carousel-new .owl-prev{
        left: -6px !important;
    }

    .achievement-carousel-new .owl-next{
        right: -6px !important;
    }
}
.achievement-carousel-new .owl-dots{
    margin-top: 12px !important;
}
/* ===== HOME PAGE FORM SAME AS SIDEBAR ===== */
/* ===== HOME PAGE FORM INPUT STYLE (SIDEBAR LIKE) ===== */
/* homepage banner form wrapper */
.homepage-form{
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    margin-right: 0;
}

/* title */
.homepage-form h3{
    font-size: 22px;
    margin-bottom: 18px;
    line-height: 1.2;
}

/* form area */
.homepage-form form{
    width: 100%;
    padding: 0;
}

/* input + textarea */
.homepage-form input,
.homepage-form textarea{
    width: 100%;
    border: 1px solid #d7dee8 !important;
    border-radius: 5px !important;
    background: #ffffff !important;
    color: #333 !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    font-family: 'Montserrat-Regular', Arial, sans-serif !important;
    box-shadow: none !important;
    margin-bottom: 14px !important;
}

/* input height */
.homepage-form input{
    height: 52px !important;
}

/* textarea height */
.homepage-form textarea{
    min-height: 90px !important;
    resize: vertical;
}

/* focus */
.homepage-form input:focus,
.homepage-form textarea:focus{
    border-color: #fe4d29 !important;
    box-shadow: 0 0 0 3px rgba(254,77,41,0.10) !important;
    outline: none;
}

/* placeholder */
.homepage-form input::placeholder,
.homepage-form textarea::placeholder{
    color: #8f98a3;
    font-size: 14px;
    font-weight: 400;
}

/* submit button */
.homepage-form{
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: 20px;
    background: rgba(20, 24, 30, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 26px 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.10);
}

.homepage-form h3{
    color: #fe4d29 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 18px !important;
    line-height: 1.2 !important;
}

.homepage-form form{
    width: 100%;
    padding: 0;
    margin: 0;
}

.homepage-form input,
.homepage-form textarea{
    width: 100%;
    height: 48px !important;
    border: none !important;
    border-radius: 10px !important;
    background: #f4f4f4 !important;
    color: #333 !important;
    padding: 0 22px !important;
    font-size: 14px !important;
    box-shadow: none !important;
    margin-bottom: 14px !important;
}

.homepage-form textarea{
    height: 96px !important;
    min-height: 96px !important;
    border-radius: 10px !important;
    padding: 16px 22px !important;
    resize: none;
}

.homepage-form input:focus,
.homepage-form textarea:focus{
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(254,77,41,0.15) !important;
    outline: none;
}

.homepage-form input::placeholder,
.homepage-form textarea::placeholder{
    color: #8d96a0;
    font-size: 14px;
    font-weight: 400;
}

.homepage-form input[type="submit"],
.homepage-form .color1_bg{
    width: 100% !important;
    height: 50px !important;
    border: none !important;
    border-radius: 10px !important;
    background: #fe4d29 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 50px !important;
    text-align: center !important;
    margin-top: 4px !important;
    box-shadow: 0 10px 24px rgba(254,77,41,0.24);
}

.homepage-form input[type="submit"]:hover,
.homepage-form .color1_bg:hover{
    background: #e74522 !important;
}

@media (max-width: 991px){
    .homepage-form{
        max-width: 100%;
        margin: 20px auto 0;
        padding: 22px 18px;
    }
}
/* MAIN HEADING */
.theme_title h3{
    font-size: 34px;
    font-weight: 700;
    color: #0b1f3a;
    line-height: 1.3;
    margin-bottom: 10px;
}

/* HIGHLIGHT WORD (India) */
/* Center whole title block */
.theme_title{
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

/* Center heading text */
.theme_title h3{
    font-size: 36px;
    font-weight: 700;
    color: #0b1f3a;
    margin: 0;
}

/* Highlight word (orange part) */
.theme_title{
    text-align: center;
}

.theme_title h3{
    font-size: 30px;
    font-weight: 700;
    color: #0b1f3a;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
}
.theme_title:before{
    content:'';
    width: 150px;        
    height: 4px;         
    background:#fe4d29;
    position:absolute;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
    border-radius:10px;
}

.theme_title h3 span{
    color: #fe4d29;
}

@media (max-width: 991px){
    .theme_title h3{
        white-space: normal;
        font-size: 24px;
    }
}

/* COMMON SECTION HEADINGS */
.theme_title_common{
    text-align: center;
    position: relative;
    margin: 40px 0;
}

.theme_title_common h2{
    font-size: 25px;
    font-weight: 700;
    color:#0b1f3a;
    margin: 0;
}

.theme_title_common::after{
    content: "";
    width: 80px;
    height: 4px;
    background: #fe4d29;
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;
}
@media (max-width: 991px){
    .theme_title_common h2{
        font-size: 30px;
    }
}
         .achievement-custom-wrap{
            background:#f7f7f7;
            padding:18px;
         }

         .achievement-video-box{
            width:100%;
            margin-bottom:22px;
            text-align:center;
         }

         .achievement-video-box video{
            width:100%;
            max-width:100%;
            height:auto;
            display:block;
            background:#eaeaea;
         }

         .achievement-image-box{
            width:100%;
            margin-bottom:25px;
            text-align:center;
         }

         .achievement-image-box img{
            width:100%;
            max-width:100%;
            height:auto;
            display:block;
         }

         .achievement-certificates{
            margin-top:10px;
         }

         .achievement-certificates .item img{
            width:100%;
            height:auto;
            display:block;
         }

         @media only screen and (max-width: 767px){
            .achievement-custom-wrap{
               padding:10px;
            }
         }
         /* ===== Our Achievements Video Section ===== */
.achievement-custom-wrap{
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 30px;
}

.achievement-video-box{
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: transparent;
}

.achievement-hero-video{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 16px;
}

.achievement-video-overlay{
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
    border-radius: 16px;
}

.achievement-video-box::after{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    background: radial-gradient(circle, rgba(254,77,41,0.08), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.achievement-video-overlay,
.achievement-video-badge{
    z-index: 2;
}

@media only screen and (max-width: 991px){
    .achievement-custom-wrap{
        margin-bottom: 25px;
    }

    .achievement-video-box,
    .achievement-hero-video,
    .achievement-video-overlay{
        border-radius: 16px;
    }

    .achievement-video-badge{
        top: 14px;
        left: 14px;
        font-size: 13px;
        padding: 8px 14px;
    }
}

@media only screen and (max-width: 767px){
    .achievement-custom-wrap{
        margin-bottom: 20px;
    }

    .achievement-video-box,
    .achievement-hero-video,
    .achievement-video-overlay{
        border-radius: 12px;
    }

    .achievement-video-badge{
        top: 10px;
        left: 10px;
        font-size: 12px;
        padding: 7px 12px;
    }

    .achievement-video-box:hover{
        transform: none;
    }

    .achievement-video-box::after{
        display: none;
    }
}
.theme_title_center{
    text-align: center;
    margin-bottom: 10px;
}

.theme_title_center h2{
    font-size: 40px;
    font-weight: 700;
    color: #0b1f3a;
    margin: 0;
}

.theme_title_center h2 span{
    color: #fe4d29;
}

.theme_title_center::after{
    content: "";
    width: 100px;
    height: 4px;
    background: #fe4d29;
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;
}
.theme_title_center h2{
    letter-spacing: 0.5px;
}


/* ===== NEW CERTIFICATE SLIDER ===== */
/* ===== CERTIFICATES SLIDER ===== */
/* ===== CERTIFICATES SECTION ===== */
.achievement-certificates{
    margin-top: 10px;
}

.achievement-slider-shell{
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 8px 0 0;
}

.achievement-slider-intro{
    width: 20%;
    min-width: 190px;
    text-align: center;
}

.achievement-slider-intro h3{
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    color: #0b1f3a;
}

.achievement-slider-intro p{
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #6f7b88;
}

.achievement-slider-wrap{
    width: 80%;
    position: relative;
}

.achievement-carousel-new .item{
    padding: 8px;
}

.achievement-item-card-inner{
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.achievement-item-card-inner img{
    width: 100%;
    height: 170px;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    margin: 0 auto;
}

@media (max-width: 991px){
    .achievement-slider-shell{
        flex-direction: column;
        gap: 12px;
    }

    .achievement-slider-intro,
    .achievement-slider-wrap{
        width: 100%;
    }

    .achievement-slider-intro h3{
        font-size: 28px;
    }

    .achievement-item-card-inner img{
        height: 140px;
    }
}

@media (max-width: 767px){
    .achievement-slider-shell{
        gap: 8px;
    }

    .achievement-slider-intro h3{
        font-size: 22px;
    }

    .achievement-slider-intro p{
        font-size: 12px;
        margin-top: 6px;
    }

    .achievement-item-card-inner{
        padding: 8px;
        border-radius: 14px;
    }

    .achievement-item-card-inner img{
        height: 110px;
    }
}
/* ===== HOMEPAGE HERO FORM ONLY ===== */
.hero-slider .hero-form-col{
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.hero-slider .hero-form-col .homepage-form{
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 0 0 auto !important;
    background: rgba(20, 24, 30, 0.88) !important;
    border-radius: 14px !important;
    padding: 28px 26px !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
}

.hero-slider .hero-form-col .homepage-form h3{
    color: #fe4d29 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 0 22px 0 !important;
    line-height: 1.2 !important;
}

.hero-slider .hero-form-col .homepage-form form{
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-slider .hero-form-col .homepage-form-row{
    margin-left: -10px !important;
    margin-right: -10px !important;
}

.hero-slider .hero-form-col .homepage-form-col{
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.hero-slider .hero-form-col .homepage-form input[type="text"],
.hero-slider .hero-form-col .homepage-form input[type="email"],
.hero-slider .hero-form-col .homepage-form input[type="tel"],
.hero-slider .hero-form-col .homepage-form .homepage-submit-btn{
    display: block !important;
    width: 100% !important;
    height: 58px !important;
    margin: 0 0 18px 0 !important;
    padding: 0 22px !important;
    border: none !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
}


.hero-slider .hero-form-col .homepage-form input[type="text"],
.hero-slider .hero-form-col .homepage-form input[type="email"],
.hero-slider .hero-form-col .homepage-form input[type="tel"]{
    background: #f1efef !important;
    color: #333 !important;
    font-size: 15px !important;
}

.hero-slider .hero-form-col .homepage-form input[type="text"]::placeholder,
.hero-slider .hero-form-col .homepage-form input[type="email"]::placeholder,
.hero-slider .hero-form-col .homepage-form input[type="tel"]::placeholder{
    color: #8d96a0 !important;
    font-size: 15px !important;
    opacity: 1 !important;
}

.hero-slider .hero-form-col .homepage-form .homepage-submit-btn{
    background: #fe4d29 !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    text-align: center !important;
    line-height: 58px !important;
    margin-bottom: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.hero-slider .hero-form-col .homepage-form .homepage-submit-btn:hover{
    background: #e74522 !important;
}

.hero-slider .hero-form-col .homepage-form input[type="hidden"]{
    display: none !important;
}

@media (max-width: 991px){
    .hero-slider .hero-form-col .homepage-form{
        max-width: 100% !important;
        margin: 20px auto 0 !important;
        padding: 22px 18px !important;
    }
}
/* ===== FORCE FIX BUTTON WIDTH ISSUE ===== */
.hero-slider .homepage-submit-btn{
    width: 100% !important;
    height: 58px !important;
    border-radius: 12px !important;
    background: #fe4d29 !important;
    color: #fff !important;
    font-weight: 700 !important;
}
/* ===== FINAL SERVICES WIDTH + LAYOUT FIX ===== */
.global-sidebar-form.hide-on-scroll-up{
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateX(-100%) translateY(-50%) !important;
  transition: all 0.3s ease !important;
}
