:root {
--site-primary-color: #2c5aa0;
--site-secondary-color: #111c2d;
--site-tertiary-color: #3a388b;
}

body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
}

.wrapper {
width: 100%;
padding: 50px 0;
}

.wrapper:nth-child(even) {
background-color: #fafafa;
}

/* Top Bar */
.top-bar {
background: #2c5aa0!important;
color: white;
padding: 10px 0;
font-size: 14px;
}

.top-bar-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.top-bar-left {
display: flex;
gap: 20px;
}

.top-bar-right {
display: flex;
gap: 15px;
}

/* Announcement Bar */
.announcement {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 12px 0;
position: relative;
overflow: hidden;
transform: translateX(-100%);
transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
max-height: 200px;
opacity: 0;
}

.announcement.hidden {
transform: translateX(-100%);
opacity: 0;
max-height: 0;
padding: 0;
margin: 0;
}

.announcement.show {
transform: translateX(0);
opacity: 1;
}

.announcement-content {
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

.announcement-text {
flex: 1;
font-size: 16px;
font-weight: 500;
text-align: center;
transform: translateX(-20px);
opacity: 0;
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.announcement.show .announcement-text {
transform: translateX(0);
opacity: 1;
}

.close-announcement {
background: rgba(255, 255, 255, 0.2);
border: none;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 16px;
font-weight: bold;
transition: all 0.3s ease;
flex-shrink: 0;
}

.close-announcement:hover {
background: rgba(255, 255, 255, 0.3);
transform: scale(1.1);
}

/* Header */
.header {
background: white;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 100;
padding: 0;
}

.header-content {
padding: 15px 20px;
}

.logo {
font-size: 24px;
font-weight: bold;
color: #2c5aa0;
}

.navbar {
display: flex;
list-style: none;
gap: 30px;
}

.navbar a {
text-decoration: none;
color: #333;
font-weight: 500;
transition: color 0.3s;
}

.navbar a:hover {
color: #2c5aa0;
}

.cta {
display: flex;
gap: 0.625rem;
float: right;
}

.btn {
padding: 10px 20px;
border: none;
border-radius: 5px;
text-decoration: none;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
display: inline-block;
text-align: center;
}

.btn-primary {
background: #2c5aa0;
color: white;
}

.btn-primary:hover {
background: #1e3d6f;
}

.btn-outline {
border: 2px solid #2c5aa0;
color: #2c5aa0;
background: transparent;
}

.btn-outline:hover {
background: #2c5aa0;
color: white;
}

.menu-icon {
flex-direction: column;
cursor: pointer;
z-index: 1002;
position: relative;
}

.menu-icon-in {
display: flex;
flex-direction: column;
gap: 4px;
}

.menu-icon-in span {
width: 25px;
height: 3px;
background: #333;
transition: all 0.3s;
transform-origin: center;
}

/* Desktop Dropdown */
.dropdown {
position: relative;
}

.dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
min-width: 150px;
background: white;
border: 1px solid #ddd;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu a {
display: block;
padding: 10px 15px;
color: #333;
text-decoration: none;
}

.dropdown-menu a:hover {
background: #f5f5f5;
}

/* Second and third-level */
.dropdown-submenu {
position: relative;
}

.dropdown-submenu&gt;.dropdown-menu {
top: 0;
left: 100%;
margin-left: 1px;
}

/* Mobile Dropdown */
.mobile-dropdown {
margin-bottom: 0.625rem;
}

.mobile-dropdown-toggle {
padding-right: 0.625rem;
cursor: pointer;
background: #f9f9f9;
border: 1px solid #ddd;
}

.mobile-sub-toggle {
padding-right: 0.625rem;
cursor: pointer;
}

.mobile-dropdown-menu {
display: none;
padding-left: 15px;
background: #d9cfcf;
}

.mobile-dropdown-menu a {
display: block;
padding: 8px 0;
}

.mobile-dropdown-menu,
.mobile-sub-menu {
display: none;
padding-left: 1rem;
}

.mobile-dropdown i,
.mobile-sub-toggle i {
cursor: pointer;
transition: transform 0.3s;
}

.mobile-dropdown.open&gt;.mobile-dropdown-menu,
.mobile-sub-dropdown.open&gt;.mobile-sub-menu {
display: block;
}

.mobile-dropdown.open&gt;.mobile-dropdown-toggle i,
.mobile-sub-dropdown.open&gt;.mobile-sub-toggle i {
transform: rotate(180deg);
}



/* Hamburger Animation */
.menu-icon.active .menu-icon-in span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}

.menu-icon.active .menu-icon-in span:nth-child(2) {
opacity: 0;
transform: scale(0);
}

.menu-icon.active .menu-icon-in span:nth-child(3) {
transform: rotate(-45deg) translate(4px, -5px);
}

