@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900|Roboto:300,400,500,700,900');

/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(7, 30, 65, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo a span {
    color: #fc0201;
}

/* Main Navigation */
.main_nav {
    margin-left: auto;
}

.main_nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main_nav ul li {
    margin-left: 40px;
}

.main_nav ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.main_nav ul li a:hover {
    color: #fc0201;
}

.main_nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fc0201;
    transition: width 0.3s ease;
}

.main_nav ul li a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger_container {
    display: none;
    cursor: pointer;
    margin-left: 20px;
}

.hamburger_container i {
    color: #ffffff;
    font-size: 24px;
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: rgba(7, 30, 65, 0.98);
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-dropdown ul li a {
    display: block;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-dropdown ul li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fc0201;
    padding-left: 35px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .main_nav {
        display: none;
    }
    
    .hamburger_container {
        display: block;
    }
    
    .header {
        padding: 0 20px;
    }
}

@media (max-width: 575px) {
    .logo a {
        font-size: 24px;
    }
    
    .hamburger_container i {
        font-size: 20px;
    }
}

/* Ensure content doesn't hide behind fixed header */
.super_container {
    padding-top: 80px;
}

body
{
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 2;
	font-weight: 400;
	background: #FFFFFF;
	color: #6e6e6e;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 1.86;
	font-weight: 400;
	color: #1a1919dd;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #fc0201;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	--o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: #f82b06;
}
p a:hover
{
	color: #FFFFFF;
	background: #fc0201;
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background: #e8f4ff;
	color: #fc0201;
}
p::selection
{
	background: #e8f4ff;
}
h1{font-size: 48px;}
h2{font-size: 24px;}
h3{font-size: 18px;}
h4{font-size: 14px;}
h5{font-size: 11px;}
h1, h2, h3, h4, h5, h6
{
	color: #28262d;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	background: #fc0201;
	color: #fff;
}
::-webkit-input-placeholder
{
	font-size: 14px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #9988ba !important;
}
:-moz-placeholder /* older Firefox*/
{
	font-size: 14px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #9988ba !important;
}
::-moz-placeholder /* Firefox 19+ */ 
{
	font-size: 14px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #9988ba !important;
} 
:-ms-input-placeholder
{ 
	font-size: 14px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #9988ba !important;
}
::input-placeholder
{
	font-size: 14px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: #9988ba !important;
}
.form-control
{
	color: #db5246;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	--o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	--o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	--o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	--o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.bez_1
{
	-webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	-moz-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	-ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	--o-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.button
{
	display: inline-block;
	height: 54px;
	width: 174px;
	text-align: center;
	border: solid 2px #071e41;
	background: transparent;
}
.button a
{
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 50px;
	text-transform: uppercase;
	color: #071e41;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}

/*********************************
3. Home
*********************************/

.home
{
	width: 100%;
	height: 100vh;
}
.home_background_container
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.home_background
{
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

/*********************************
3.1 Header
*********************************/

.header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: rgba(255, 255, 255, 0.98);
	z-index: 1000;
	transition: all 300ms ease;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/*********************************
3.1.1 Logo
*********************************/

.logo
{
	padding-left: 57px;
	flex-basis: 40px;
	text-align: right;
}
.logo a
{
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	color: #071e41 !important;
	transition: all 200ms ease;
}

/*********************************
3.1.2 Main Navigation
*********************************/

.main_nav
{
	flex-basis: 200%;
}
.main_nav ul
{
	display: inline-block;
	margin-right: 100px;
	-webkit-transform: translateY(-4px);
	-moz-transform: translateY(-4px);
	-ms-transform: translateY(-4px);
	-o-transform: translateY(-4px);
	transform: translateY(-4px);
}
.main_nav ul li
{
	display: inline-block;
	margin-right: 65px;
}
.main_nav ul li:last-child
{
	margin-right: 0px;
}
.main_nav ul li a
{
	display: block;
	font-size: 15px;
	font-weight: 400;
	line-height: 40.51px;
	color: #071e41;
}
.main_nav ul li.active a
{
	font-weight: 700;
}

/*********************************
3.1.3 Search
*********************************/

.search
{
	display: inline-block;
	margin-right: 49px;
	width: 237px;
	height: 100%;
}
.search_content
{
	width: 100%;
	height: 100%;
}
.search_button
{
	width: 40px;
	height: 40px;
	background: transparent;
	cursor: pointer;
}
.search_button:active
{
	background: #071e41;
}
.search_form
{
	position: absolute;
	right: 0;
	top: 90px;
	width: 237px;
	height: 40px;
	visibility: hidden;
	opacity: 0;
}
.search_form.active
{
	top: 75px;
	visibility: visible;
	opacity: 1;
}
.search_input
{
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	color: #1b0b32;
	padding-left: 20px;
	outline: none !important;
	border: none !important;
	box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

/*********************************
3.1.4 Hamburger
*********************************/

@media (max-width: 991px) {
    .hamburger_container {
        display: block;
    }
    
    .service_item {
        margin: 0 15px 30px;
    }
    
    .services {
        padding: 70px 0 30px;
    }
    
    .main_nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: #ffffff;
        transition: all 0.3s ease;
        padding: 20px 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .main_nav.active {
        left: 0;
    }
    
    .main_nav ul {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .main_nav ul li {
        margin: 10px 0;
    }
}

.hamburger_container
{
	display: none;
	width: 26px;
	height: 26px;
	cursor: pointer;
	transform: rotate(0deg);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	color: #071e41 !important;
}
.hamburger_container i
{
	font-size: 26px;
	color: #071e41 !important;
}
.hamburger_container:hover i
{
	color: #fc0201;
}

	.double_arrow_container
{
	width: 19.5%;
	height: 100%;
	float: left;
}
.double_arrow
{
	padding: 5px;
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	transform: translateY(-5px);
	cursor: pointer;
}
.double_arrow i
{
	color: #FFFFFF;
}
.double_arrow i:first-child
{
	margin-right: -3px;
}
.double_arrow:hover i
{
	color: #fc0201;
}

/*********************************
3.3 Next Section Scroll
*********************************/

.next_section_scroll
{
	display: none;
	position: absolute;
	left: 50%;
	bottom: 40px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	cursor: pointer;
	z-index: 9;
	padding: 10px;
}
.next_section i
{
	display: block;
	color: #FFFFFF;
}
.next_section i:first-child
{
	margin-bottom: -4px;
}
.next_section_scroll:hover i
{
	color: #fc0201;
}

/*********************************
4. Menu
*********************************/

.menu_container
{
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: #FFFFFF;
	z-index: 11;
	opacity: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	-moz-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	-ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	--o-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
.menu_container.active
{
	right: 0;
	opacity: 1;
}
.menu
{
	width: 100%;
	height: 100%;
}
.menu_close
{
	position: absolute;
	top: 50px;
	right: 30px;
	cursor: pointer;
}
.menu_close i
{
	font-size: 28px;
}
.menu_close:hover i
{
	color: #fc0201;
}
.menu ul
{
	padding-top: 115px;
	padding-right: 50px;
}
.menu ul li
{
	position: relative;
}
.menu ul li::after
{
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -10px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fc0201;
	content: '';
}
.menu ul li.active a
{
	font-weight: 700;
}
.menu ul li a
{
	color: #000;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	--o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.menu ul li a:hover
{
	color: #fc0201;
}

/*********************************
5. Icon Boxes
*********************************/

.icon_boxes
{
	width: 100%;
	padding-top: 123px;
	padding-bottom: 129px;
}
.icon_box_title
{
	padding-right: 50px;
	
}
.icon_box_title h1
{
	line-height: 1.25;
}
.icon_box_button
{
	margin-top: 40px;
}
.icon_box_button:hover
{
	background: #071e41;
}
.icon_box_button:hover a
{
	color: #FFFFFF;
}
.icon_box_col
{
	padding-top: 21px;
}
.icon_box_item
{
	margin-bottom: 63px;
}
.icon_box_item:last-child
{
	margin-bottom: 0px;
}
.icon_box_item h2
{
	margin-bottom: 21px;
}
.icon_box_item p
{
	margin-bottom: 0px;
}

/*********************************
6. Vertical Slider Section
*********************************/

.v_slider_section
{
	height: 625px;
	padding-bottom: 65px;
}
.v_slider_image
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	box-shadow: 0px 45px 59px rgba(24, 29, 33, 0.23);
}
.v_slider_item
{
	border: none !important;
}
.v_slider_item:focus
{
	outline: none !important;
	border: none !important;
}
.v_slider_item h1
{
	line-height: 52px;
}
.v_slider_item h1:last-of-type
{
	margin-bottom: 81px;
}
.person
{
	margin-top: 67px;
}
.person_image
{
	width: 44px;
	height: 44px;
}
.person_image img
{
	width: 100%;
}
.person_meta
{
	padding-left: 28px;
}
.person_name
{
	font-size: 15px;
	color: #28262d;
	margin-top: -5px;
	margin-bottom: -6px;
}
.person_title
{
	font-size: 13px;
	color: #909090;
}
.v_slider .slick-dots
{
	position: absolute;
	top: 50%;
	right: -145px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}
.v_slider .slick-dots
{
	width: 18px;
}
.v_slider .slick-dots li
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	height: 35px;
}
.v_slider .slick-dots li button
{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	text-indent: -9999px;
	cursor: pointer;
	background: #d6cbed;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	--o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.v_slider .slick-dots li button:focus,
.v_slider .slick-dots li button:active
{
	outline: none !important;
	border: none !important;
}
.v_slider .slick-dots li.slick-active button
{
	width: 18px;
	height: 18px;
	background: #071e41;
}

/*********************************
7. Services Section
*********************************/

.services {
    width: 100%;
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.services .section_title {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.services .section_title h1 {
    color: #071e41;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}


/* Responsive Styles */
@media (max-width: 1199px) {
    .services-grid {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .service-content {
        padding: 30px 25px 25px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 991px) {
    .services {
        padding: 80px 0;
    }
    
    .services .section_title h1 {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 720px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .services {
        padding: 70px 0;
    }
    
    .services .section_title h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .services .section_title span {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        padding: 0 15px;
        gap: 30px;
    }
    
    .service-content {
        padding: 30px 25px 25px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 575px) {
    .services {
        padding: 60px 0;
    }
    
    .services .section_title h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .services .section_title span {
        font-size: 1rem;
    }
    
    .services-grid {
        padding: 0 15px;
    }
    
    .service-content {
        padding: 30px 20px 25px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
        margin: 0 0 15px;
    }
    
    .service-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .service-btn {
        padding: 10px 25px;
        font-size: 0.875rem;
        min-width: 140px;
    }
}

/*********************************
8. Features
*********************************/

.features
{
	padding-top: 120px;
	padding-bottom: 130px;
	background: #fafbfb;
}
.features_row
{
	margin-top: 35px;
}
.features_col
{
	padding-top: 69px;
	padding-bottom: 69px;
}
.features_item
{
	margin-bottom: 60px;
}
.features_col > div:last-of-type
{
	margin-bottom: 0px;
}
.features_button
{
	margin-top: 20px;
}
.features_button:hover,
.features_button_2:hover
{
	background: #071e41;
}
.features_button:hover a,
.features_button_2:hover a
{
	color: #FFFFFF;
}
.features_button_2
{
	display: none;
}

/*********************************
9. Call to action
*********************************/

.cta
{
	width: 100%;
	background: #b0d5db;
	
}
.cta_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.cta_content
{
	padding-top: 116px;
	padding-bottom: 101px;
}
.cta_content h1
{
	color: #FFFFFF;
	margin-bottom: 25px;
}
.cta_content p
{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.875;
	color: #FFFFFF;
	margin-bottom: 0px;
}
.cta_image
{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}
.cta_image img
{
	width: 776px;
	height: auto;
}

/*********************************
10. Text Line
*********************************/

.text_line
{
	width: 100%;
	background: #FFFFFF;
}
.text_line_image
{
	position: absolute;
	bottom: 49px;
	right: 0;
}
.text_line_image img
{
	max-width: 100%;
	height: auto;
}
.text_line_content
{
	padding-top: 127px;
	padding-bottom: 118px;
}
.text_line_content h1
{
	margin-bottom: 40px;
}
.text_line_content p
{
	margin-bottom: 41px;
}
.text_line_button:hover
{
	background: #071e41;
}
.text_line_button:hover a
{
	color: #FFFFFF;
}

/*********************************
11. Newsletter
*********************************/

.newsletter
{
	width: 100%;
	background: #1b0d37;
}
.newsletter_content
{
	padding-top: 110px;
	padding-bottom: 141px;
}
.newsletter_title
/* Empty ruleset removed */
.newsletter_title h1
{
	color: #FFFFFF;
	margin-bottom: 13px;
}
.newsletter_title span
{
	font-size: 16px;
	font-weight: 500;
	color: #FFFFFF;
}
.newsletter_form_container
{
	text-align: left;
	margin-top: 77px;
}
.newsletter_email
{
	height: 53px;
	background: #071e41;
	border: none;
	padding-left: 30px;
	width: calc(100% - 174px - 26px);
	margin-right: 22px;
	color: #FFFFFF;
}
.newsletter_email:focus
{
	outline: none;
	border: none;
}
.newsletter_submit_button
{
	cursor: pointer;
	text-transform: uppercase;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 700;
}
.newsletter_submit_button:hover
{
	background: #071e41;
}
.newsletter_submit_button:focus
{
	outline: none;
	border: none;
}

/*********************************
12. Footer
*********************************/

.footer
{
	padding-top: 99px;
	padding-bottom: 82px;
}
.footer_logo
{
	padding-left: 0px;
	margin-bottom: 39px;
}
.footer_logo a
{
	color: #071e41;
	line-height: 1;
}
.footer_intro p
{
	margin-bottom: 0px;
}
.footer_social
{
	margin-top: 27px;
}
.footer_social ul
{
	display: inline-block;
	margin-left: -5px;
}
.footer_social ul li
{
	display: inline-block;
	margin-right: 22px;
}
.footer_social ul li a
{
	padding: 5px;
}
.footer_social ul li a i
{
	font-size: 12px;
	color: #bab6c3;
}
.footer_social ul li a:hover i
{
	color: #fc0201;
}
.footer_cr
{
	font-size: 16px;
	font-weight: 500;
	color: #cacaca;
	margin-top: 65px;
}
.footer_cr_2
{
	display: none;
	font-size: 16px;
	font-weight: 500;
	color: #cacaca;
	margin-top: 65px;
}
.footer_col
{
	margin-bottom: 27px;
}
.footer_col:last-child
{
	margin-bottom: 0px;
}
.footer_col_title
{
	font-size: 18px;
	font-weight: 500;
	color: #28262d;
	margin-bottom: 9px;
}
.footer_col ul li
{
	margin-bottom: 4px;
}
.footer_col ul li a
{
	font-size: 16px;
	font-weight: 500;
	color: #909090;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	--o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.footer_col ul li a:hover
{
	color: #fc0201;
}

/*********************************
Enhanced Footer Styles
*********************************/

.footer {
	padding: 50px 0 0 0;
	background: linear-gradient(135deg, #071e41 0%, #3288e8 100%);
}

.footer_brand {
	margin-bottom: 20px;
}

.footer_brand .logo {
	margin-bottom: 20px;
}

.footer_brand .logo a {
	color: #FFFFFF;
	font-size: 28px;
	line-height: 1.2;
}

.footer_brand .logo a span {
	color: #fc0201;
}

.footer_brand p {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255,255,255,0.85);
	margin-bottom: 0;
}

.footer_col_title {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer_col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer_col ul li {
	margin-bottom: 10px;
}

.footer_col ul li a {
	font-size: 15px;
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer_col ul li a:hover {
	color: #fc0201 !important;
	padding-left: 5px;
}

.footer_connect .footer_col_title {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer_social ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 15px;
}

.footer_social ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.footer_social ul li a i {
	font-size: 16px;
	color: #FFFFFF;
}

.footer_social ul li a:hover {
	background: #fc0201 !important;
	transform: translateY(-3px);
}

.footer_bottom {
	margin-top: 40px;
	padding: 25px 0;
	border-top: 1px solid rgba(255,255,255,0.15);
}

.footer_copyright {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
}

.footer_credits {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
}

.footer_credits a {
	color: #fc0201;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.footer_credits a:hover {
	color: #FFFFFF !important;
}

/* Responsive Footer */
@media (max-width: 767px) {
	.footer {
		padding: 40px 0 0 0 !important;
	}
	
	.footer_brand, .footer_col, .footer_connect {
		margin-bottom: 30px;
	}
	
	.footer_copyright, .footer_credits {
		text-align: center !important;
		margin-bottom: 10px;
	}
	
	.text-md-right {
		text-align: center !important;
	}
}

/* ===================================================
   Services Section Styling
   =================================================== */

.services_section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services_section .section_title {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.services_section .section_title h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #071e41;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.services_section .section_title h1::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #fc0201;
    border-radius: 2px;
}

.services_section .section_title span {
    display: block;
    font-size: 1.2rem;
    color: #6e6e6e;
    margin-top: 15px;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Service Card Styling */
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-content {
    padding: 35px 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #071e41;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #fc0201, #ff6b6b);
    border-radius: 3px;
}

.service-card p {
    color: #6e6e6e;
    line-height: 1.8;
    margin: 15px 0 25px;
    flex-grow: 1;
    text-align: center;
}

.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #071e41 0%, #3288e8 100%);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(7, 30, 65, 0.2);
    margin: 0 auto;
    width: fit-content;
}

.service-btn:hover {
    background: linear-gradient(135deg, #fc0201 0%, #ff6b6b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 2, 1, 0.3);
}

/* Service Card Colors */
.service-card:nth-child(1) h3::after { background: linear-gradient(90deg, #ff6b6b, #ff8e8e); }
.service-card:nth-child(2) h3::after { background: linear-gradient(90deg, #4ecdc4, #66d9e8); }
.service-card:nth-child(3) h3::after { background: linear-gradient(90deg, #ffd166, #ffde7d); }
.service-card:nth-child(4) h3::after { background: linear-gradient(90deg, #06d6a0, #4cc9f0); }
.service-card:nth-child(5) h3::after { background: linear-gradient(90deg, #7b2cbf, #c77dff); }

/* Hover Effects */
.service-card:nth-child(1):hover { border-top: 4px solid #ff6b6b; }
.service-card:nth-child(2):hover { border-top: 4px solid #4ecdc4; }
.service-card:nth-child(3):hover { border-top: 4px solid #ffd166; }
.service-card:nth-child(4):hover { border-top: 4px solid #06d6a0; }
.service-card:nth-child(5):hover { border-top: 4px solid #7b2cbf; }

/* Responsive Design */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .service-content {
        padding: 30px 25px;
    }
}

@media (max-width: 991px) {
    .services_section .section_title h1 {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .services_section {
        padding: 70px 0;
    }
    
    .services_section .section_title h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-card {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .services_section .section_title h1 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-btn {
        width: 100%;
        padding: 10px 20px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }