.ml-5 {
	margin-left : 5px;
}
.mr-5 {
	margin-right : 5px;
}
.footer_logo {
	width: 150px;
}
.footer_sub_form {
	display: block;
	position: relative;
	margin-top: 30px;
}
.footer_sub_form button{border:none;}
.footer_sub_btn {
	background-color: transparent;
	border-radius: 0px;
	color: #041a7a;
	cursor: pointer;
	display: block;
	font-size: 20px;
	height: 60px;
	position: absolute;
	right: 0px;
	top: -5px;
	padding: 0 20px;
	width: 25%;
	transition: 0.3s;
}
.footer_sub_input {
	background: #fff;
	border-radius: 10px;
	color: #0b104a;
	display: block;
	height: 50px;
	letter-spacing: 1px;
	margin: 0;
	padding: 0 60px 0 20px;
	text-transform: capitalize;
	width: 100%;
}
.reel_btn {
	background: transparent;
	border: transparent;
	padding: 12px 24px;
	border-radius: 15px;
	color: #fff;
	transition: 0.3s;
	font-weight: 600;
}

@media only screen and (max-width:960px){
	.reel_btn{
		padding: 14px 25px;
		margin-top: 0px;
	}
	.reel_btn {display:block;}
}
.grow_btn {
	background: #fff;
	border: 1px solid #041a7a;
	padding: 12px 24px;
	border-radius: 15px;
	color: #041a7a;
	transition: 0.3s;
	font-weight: 600;
}
.grow_btn i{margin-right:5px;}
.grow_btn:hover{
	background:#ffc107;
	color:#041a7a;
	border: 1px solid #ffc107;
}
@media only screen and (max-width:960px){
	.grow_btn{
		padding: 14px;
		margin-top: 0px;
	}
	.grow_btn {display:block;}
}
.driven_h4 {
	color: #fff !important;
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
}
.m_title {
	font-size: 22px;
	font-weight: 600;
	color: #041a7a;
	margin-bottom: 10px;
}
.text-blue {
	color: #041a7a;
}

.hero-text h1 span {
	position: relative;
	display: inline-block;
	color: #ffc107; /* optional highlight */
}

.hero-text h1 span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 4px;
	background: #ffc107;
	border-radius: 10px;
	animation: lineGrow 1s ease forwards;
}

@keyframes lineGrow {
	to {
		width: 15%;
	}
}

/* Underline target */
.story-heading {
	position: relative;
}

/* Animated underline */
.story-heading::after {
	content: "";
	position: absolute;
	left: 6%;
	transform: translateX(-50%);
	bottom: -8px;

	width: 0;
	height: 4px;

	background: #ffc107;
	border-radius: 10px;

	animation: storyLineGrow 1s ease forwards;
}

/* Animation */
@keyframes storyLineGrow {
	to {
		width: 12%;
	}
}

/* WHY SECTION TITLE */

.why-heading {
	position: relative;
	font-weight: 600;
	line-height: 50px;
	font-size: 38px;
	margin-bottom: 35px;
}

/* centered underline for full heading */
.why-heading::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -15px;

	width: 120px;
	height: 4px;

	background: #ffc107;
	border-radius: 10px;

	animation: whyLineGrow 1s ease forwards;
}

/* animation */
@keyframes whyLineGrow {
	from {
		width: 0;
	}
	to {
		width: 12%px;
	}
}

/* ===========================
   MEGA MENU - SERVICES
=========================== */

#navigation #main-menu .mega-parent {
	position: relative;
}

/* Mega Menu Container */
#navigation #main-menu .mega-menu {
	background: #041a7a;
	box-shadow: 0 0 10px 3px rgba(0,0,0,.08);

	position: absolute;
	left: -300px;
	top: 120%;

	width: 1000px;
	padding: 20px;

	border-top: 3px solid #ffc107;
	border-radius: 6px;

	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;

	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	z-index: 999;
}

/* Show Mega Menu */
#navigation #main-menu .mega-parent:hover .mega-menu {
	opacity: 1;
	visibility: visible;
	top: 120%;
}

/* Column */
#navigation #main-menu .mega-column {
	display: flex;
	flex-direction: column;
}