.menu-icon.active .menu-icon-in span {
background: #2c5aa0;
}

/* Mobile Sidebar Navigation */
.mobile-sidebar {
position: fixed;
top: 0;
left: -100%;
height: 100vh;
width: 280px;
background: white;
z-index: 1001;
transition: left 0.3s ease-in-out;
box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
overflow-y: auto;
}

.mobile-sidebar.active {
left: 0;
}

.mobile-sidebar-header {
padding: 20px;
border-bottom: 1px solid #e5e7eb;
display: flex;
justify-content: space-between;
align-items: center;
}

.close-button {
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #666;
padding: 5px;
border-radius: 50%;
transition: all 0.3s ease;
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
}

.close-button:hover {
background: #f3f4f6;
color: #333;
}

.mobile-sidebar-content {
padding: 20px 0;
}

.mobile-nav-item {
display: block;
padding: 15px 20px;
color: #333;
text-decoration: none;
font-weight: 500;
transition: background-color 0.3s;
border-left: 4px solid transparent;
}

.mobile-nav-item:hover {
background-color: #f3f4f6;
border-left-color: #2c5aa0;
color: #2c5aa0;
}

.mobile-nav-cta {
margin: 20px;
display: flex;
flex-direction: column;
gap: 0.625rem;
}

/* Overlay */
.mobile-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease-in-out;
}

.mobile-overlay.active {
opacity: 1;
visibility: visible;
}


/* Breadcrumb */
.breadcrumb {
background: #f8f9fa;
padding: 15px 0;
}

.breadcrumb-nav {
display: flex;
gap: 0.625rem;
align-items: center;
}

.breadcrumb-nav a {
text-decoration: none;
color: #6c757d;
}

.breadcrumb-nav a:hover {
color: #2c5aa0;
}

/* Main Content */
.main {
padding: 0;
}

/* Hero Sections */
.slider-wrapper {
max-height: 1080px;
width: 100%;
position: relative;
}

.hero-image-bg {
height: 100%;
width: 100%;
position: absolute;
}

.owl-carousel .owl-nav {
display: flex;
justify-content: space-between;
gap: 0.625rem;
top: 50%;
width: 100%;
position: absolute;
transform: translateY(-50%)
}

.owl-carousel .owl-nav button {
outline: 0;
font-size: 32px !important;
color: #22748e !important;
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease
}

.owl-carousel .owl-nav button span {
display: none
}

.owl-carousel .owl-nav button {
position: relative
}

.owl-carousel .owl-nav button:before {
position: absolute
}

.owl-carousel .owl-nav button:first-child:before {
content: '‹';
top: 45%;
left: 50%;
transform: translate(-50%, -50%)
}

.owl-carousel .owl-nav button:last-child:before {
content: '›';
top: 45%;
left: 50%;
transform: translate(-50%, -50%)
}

.slider-wrapper .item {
background-size: cover;
background-repeat: no-repeat;
width: 100%;
display: flex;
align-items: center;
background-position: center;
position: relative
}

.slider-wrapper .item:before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: #fff0
}

.slider-content {
margin-top: 400px;
text-align: left
}

@media (max-width: 1599px) {
.slider-content {
margin-top: 310px
}
}

@media (max-width: 1199px) {
.slider-content {
margin-top: 190px
}
}

@media (max-width: 767px) {
.slider-content {
margin-top: 175px;
text-align: left
}
}

@media (max-width: 575px) {
.slider-content {
margin-top: 160px;
text-align: center
}
}

@media (max-width: 425px) {
.slider-content {
margin-top: 150px;
text-align: center
}
}

@media(min-width: 425px) {
.owl-carousel .owl-nav button {
color: #fff !important;
background-color: var(--site-primary-color) !important
}

.owl-carousel .owl-nav button.owl-prev {
margin-left: 0.625rem;
}

.owl-carousel .owl-nav button.owl-next {
margin-right: 0.625rem;
}
}

.hero-video {
position: relative;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0;
max-width: 100%;
color: #fff;
text-align: center;
}

.hero-video-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
}

.hero-video-bg video {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-image {
position: relative;
width: 100%;
height: 500px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
}

.hero-image-bg img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
z-index: 1;
}

.hero-content {
position: absolute;
z-index: 2;
max-width: 800px;
padding: 20px;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 10px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
font-size: 2.5rem;
margin-bottom: 15px;
}

.hero-content p {
font-size: 1.2rem;
margin-bottom: 25px;
}

.hero-buttons a {
margin: 0 10px;
}

.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

ul {
list-style: none;
}

ul.check li {
padding: 8px 0;
position: relative;
padding-left: 25px;
}

