/* 

Template 2093 Flight

http://www.tooplate.com/view/2093-flight

*/

* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', arial, sans-serif;
    box-sizing: border-box;
}

body {
	overflow-x: hidden;
	background-color: #fff;
}

ul {
	list-style: none;
	margin: 0px;
}

p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
	margin-top: 0px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 36px;
	text-transform: uppercase;
	font-weight: 800;
	color: #1f3646;
    position: relative;
    padding-bottom: 15px;
}

.section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffe165;
    border-radius: 2px;
}

.section-heading p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 20px auto 0;
}

.page-direction-button a {
	display: inline-block;
	line-height: 60px;
	width: 270px;
	height: 60px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	background-color: #ffe165;
	font-size: 18px;
	font-weight: 700;
	color: #121212;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0px;
}

.page-direction-button a i {
	margin-right: 5px;
	font-size: 20px;
}

.primary-button a {
	text-decoration: none;
	margin-top: 15px;
	width: auto;
	padding: 0px 18px;
	height: 36px;
	background-color: #ffe165;
	font-size: 13px;
	color: #121212;
	font-weight: 600;
	display: inline-block;
	text-align: center;
	line-height: 36px;
}

.owl-pagination {
  margin-top: -95px;
  opacity: 1;
  display: inline-block;
  position: absolute;
  right: 0px;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.25);
  height: 80px;
  line-height: 80px;
  padding: 0px 15px;
}

.owl-page span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0px 5px;
  filter: alpha(opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #ffe165;
}

.banner .social-links {
  list-style: none;
  margin-top: 0px;
  padding-right: 100px;
}

.banner .social-links li {
  display: block;
  text-align: center;
  margin: 10px 0px;
  transition: all 0.5s;
}

.banner .social-links a {
  display:block;
  transition: all 0.5s;
  text-align: left;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing: 0.5px;
  color:#fff;
  font-size: 17px;
  font-weight: 400;
  display: inline-block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding-left: 20px;
  background-color: rgba(250, 250, 250, 0.1);
}

.banner .social-links a em {
	font-style: normal;
	font-weight: 700;
}

.banner .social-links a i {
	float: right;
	background-color: rgba(250, 250, 250, 0.2);
	height: 60px;
	width: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 36px;
}

.banner .social-links li:hover {
  background-color: rgba(255, 225, 101, 0.5);
}

.banner .social-links li:hover i {
  background-color: rgba(255, 225, 101, 0.3);
}


.banner {
	background-image: url(../img/banner-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	text-align: center;
	padding: 150px 0;
	display: flex;
	align-items: center;
	min-height: 100vh;
	position: relative;
    overflow: hidden;
}

.banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 54, 70, 0.85) 0%, rgba(25, 42, 57, 0.92) 100%);
    backdrop-filter: blur(2px);
}

.banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 225, 101, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.banner .container {
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.hero-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-content:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 225, 101, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    z-index: -1;
}

.hero-content:hover {
    transform: translateZ(30px) translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-logo {
    margin-bottom: 20px;
    text-align: center;
}

.hero-logo .logo-text {
    font-size: 42px;
    color: #ffe165;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    transform: translateZ(40px);
}

.hero-logo .logo-text:before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffe165 0%, #ffcc00 100%);
    border-radius: 2px;
    transform: scaleX(0.7);
    transform-origin: center;
    transition: all 0.3s ease;
}

.hero-logo .logo-text:hover:before {
    transform: scaleX(1);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 225, 101, 0.2);
    position: relative;
    transform: translateZ(30px);
}

.hero-subtitle {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transform: translateZ(25px);
}