/* Heading */
#navigation #main-menu .mega-column h4 {
	color: #ffc107;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
	position: relative;
	padding-bottom: 5px;
}

/* Yellow underline */
#navigation #main-menu .mega-column h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;

	width: 35px;
	height: 2px;
	background: #ffc107;
}

/* Links */
#navigation #main-menu .mega-column a {
	color: #fff;
	font-size: 15px;
	padding: 0px 0;
	text-transform: capitalize;
	transition: 0.3s ease;
}

/* Hover */
#navigation #main-menu .mega-column a:hover {
	color: #ffc107;
	padding-left: 5px;
}

/* ===========================
   MOBILE VERSION
=========================== */

@media only screen and (max-width: 991px){

	#navigation #main-menu .mega-menu {
		position: static;
		width: 100%;
		display: block;
		padding: 15px;
		background: transparent;
		box-shadow: none;
		border-top: none;

		opacity: 1;
		visibility: visible;
	}

	#navigation #main-menu .mega-column {
		margin-bottom: 20px;
	}

	#navigation #main-menu .mega-column h4 {
		color: #ffc107;
		margin-bottom: 10px;
		font-size: 15px;
	}

	#navigation #main-menu .mega-column a {
		display: block;
		padding: 5px 0;
		font-size: 14px;
		color: #fff;
	}

	#navigation #main-menu .mega-column a:hover {
		padding-left: 0;
	}
}

/* ==========================
   MOBILE SERVICES MENU
========================== */

.mega-mobile-menu {
	background: rgba(255,255,255,0.03);
	padding: 10px 15px !important;
}

/* Each service block */
.mega-mobile-menu .service-group {
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	padding-bottom: 15px;
	margin-top: 15px;
}

/* Heading */
.mega-mobile-menu .service-group span {
	display: block;
	color: #ffc107;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	padding-bottom: 5px;
}

/* underline */
.mega-mobile-menu .service-group span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;

	width: 35px;
	height: 2px;
	background: #ffc107;
}

/* nested links */
.mega-mobile-menu .service-group ul {
	margin: 0;
	padding-left: 0;
}

.mega-mobile-menu .service-group ul li {
	margin-bottom: 6px;
	border: none;
}

/* service links */
.mega-mobile-menu .service-group ul li a {
	color: #fff !important;
	font-size: 14px !important;
	text-transform: capitalize !important;
	padding: 0 !important;
	display: block;
	transition: .3s ease;
}

/* hover */
.mega-mobile-menu .service-group ul li a:hover {
	color: #ffc107 !important;
	padding-left: 8px !important;
}

.floating_btn {
	position: fixed;
	bottom: 80px;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	pointer-events: none;
}

/* ==========================
   CREATIVE INFO BOX
========================== */

.creative-box {
	display: flex;
	align-items: center;
	gap: 18px;

	padding: 5px 0px;
	border-radius: 14px;

	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);

	transition: all 0.3s ease;
}

/* Icon side */
.creative-icon {
	min-width: 50px;
	width: 50px;
	height: 50px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: #cbd0e5fc;
	border-radius: 50%;

	transition: .3s ease;
}

.creative-icon i {
	color: #041a7a;
	font-size: 28px;
}

/* hover animation */
.creative-box:hover .creative-icon {
	transform: rotate(-8deg) scale(1.08);
}

/* Content side */
.creative-content h4 {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 700;
	color: #041a7d;
}

.creative-content p {
	margin: 0;
	font-size: 14px;
	color: #000;
	line-height: 1.5;
}

/* Mobile */
@media(max-width: 576px) {

	.creative-box {
		align-items: flex-start;
		gap: 15px;
		padding: 16px;
	}

	.creative-icon {
		width: 55px;
		height: 55px;
		min-width: 55px;
	}

	.creative-icon i {
		font-size: 22px;
	}

	.creative-content h4 {
		font-size: 18px;
	}

	.home_ps2 {
		top: 60%;
	}
}

.ab_area .row {
	align-items: center;
}

/* Right content column */
.ab_area .ab_content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 5 equal cards */

.tp_five_row {
	display: flex;
	flex-wrap: wrap;
}

.tp_five_row .custom-col {
	width: 20%;
	padding: 0 15px;
}

/* Tablet */
@media (max-width: 991px) {
	.tp_five_row .custom-col {
		width: 50%;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.tp_five_row .custom-col {
		width: 100%;
		padding-top: 10px;
	}
}

/* ==========================
   SERVICE CARD STYLE
========================== */

.service-card-new {
	text-align: center;
	padding: 35px 25px;
	border-radius: 18px;

	background: #fff;
	transition: all 0.35s ease;
	height: 100%;
}

/* Hover */
.service-card-new:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Icon */
.tp-icon {
	width: 60px;
	height: 60px;

	margin: 0 auto 22px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: linear-gradient(90deg, #0422b8, #041a7a);
	border-radius: 50%;

	transition: .3s ease;
}

/* icon hover */
.service-card-new:hover .tp-icon {
	transform: rotate(-8deg) scale(1.08);
}

/* icon */
.tp-icon i {
	color: #fff;
	font-size: 30px;
}

/* Heading */
.service-card-new h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #041a7a;
	line-height: 1.5;
}

/* Description */
.service-card-new p {
	font-size: 15px;
	line-height: 25px;
	color: #666;
	margin-bottom: 0;
}

/* Mobile */
@media(max-width: 768px){

	.service-card-new {
		padding: 28px 20px;
	}

	.tp-icon {
		width: 70px;
		height: 70px;
	}

	.tp-icon i {
		font-size: 28px;
	}

	.service-card-new h3 {
		font-size: 20px;
	}
}

/* ==========================
   SIDE BY SIDE CONTENT
========================== */

.amazing_ins_content {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 25px;
}

/* Icon */
.amazing_ins_content > i.fa-paper-plane-o {
    min-width: 90px;
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border-radius: 50%;

    color: #ffc107;
    font-size: 36px;

    transition: .3s ease;
    border: 1px solid #ffc107;
}

/* hover */
.amazing_ins_content:hover > i.fa-paper-plane-o {
    transform: rotate(-8deg) scale(1.08);
}

/* Wrap text content */
.amazing_ins_content h1,
.amazing_ins_content p,
.amazing_ins_content .btn_one {
    margin: 0;
}

/* Create content block */
.amazing_ins_content .content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title */
.amazing_ins_content h1 {
    font-size: 34px;
    font-weight: 700;
    color: #041a7a;
    margin-bottom: 10px;
}

/* Paragraph */
.amazing_ins_content p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
    margin-bottom: 18px;
}
.text-yellow {
	color: #ffc107;
}

/* Mobile */
@media(max-width: 768px){

    .amazing_ins_content {
        flex-direction: column;
        text-align: center;
        padding: 15px 5px;
    gap: 15px;
    }

    .amazing_ins_content h1 {
        font-size: 28px;
    }

    .amazing_ins_content > i.fa-paper-plane-o {
        width: 75px;
        height: 75px;
        min-width: 75px;
        font-size: 30px;
    }
}

/* Services Row Alignment */

#blog .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================
   CTA SECTION
========================== */

.amazing_ins_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 20px;
}

/* ======================
   ICON
====================== */

.call-icon {
    flex-shrink: 0;
}

.amazing_ins_content .call-icon i.fa-phone {
    min-width: 90px;
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border-radius: 50%;

    color: #ffc107;
    font-size: 36px;

    border: 1px solid #ffc107;
    transition: .3s ease;
}

/* hover */
.amazing_ins_content:hover .call-icon i.fa-phone {
    transform: rotate(-8deg) scale(1.08);
}

/* ======================
   CONTENT
====================== */

.call-content {
    flex: 1;
}

.call-content h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.call-content p {
    margin: 0;
    font-size: 17px;
    line-height: 28px;
    opacity: .9;
}

/* ======================
   BUTTON
====================== */

.call-btn {
    flex-shrink: 0;
}

/* ======================
   MOBILE
====================== */

@media(max-width: 991px){

    .amazing_ins_content {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .call-content h1 {
        font-size: 32px;
    }

    .amazing_ins_content .call-icon i.fa-phone {
        width: 75px;
        height: 75px;
        min-width: 75px;
        font-size: 28px;
    }
}

/* ==========================
   CHESS SECTION FIX
========================== */


.chess-section {
	padding: 0px !important;
    display: flex;
    align-items: center;
    background: #041a7a;
    border-radius: 20px;
}

.chess-content {
	padding: 20px;
}
.chess-h5 {
	margin-top: 10px;
	margin-bottom: 0px !important;
}

/* keep image same size */
.single_agent_image {
    flex: 0 0 40%;
}

/* right side split into 2 */
.chess-right {
    flex: 0 0 60%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding-left: 0px;
}

/* content section */
.chess-content {
    flex: 0 0 50%;
}

/* list section */
.chess-list {
    flex: 0 0 50%;
}

.chess-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.chess-list ul li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.chess-list ul li i {
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}

/* Mobile */
@media (max-width: 991px){

    .chess-section {
        flex-direction: column;
    }

    .chess-right {
        width: 100%;
        flex-direction: column;
        padding-left: 0;
        gap: 20px;
    }

    .chess-content,
    .chess-list {
        width: 100%;
        text-align: center;
    }

    .chess-list ul li {
        justify-content: center;
    }
}

.contact-h4 {
	font-weight: 600;
  color: #041a7a;
  font-size: 25px;
}

.contact-p {
	font-size: 18px;
  margin-bottom: 15px;
}


/* New Full Width Section */
.full-width-section {
    width: 100%;
    overflow: hidden;
}

/* Remove Bootstrap container limits */
.custom-full-container {
    width: 100% !important;
    max-width: 100% !important;
}

/* Full width card */
.full-width-card {
    width: 100%;
    border-radius: 0; /* optional */
    display: flex;
    align-items: center;
    justify-content: center;
/*    text-align: center;*/
    padding: 50px 20px;
}

.footer {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shape common style */
.footer-shape {
    position: absolute;
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: all 0.3s ease;
}

/* TOP LEFT */
.shape-1 {
    top: 80%;
    left: 5%;
    width: 120px;
    animation: floatSlow 7s ease-in-out infinite;
}

/* TOP RIGHT */
.shape-2 {
    top: 10%;
    right: 5%;
    width: 110px;
    animation: rotateSlow 15s linear infinite;
}

/* CENTER LEFT */
.shape-3 {
    top: 30%;
    left: 25%;
    transform: translateY(-50%);
    width: 90px;
    opacity: 0.10;
    animation: floatMedium 5s ease-in-out infinite;
}

/* CENTER RIGHT */
.shape-4 {
    top: 70%;
    right: 25%;
    transform: translateY(-50%);
    width: 100px;
    opacity: 0.10;
    animation: shakeRotate 6s ease-in-out infinite;
}

/* BIG BACKGROUND SHAPE */
.shape-5 {
    top: 50%;
    left: 50%;
    width: 260px;
    transform: translate(-50%, -50%);
    opacity: 0.04;
    filter: blur(2px);
    animation: pulseShape 8s ease-in-out infinite;
}

/* Animations */
@keyframes floatSlow {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes floatMedium {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(10px);
    }
    100% {
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shakeRotate {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    25% {
        transform: translateY(-50%) rotate(4deg);
    }
    50% {
        transform: translateY(-50%) rotate(-4deg);
    }
    75% {
        transform: translateY(-50%) rotate(2deg);
    }
    100% {
        transform: translateY(-50%) rotate(0deg);
    }
}

@keyframes pulseShape {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.03;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.06;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.03;
    }
}

/* Keep footer content above shapes */
.footer .container {
    position: relative;
    z-index: 2;
}

.contact_icon {
	position: fixed;
	left: 10px;
	bottom: 100px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #42db87;
	color: #fff;
	font-size: 25px;
	border-radius: 50%;
	text-decoration: none;
	pointer-events: auto;
	animation: pulseGreen 1.6s infinite;
}

.call_float {
	position: fixed;
	right: 10px;
	bottom: 100px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #007cff;
	color: #fff;
	font-size: 25px;
	border-radius: 50%;
	text-decoration: none;
	pointer-events: auto;
	animation: pulseBlue 1.6s infinite;
}

@keyframes pulseGreen {
	0% {
		box-shadow: 0 0 0 0 rgba(66, 219, 135, 0.6);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(66, 219, 135, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(66, 219, 135, 0);
	}
}

@keyframes pulseBlue {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 124, 255, 0.6);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(0, 124, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(0, 124, 255, 0);
	}
}