ul.check li:before {
content: "✓";
position: absolute;
left: 0;
color: #28a745;
font-weight: bold;
}

.column-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

/* Services Section */
.section-title {
text-align: center;
margin-bottom: 60px;
}

.section-title h2 {
font-size: 36px;
color: #2c5aa0;
margin-bottom: 15px;
}

.section-title p {
font-size: 18px;
color: #6c757d;
}

.service-card {
background: white;
padding: 40px 30px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}

.service-card:hover,
.review-card:hover,
.team-member:hover,
.awards-sec a:hover {
transform: translateY(-5px);
border: 1px solid #2c5aa0;
}

.service-card .icon {
width: 80px;
height: 80px;
background: #2c5aa0;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 32px;
}

.service-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: #2c5aa0;
}

.service-card p {
color: #6c757d;
line-height: 1.6;
}

/* Why Choose Us */
.why-choose-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}

.why-choose-item {
text-align: center;
}

.why-choose-item .number {
width: 60px;
height: 60px;
background: #2c5aa0;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: bold;
margin: 0 auto 20px;
}

.why-choose-item h3 {
font-size: 20px;
margin-bottom: 15px;
color: #2c5aa0;
}

/* Reviews */
.reviews-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.review-card {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-stars {
color: #ffc107;
font-size: 18px;
margin-bottom: 15px;
}

.review-text {
font-style: italic;
margin-bottom: 20px;
color: #6c757d;
}

.review-author {
display: flex;
align-items: center;
gap: 15px;
}

.review-author img {
width: 65px;
height: 50px;
object-fit: contain;
}

.review-author-info h4 {
font-size: 16px;
margin-bottom: 5px;
}

.review-author-info span {
color: #6c757d;
font-size: 14px;
}

/* Team */
.team-member {
text-align: center;
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
width: 100%;
height: 300px;
object-fit: cover;
}

.team-member-info {
padding: 20px;
}

.team-member h3 {
font-size: 20px;
margin-bottom: 0.625rem;
color: #2c5aa0;
}

.team-member p {
color: #6c757d;
margin-bottom: 15px;
}

.team-social {
display: flex;
justify-content: center;
gap: 0.625rem;
}

.team-social a {
width: 35px;
height: 35px;
background: #2c5aa0;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}

/* Blog */
.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.blog-card {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-card img {
width: 100%;
height: 200px;
object-fit: cover;
}

.blog-card-content {
padding: 25px;
}

.blog-meta {
color: #6c757d;
font-size: 14px;
margin-bottom: 15px;
}

.blog-card h3 {
font-size: 18px;
margin-bottom: 15px;
color: #2c5aa0;
}

.blog-card p {
color: #6c757d;
line-height: 1.6;
}

/* CTA Sections */
.cta-section {
padding: 80px 0;
background: rgb(191, 141, 150);
color: black;
text-align: center;
}

.cta-section h2 {
font-size: 36px;
margin-bottom: 20px;
}

.cta-section p {
font-size: 18px;
margin-bottom: 30px;
}

.cta-section-alt {
background: #28a745;
}

/* Gallery */

.gallery-grid {
column-count: 3;
/* Adjust number of columns */
column-gap: 15px;
}

@media (max-width: 992px) {
.gallery-grid {
column-count: 2;
}
}

@media (max-width: 600px) {
.gallery-grid {
column-count: 1;
}
}

.gallery-item {
break-inside: avoid;
margin-bottom: 15px;
display: block;
position: relative;
overflow: hidden;
border-radius: 10px;
cursor: pointer;
transition: transform 0.3s;
}

.gallery-item img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}

.gallery-item .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
opacity: 0;
transition: opacity 0.3s ease;
}

.gallery-item i {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 2.5rem;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}

.gallery-item:hover .overlay,
.gallery-item:hover i {
opacity: 1;
}

.gallery-item:hover {
transform: scale(1.05);
}


/* Awards */
.awards-sec {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 0 auto;
justify-content: center;
}

.awards-sec a {
display: flex;
max-width: 15rem;
}

.awards-sec .common-box {
box-shadow: -5px 5px 20px 0 rgb(0 0 0 / 5%);
height: 10rem;
max-width: 14.5rem;
min-width: 14.5rem;
background-color: #fff;
border-radius: 3px;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgb(0 0 0 / .125);
}

.awards-sec .common-box img {
width: auto;
height: auto;
max-width: 100%;
max-height: 6rem;
object-fit: cover;
}

/* Contact */
.contact-info {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
padding: 30px;
border-radius: 20px;
color: #fff;
box-shadow: 0 20px 50px rgba(0, 242, 254, 0.3);
position: relative;
overflow: hidden;
}

.contact-content {
position: relative;
z-index: 2;
}

.contact-title {
font-size: 32px;
font-weight: bold;
margin-bottom: 30px;
color: #ffffff;
}

.contact-item {
margin-bottom: 20px;
padding: 15px 20px;
background: rgba(255, 255, 255, 0.15);
border-left: 5px solid #ffd700;
border-radius: 10px;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}

.contact-item:hover {
background: rgba(255, 255, 255, 0.25);
transform: translateY(-2px);
}

.contact-label {
color: #ffd700;
font-weight: 600;
}

.contact-emergency {
background: linear-gradient(45deg, #ff416c, #ff4b2b);
padding: 18px 20px;
border-radius: 12px;
color: #fff;
font-weight: bold;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
margin-top: 20px;
}

.contact-form {
background: #ffffff;
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
font-size: 28px;
font-weight: bold;
margin-bottom: 30px;
color: #333;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
margin-bottom: 5px;
font-weight: 600;
color: #444;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 16px;
transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
border-color: #00bcd4;
outline: none;
}

.form-group textarea {
height: 120px;
resize: vertical;
}

.btn-primary {
background-color: #00bcd4;
border: none;
color: #fff;
padding: 12px 25px;
border-radius: 8px;
transition: background 0.3s ease;
}

.btn-primary:hover {
background-color: #0097a7;
}


/* Service Area */
.service-area-map {
text-align: center;
}

.img-box {
display: block;
border-radius: 3px;
transition: 0.5s;
text-align: center;
}

.img-box img {
width: 100%;
height: 400px;
object-fit: cover;
border-radius: 10px;
}

.city-list-div-wrapper {
border: none;
border-radius: 10px;
background-color: #ececec;
padding: 16px;
height: 100%;
}

.city-list-div-wrapper .small-heading {
font-size: 20px !important;
margin-left: 12px;
font-weight: 600;
}

.city-list-div .cities {
overflow-y: scroll;
display: flex;
flex-wrap: wrap;
margin-bottom: 0;
padding: 0;
}

.city-list-div .cities li {
padding-left: 5px;
padding-right: 5px;
flex-basis: 46%;
min-width: 0;
line-height: 32px;
margin-bottom: 0.625rem;
}

.city-list-div .cities li a {
display: block;
padding-left: 20px;
text-decoration: none;
position: relative;
transition: 0.5s;
color: #000;
}

.city-list-div .cities li a:hover {
color: var(--site-primary-color);
text-decoration: underline;
}

.city-list-div .cities li a:before {
position: absolute;
left: 0px;
color: var(--site-primary-color);
height: 100%;
width: 18px;
content: "\f041";
font-family: FontAwesome;
transition: 0.5s;
}

.city-list-div .cities li a:hover:before {
color: var(--site-primary-color);
}

.city-list-div .cities::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
border-radius: 10px;
background-color: #f5f5f5;
}

.city-list-div .cities::-webkit-scrollbar {
width: 5px;
}

.city-list-div .cities::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
background-color: var(--site-tertiary-color);
}

