/* two fields in one row */
.form-group-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* modern inputs */
.contact-form-1 .form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: none;
}

/* textarea height */
.contact-form-1 textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: none;
}

/* focus effect */
.contact-form-1 .form-control:focus {
    border-color: #1e5bff;
    box-shadow: 0 0 0 3px rgba(30, 91, 255, 0.08);
}

/* modern button */
.contact-form-1 .btn-primary {
    height: 52px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(135deg, #1e5bff, #4f7cff);
    border: none;
    transition: all 0.25s ease;
}

.contact-form-1 .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(30, 91, 255, 0.25);
}

/* modal modern look */
.modal-content {
    border-radius: 18px;
    border: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* responsive */
@media (max-width: 576px) {
    .form-group-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===== MODERN SUBMIT BUTTON ===== */
.submit-btn1{
    display: flex;
    justify-content: center;
}
.submit-btn-modern {
   
    padding: 11px 18px 11px 22px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #2f57ef, #5a7cff);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* hover effect */
.submit-btn-modern:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 18px 40px rgba(47, 87, 239, 0.35); */
}

/* arrow animation */
.submit-btn-modern .btn-arrow {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.submit-btn-modern:hover .btn-arrow {
    transform: translateX(6px);
}

/* click effect */
.submit-btn-modern:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(47, 87, 239, 0.25);
}


/* contact page */
/* ===== FORM WRAPPER ===== */
.contact-form-wrap {
    background: #f4f6f9;
    padding: 50px;
    border-radius: 14px;
    position: relative;
}

/* subtitle */
.sub-title {
    color: #2f57ef;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

/* title */
.border-title {
    font-size: 42px;
    font-weight: 800;
    color: #0b1b3f;
    margin-bottom: 15px;
    position: relative;
}

/* blue underline */
.border-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #2f57ef;
    display: block;
    margin-top: 12px;
}

/* description */
.sec-text {
    color: #6c757d;
    max-width: 520px;
    line-height: 1.7;
}

/* ===== FORM GROUP ===== */
.contact-form .form-group {
    position: relative;
    margin-bottom: 22px;
}

/* ===== INPUT STYLE ===== */
.contact-form .form-control.style-white,
.contact-form .form-select.style-white {
    height: 58px;
    background: #ffffff;
    border: 1.5px solid #e6e9f0;
    border-radius: 10px;
    padding: 0 48px 0 18px;
    font-size: 15px;
    transition: all 0.25s ease;
}

/* textarea */
.contact-form textarea.form-control.style-white {
    height: auto;
    min-height: 150px;
    padding-top: 16px;
    resize: none;
}

/* focus effect */
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #2f57ef;
    box-shadow: 0 0 0 3px rgba(47, 87, 239, 0.08);
}

/* ===== RIGHT ICON ===== */
.contact-form .form-group i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa4b2;
    font-size: 16px;
    pointer-events: none;
}

/* textarea icon alignment */
.contact-form textarea+i {
    top: 22px;
    transform: none;
}

/* ===== BUTTON ===== */
.th-btn {
    background: var(--tg-secondary-color);;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* button hover */
.th-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(47, 87, 239, 0.35);
    color: #fff;
}

/* arrow animation */
.th-btn i {
    transition: transform 0.25s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .contact-form-wrap {
        padding: 35px 25px;
    }

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

@media (max-width: 575px) {
    .contact-form-wrap {
        padding: 28px 18px;
    }

    .border-title {
        font-size: 26px;
    }
}

/* cta area */
.cta-section {
    position: relative;
    background-image: url('/assets/img/broad-img/image.png') no-repeat center center fixed;
    background-size: cover;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



.cta-section .cta-content h2 {
    color:var(--tg-primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-section .cta-content p {
    color:#072d62;;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.cta-section .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--tg-primary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.cta-section .cta-btn i {
margin-right: 8px;
font-size: 23px;
}

.cta-section .cta-btn:hover {
    background: #072d62;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section .cta-content h2 {
        font-size: 2rem;
    }

   .cta-section .cta-content p {
        font-size: 1rem;
    }
}

.elementor-section {
    background-image: url('/assets/img/broad-img/home.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #0b1b3f;
}

.elementor-section{
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 44px 0px 44px 0px;
    z-index: 2;
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        /* disable sticky on mobile */
    }
}



.banner-area-two1 {
    position: relative;
    overflow: hidden;
    height: 714px;
    display: flex;
    align-items: center;
}

/* 🎥 video background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1; /* video at back */
}

/* 🌑 overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

/* ✅ IMPORTANT — bring content above */
.banner-area-two1 .container {
    position: relative;
    z-index: 3;
}
.title.hero-tittle{
    color: white;
}
@media (max-width: 991px) {
    .banner-area-two1 {
        min-height: 550px;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .banner-img{
        display: none;
    }
}
@media (max-width: 450px) {
      .banner-area-two1 {
        height: 480px;
        padding-top: 120px;
        padding-bottom: 60px;
    }
}
@media (max-width: 575px) {
    .banner-area-two1 {
        height: 480px;
        padding-top: 173px;
        padding-bottom: 60px;
    }
}

.fw-logo.fw-logo1 img{
    max-height: 80px;

}
.banner-img{
    display: none;
}

.contact-container h2{
    margin-bottom:10px;
}

.contact-container p{
    color:#666;
    margin-bottom:25px;
}

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

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

.contact-form button{
    width:100%;
    background:#0C4CA3;
    color:white;
    padding:12px;
    border:none;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
}

/* Mobile Responsive */
@media (max-width:768px){

.contact-section{
    padding:40px 15px;
}

.contact-container{
    padding:25px;
}

.contact-container h2{
    font-size:22px;
}

}

/* Small Mobile */
@media (max-width:480px){

.contact-form input,
.contact-form select,
.contact-form textarea{
    padding:10px;
    font-size:13px;
}

.contact-form button{
    font-size:14px;
}

}
.contact-img{
	height:300px
}
.contact-img img{
	height:100%;
	width:100%;
}
@media (max-width:576px){
	.contact-img img{
		height:auto;
		width:auto;
	}
}
@media (max-width:991px){
	.contact-img img{
		
		width:auto;
	}
}


.toast-message{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);
background:#28a745;
color:#fff;
padding:12px 25px;
border-radius:6px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
z-index:9999;
font-size:16px;
animation:fadeIn 0.4s ease;
}

@keyframes fadeIn{
from{opacity:0; transform:translate(-50%,-20px);}
to{opacity:1; transform:translate(-50%,0);}
}


.e-con .elementor-widget {
	margin:0px !important;
	padding-top:100px;
}