.hero-buttons {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons .btn {
    margin: 0 10px 15px;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateZ(35px);
    border: none;
}

.hero-buttons .btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-buttons .btn:hover:after {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, #ffe165 0%, #ffcc00 100%);
    color: #1f3646;
    box-shadow: 
        0 8px 25px rgba(255, 225, 101, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffcc00 0%, #ffe165 100%);
    color: #1f3646;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 225, 101, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin: 0 15px 15px;
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(20px);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) translateZ(25px);
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.3),
        0 6px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feature-item i {
    color: #ffe165;
    font-size: 20px;
    margin-right: 10px;
    text-shadow: 0 0 10px rgba(255, 225, 101, 0.5);
}

/* Logo Text Styles */
.logo-text {
    padding-top: 20px;
    font-size: 32px;
    font-weight: 800;
    color: #ffe165;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 0 10px rgba(31, 54, 70, 0.8);
    font-family: 'Open Sans', sans-serif;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.logo-text:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffe165 0%, #ffcc00 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 225, 101, 0.8);
}

.logo-text:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Modern Navbar Styles */
.navbar-default {
    background-color: #1f3646;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.navbar-default .navbar-brand {
    color: #ffe165;
    font-weight: 800;
    font-size: 20px;
    padding: 8px 12px;
    height: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(31, 54, 70, 0.8);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.navbar-default .navbar-brand:before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 12px;
    width: calc(100% - 24px);
    height: 2px;
    background: linear-gradient(90deg, #ffe165 0%, #ffcc00 100%);
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #ffe165;
    transform: scale(1.05);
}

.navbar-default .navbar-brand:hover:before,
.navbar-default .navbar-brand:focus:before {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-default .navbar-nav > li > a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(31, 54, 70, 0.8);
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li.active > a {
    color: #ffe165;
    background-color: transparent;
}

.navbar-default .navbar-toggle {
    border: 1px solid #fff;
    border-radius: 0;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #ffe165;
    border-color: #ffe165;
}

.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
    background-color: #1f3646;
}

.btn-nav-phone {
    background-color: #ffe165;
    color: #1f3646 !important;
    font-weight: 700;
    border-radius: 30px;
    padding: 8px 15px !important;
    margin: 8px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-nav-phone:hover {
    background-color: #fff;
    color: #1f3646;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.navbar-default.scrolled {
    background-color: rgba(31, 54, 70, 0.95);
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

#weather {
    padding: 100px 0;
    background-color: #f8f9fa;
}

#weather .section-heading h2 {
    color: #1f3646;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

#weather .section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffe165;
    border-radius: 2px;
}

#weather .weather-content {
    background-image: none;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#weather .weather-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.about-image {
    text-align: center;
    perspective: 1000px;
    width: 100%;
}

.about-image img {
    max-width: 100%;
    height: auto;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 15px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: rotateY(0deg) translateZ(0);
    border: 5px solid #fff;
    background-clip: padding-box;
    position: relative;
}

.about-image img:hover {
    transform: rotateY(5deg) translateZ(20px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 225, 101, 0.3);
}

@media (max-width: 991px) {
    .about-image-wrapper {
        padding: 20px 0;
    }
    
    .about-image {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .about-image img {
        border-radius: 10px;
        border-width: 3px;
    }
    
    .about-image img:hover {
        transform: scale(1.02) rotateY(0deg);
    }
}

@media (max-width: 768px) {
    .about-image img {
        border-radius: 8px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .about-image img {
        border-radius: 6px;
        border-width: 2px;
    }
    
    #weather .weather-content {
        padding: 30px 20px;
    }
}

.weather-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

#weather .tabs {
  list-style: none;
  margin-top: 0px;
  padding-right: 0px;
  background-color: rgba(31, 54, 70, 0.5);}

#weather .tabs li {
  display: inline-block;
  text-align: center;
  margin: 0px -2px;
  width: 20%;
}

#weather .tabs li:last-child {
	margin-left: 2px;
}

#weather .tabs a {
  display:block;
  transition: all 0.5s;
  text-align: left;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing: 0.5px;
  color:#fff;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  width: 100%;
  height: 80px;
  line-height: 80px;
  padding-left: 0px;
  text-align: center;
}

#weather .tabs a em {
	font-style: normal;
	font-weight: 700;
}

#weather .tabs .active {
  background-color: #ffe165;
}

#weather .weather-item {
	padding: 40px 30px 30px 30px;
	text-align: center;
	display: block;
	background-color: rgba(250, 250, 250, 0.3);
}

.weathergroup {
	padding: 80px 30px;
}

.weather-item h6 {
	font-size: 18px;
	font-weight: 900;
	color: #fff;
	margin-bottom: 40px;
	margin-top: 0px;
}

.weather-item .weather-icon {
	display: inline-block;
	margin-bottom: 40px;	
	width: 64px;
	height: 64px;
}

.weather-item span {
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}

.weather-item ul {
	background-color: rgba(255, 255, 255, 0.75);
	margin-top: 40px;
	padding: 30px 20px;
}

.weather-item ul li {
	display: inline-block;
	margin: 0px 10px;
	font-size: 12px;
	font-weight: 700;
	color: #121212;
}

.weather-item ul li span {
	margin-top: 15px;
	font-size: 12px;
	color: #121212;
	background-color: rgba(0, 0, 0, 0.05);
	padding: 5px 8px;
}

/* Services Section Styles */
.services {
	padding: 100px 0;
    background-color: #fff;
}

.services .section-heading h2 {
    color: #1f3646;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.services .section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffe165;
    border-radius: 2px;
}

.services .service-item {
	background-color: #fff;
    color: #333;
    padding: 40px 25px 25px 25px;
    text-align: center;
	transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #1f3646;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #ffe165;
}

.service-item .service-icon {
	margin: 0 auto;
	display: inline-block;
	width: 70px;
	height: 70px;
	text-align: center;
    transition: all 0.3s ease;
    background-size: contain;
    background-position: center;
    line-height: 70px;
}

.service-item .service-icon i {
    font-size: 40px;
    color: #1f3646;
    display: inline-block !important;
    visibility: visible !important;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item:hover .service-icon i {
    color: #ffe165;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    flex: 1;
}

.service-item:hover {
	color: #121212;
	background-color: #fff;
}

/* Detailed Services Section Styles */
.detailed-services {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.detailed-services .section-heading h2 {
    color: #1f3646;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.detailed-services .section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffe165;
    border-radius: 2px;
}

.detailed-services .row {
    display: flex;
    flex-wrap: wrap;
}

.detailed-services .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.detailed-service-box {
    display: flex;
    flex-direction: row;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    flex: 1;
}

.detailed-service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Service Icons for Detailed Sections */
.service-icon-large {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-right: 25px;
    margin-top: 10px;
    line-height: 80px;
    text-align: center;
    display: inline-block !important;
}

.service-icon-large i {
    font-size: 45px;
    color: #1f3646;
    transition: all 0.3s ease;
    display: inline-block !important;
    visibility: visible !important;
}

.detailed-service-box:hover .service-icon-large i {
    color: #ffe165;
    transform: scale(1.1);
}

.detailed-service-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1f3646;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detailed-service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.detailed-service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    flex: 1;
}

.detailed-service-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.detailed-service-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.detailed-service-content ul li:before {
    content: "•";
    color: #ffe165;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -3px;
}

/* Additional Services Section Styles */
.additional-services {
    padding: 100px 0;
    background-color: #fff;
}

.additional-services .section-heading h2 {
    color: #1f3646;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.additional-services .section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffe165;
    border-radius: 2px;
}

.additional-services .detailed-service-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
}

.additional-services .service-icon-large {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    line-height: 70px;
    text-align: center;
}

.additional-services .service-icon-large i {
    font-size: 40px;
}

.additional-services .detailed-service-content {
    text-align: center;
}

#most-visited {
	margin-bottom: 100px;
}

#most-visited .section-heading h2 {
    color: #1f3646;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

#most-visited .section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffe165;
    border-radius: 2px;
}

#faq {
    background-color: #f4f4f4;
    padding: 100px 0;
}

#faq .section-heading h2 {
    color: #1f3646;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

#faq .section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffe165;
    border-radius: 2px;
}

.contact-info {
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(31, 54, 70, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffe165 0%, #ffcc00 100%);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-info .section-heading h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: #1f3646;
}

.contact-info .section-heading h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffe165;
    border-radius: 2px;
}

.contact-info .section-heading p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 20px auto 0;
}

.contact-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.contact-info p {
    font-size: 20px;
    margin: 15px 0;
    color: #555;
    font-weight: 600;
}

.contact-info a {
    color: #1f3646;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 25px;
    border: 2px solid #1f3646;
    border-radius: 30px;
    display: inline-block;
    margin: 15px 5px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffe165;
    background-color: #1f3646;
    border-color: #1f3646;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(31, 54, 70, 0.3);
}

.contact-info a:hover:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffe165;
}

.contact-button {
    background-color: #1f3646 !important;
    color: #ffe165 !important;
    font-weight: 700;
    border: 2px solid #1f3646 !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    background-color: #ffe165 !important;
    color: #1f3646 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Modern Footer Styles */
footer {
    background: linear-gradient(135deg, #1f3646 0%, #1a2d3d 100%);
    padding: 70px 0 0;
    color: #fff;
    position: relative;
    background-attachment: fixed;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffe165 0%, #ffcc00 100%);
}

.footer-logo .logo-text {
    color: #ffe165;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-logo .logo-text:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffe165 0%, #ffcc00 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ffe165, 0 0 20px #ffe165;
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ffcc00, 0 0 40px #ffcc00;
    }
}

.footer-logo .logo-text:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 225, 101, 0.8);
    animation: glow 2s infinite alternate;
}

.footer-logo .logo-text:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-address {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ffe165;
    transition: all 0.3s ease;
}

.footer-address:hover {
    background: rgba(255, 225, 101, 0.1);
    transform: translateX(5px);
}

.footer-heading {
    color: #ffe165;
    font-size: 22px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ffe165;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links li:last-child {
    border-bottom: none;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #ffe165;
    padding-left: 8px;
    transform: translateX(3px);
}

.footer-links a:before {
    content: "\f105";
    font-family: FontAwesome;
    margin-right: 10px;
    color: #ffe165;
    transition: all 0.3s ease;
}

.footer-links a:hover:before {
    transform: translateX(3px);
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    padding: 10px 10px 10px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-hours li:hover {
    background: rgba(255, 225, 101, 0.1);
    transform: translateX(5px);
}

.footer-hours li:before {
    content: "\f017";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #ffe165;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background: rgba(255, 225, 101, 0.2);
    border-radius: 50%;
    font-size: 14px;
}

.footer-contact {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact:hover {
    background: rgba(255, 225, 101, 0.1);
    transform: translateX(5px);
}

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

.footer-contact a:hover {
    color: #ffe165;
    text-decoration: underline;
}

.footer-contact i {
    color: #ffe165;
    margin-right: 8px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    color: #e0e0e0;
    font-size: 14px;
    margin: 0;
}

.footer-bottom p a {
    color: #ffe165;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom p a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Footer Improvements */
@media (max-width: 991px) {
    footer {
        padding: 50px 0 0;
    }
    
    .footer-heading {
        margin-top: 30px;
    }
    
    .footer-heading:after {
        left: 0;
        transform: none;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 0;
    }
    
    .footer-heading {
        font-size: 20px;
        margin-top: 25px;
    }
    
    .footer-links a,
    .footer-hours li,
    .footer-contact {
        font-size: 15px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 0 0;
    }
    
    .footer-logo .logo-text {
        font-size: 24px;
    }
    
    .footer-heading {
        font-size: 18px;
    }
    
    .footer-links a,
    .footer-hours li,
    .footer-contact {
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

.faq-item {
    margin-bottom: 30px;
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #ffe165;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f3646;
    margin-top: 0;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.service-areas {
    columns: 3;
    column-gap: 30px;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-areas li {
    padding: 8px 0;
    break-inside: avoid;
    page-break-inside: avoid;
    font-size: 16px;
    color: #555;
}

.service-areas li:before {
    content: "• ";
    color: #ffe165;
    font-size: 20px;
}

.visited-item {
	box-shadow: 0px 5px 15px #ddd;
	margin-bottom: 30px;
}

.visited-item .text-content {
	background-color: #f4f4f4;
	padding: 15px;
}

.visited-item img {
	width: 100%;
	overflow: hidden;
}

.visited-item h4 {
	margin-top: 0px;
	font-size: 16px;
	font-weight: 700;
	color: #121212;
}

.visited-item span {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #3f6f90;
}

#owl-mostvisited .owl-pagination {
  margin-top: 20px;
  opacity: 1;
  display: inline-block;
  position: relative;
  text-align: center;
  z-index: 9999;
  background-color: transparent;
  height: 0px;
  line-height: 0px;
  padding: 0px;
}

#owl-mostvisited .owl-page span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0px 5px;
  filter: alpha(opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #ddd;
}

#owl-mostvisited .owl-controls .owl-page.active span,
#owl-mostvisited .owl-controls.clickable .owl-page:hover span{
  filter: Alpha(Opacity=100);/*IE7 fix*/
  opacity: 1;
  display: inline-block;
  background: #ffe165;
}

.page-heading {
	background-image: url(../img/heading-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	text-align: center;
	position: relative;
}

.page-heading .logo {
	padding: 60px 0px;
	text-align: left;
}

.page-heading .page-direction-button {
	text-align: right;
	margin-top: 110px;
}


.contact-us .section-heading h2 {
	margin-bottom: 10px;
}

.contact-us .section-heading p {
	font-size: 14px;
	color: #4a4a4a;
	padding: 0px 20%;
	text-align: center;
	margin-bottom: 50px;
}

.contact-us img {
	width: 100%;
	overflow: hidden;
	margin-bottom: 30px;
}

.contact-us h6 {
	margin-bottom: 15px;
	margin-top: 30px;
	font-size: 16px;
	font-weight: 700;
	color: #121212;
}

.contact-us p {
	font-size: 14px;
	color: #4a4a4a;
}



.contact-form {
	background-image: url(../img/contact-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	text-align: center;
	padding: 100px 0px;
}

.contact-form h2 {
	color: #fff;
}

.contact-form input {
	font-size: 13px;
	margin-bottom: 30px;
	width: 100%;
	height: 36px;
	padding-left: 15px;
	background-color: #fff;
	color: #4a4a4a;
	outline: none;
	border-radius: 0px;
}

.contact-form textarea {
	font-size: 13px;
	margin-bottom: 30px;
	width: 100%;
	height: 160px;
	max-height: 250px;
	padding-left: 15px;
	background-color: #fff;
	color: #4a4a4a;
	outline: none;
	border-radius: 0px;
}

.contact-form button {
	outline: none;
	width: 190px;
	height: 36px;
	background-color: #ffe165;
	font-size: 13px;
	color: #121212;
	font-weight: 600;
	border-radius: 0px;
}


.map {
	background-color: #f4f4f4;
	padding: 100px 0px;
}

@media (max-width: 991px) {

	.banner {
		padding: 100px 0;
	}

	.hero-content {
		padding: 40px 20px;
	}

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

	.hero-subtitle {
		font-size: 18px;
	}

	.hero-buttons .btn {
		display: block;
		margin: 10px auto;
		width: 80%;
	}

	.hero-features {
		flex-direction: column;
	}

	#weather .tabs li {
		display: block;
		text-align: center;
		width: 100%;
		margin: 0px 0px;
	}

	#weather .tabs a {
	  display:block;
	  color:#fff;
	  font-size: 13px;
	  display: block;
	  width: 100%;
	  height: 60px;
	  line-height: 60px;
	  padding-left: 0px;
	  text-align: center;
	}

	#weather .weather-item {
		margin-bottom: 30px;
	}

	.weathergroup {
		padding: 30px 30px 10px 30px;
	}

	.service-item {
		margin: 30px 0px; 
	}

	.page-heading .logo {
		padding: 60px 0px;
		text-align: center;
	}

	.page-heading .page-direction-button {
		text-align: center;
		margin-top: 0px;
	}

	.weather-item h6 {
		margin-bottom: 30px;
	}

	.weather-item .weather-icon {
		margin-bottom: 20px;
	}

	.weather-item ul {
		margin-top: 20px;
		padding: 20px 10px;
	}

	.weather-item ul li {
		margin: 0px 5px;
	}

    .detailed-service-box {
        flex-direction: column;
        text-align: center;
    }

    .service-icon-large {
        margin-right: 0;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .services .col-md-4 {
        margin-bottom: 30px;
    }
    
    .additional-services .col-md-4 {
        margin-bottom: 30px;
    }
    
    .service-areas {
        columns: 2;
    }
    
    /* Footer responsive styles */
    .footer-heading:after {
        left: 0;
        transform: none;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .navbar-default .navbar-brand {
        font-size: 18px;
        padding: 6px 10px;
    }
    
    .navbar-default .navbar-brand:before {
        bottom: 6px;
        left: 10px;
        width: calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    .service-areas {
        columns: 1;
    }
    
    .navbar-default .navbar-nav > li > a {
        padding: 10px 15px;
    }
    
    .btn-nav-phone {
        margin: 8px 10px;
        padding: 6px 12px !important;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons .btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .detailed-service-box {
        padding: 25px;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .detailed-service-content h3 {
        font-size: 20px;
    }
    
    .weather-content {
        padding: 30px 20px;
    }
    
    .section-heading h2 {
        font-size: 28px;
    }
    
    /* Footer responsive styles */
    footer {
        padding: 50px 0 0;
    }
    
    .footer-heading {
        margin-top: 30px;
    }
    
    .navbar-default .navbar-brand {
        font-size: 16px;
        padding: 5px 8px;
    }
    
    .navbar-default .navbar-brand:before {
        bottom: 5px;
        left: 8px;
        width: calc(100% - 16px);
        height: 1px;
    }
}

@media (max-width: 480px) {
    .detailed-service-content h3 {
        font-size: 18px;
    }
    
    .detailed-service-content p {
        font-size: 15px;
    }
    
    .detailed-service-content ul li {
        font-size: 15px;
    }
    
    .service-icon-large {
        width: 50px;
        height: 50px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .feature-item {
        margin: 0 5px 10px;
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .services .col-md-4,
    .additional-services .col-md-4 {
        padding: 0 15px;
    }
    
    .detailed-service-box {
        padding: 20px 15px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .contact-info p {
        font-size: 16px;
    }
    
    /* Footer responsive styles */
    footer {
        padding: 40px 0 0;
    }
    
    .footer-heading {
        font-size: 18px;
    }
    
    .footer-links a,
    .footer-hours li,
    .footer-contact {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}