@media (max-width: 1199px) {
.city-list-div .cities li {
flex-basis: 50%;
}
}

@media (max-width: 991px) {
.city-list-div .cities li {
flex-basis: 33.33%;
}
}

@media (max-width: 767px) {
.city-list-div .cities li {
flex-basis: 50%;
}
}

@media (max-width: 575px) {
.city-list-div .cities li {
flex-basis: 100%;
}

.city-list-div-wrapper .small-heading {
font-size: 16px !important;
}
}


/* Footer */
.footer {
background: var(--site-secondary-color) !important;
color: white;
padding: 60px 0 20px;
}

.footer h3 {
font-size: 20px;
margin-bottom: 20px;
}

.footer ul {
list-style: none;
padding: 0;
}

.footer a {
color: white;
text-decoration: none;
transition: color 0.3s;
}

.footer a:hover {
color: #ccc;
}

.copyright {
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding-top: 20px;
text-align: center;
}

.copyright p {
margin-bottom: 0.625rem;
}

.copyright a {
color: white;
text-decoration: none;
}

@media (max-width: 768px) {
.footer h3 {
font-size: 1rem;
}

.footer a {
font-size: .8rem;
}
}

/* Scroll to Top */
.scroll-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: var(--site-primary-color);
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
display: none;
align-items: center;
justify-content: center;
font-size: 18px;
transition: all 0.3s;
z-index: 1000;
}

.scroll-to-top:hover {
background: #1e3d6f;
transform: translateY(-2px);
}

.scroll-to-top.visible {
display: flex;
}

/* Responsive */
@media (max-width: 992px) {

.navbar {
display: none;
}

.menu-icon {
display: flex;
}

.hero-buttons {
flex-direction: column;
align-items: center;
}

.top-bar-content {
flex-direction: column;
gap: 0.625rem;
}

}