/*
Theme Name: 914Digital
Theme URI: https://914digital.com
Description: Bootstrap 25
Author: 914Digital
Author URI: https://914digital.com
Version: 1.0
License: MIT License
License URI: http://opensource.org/licenses/MIT
*/

@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* Aero Watchers Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   Aero Watchers Brand Colors
   ======================================== */
:root {
    --aw-dark-blue: #0a2540;
    --aw-medium-blue: #1e3a5f;
    --aw-light-blue: #2d5a7b;
    --aw-silver: #c0c5ce;
    --aw-light-silver: #e8eaed;
    --aw-dark-silver: #8a92a3;
}

body {
	background-color:#fff;
	font-family: 'Inter', 'Roboto', sans-serif;
	font-weight: 400;
	scroll-behavior: smooth;
}

form {
    color:#fff;
}

.gform_confirmation_message {
    color:#fff;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	letter-spacing: 0.5px;
}

h1 {
	font-weight: 700;
	letter-spacing: 1px;
}

p {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 1.7;
}

a {
	text-decoration:none;
	color: var(--aw-medium-blue);
	transition: all 0.3s ease;
}

a:hover, a:focus, a:active {
	color: var(--aw-light-blue);
	opacity:0.9;
}

img {
	max-width:100%;
	height:auto;
}

.btn.btn-primary {
    background: linear-gradient(135deg, var(--aw-dark-blue) 0%, var(--aw-medium-blue) 100%);
    border: 2px solid var(--aw-silver);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn.btn-primary:hover, 
.btn.btn-primary:focus, 
.btn.btn-primary:active {
	background: linear-gradient(135deg, var(--aw-medium-blue) 0%, var(--aw-light-blue) 100%);
	border-color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(10, 37, 64, 0.3);
	outline: none;
}

/* Navbar Styling */
.navbar {
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: transparent;
}

/* Logo transitions */
.navbar-logo {
    transition: all 0.4s ease;
    width: auto;
    height: 45px;
    object-fit: contain;
}

/* Sticky state */
.navbar.scrolled {
    background-color: #00132a !important; /* Very dark grey */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.navbar.scrolled .navbar-logo {
    height: 40px; /* Your adjusted smaller size */
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 120px; /* Adjust based on your navbar height */
}

/* Navbar links - only transition, no font changes */
.navbar-nav .nav-link {
    transition: color 0.3s ease, opacity 0.3s ease;
    /* All other properties inherit from your existing styles */
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}

/* Optional: smooth transition for navbar container */
.navbar .container {
    transition: padding 0.4s ease;
}

.navbar.scrolled .container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.tel-link.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tel-link.btn i {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* Mobile Menu Toggle Button */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: #2374c4;
    background: rgba(35, 116, 196, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(35, 116, 196, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 19, 42, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    position: relative;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Close Button */
.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(35, 116, 196, 0.2);
    border-color: #2374c4;
    transform: rotate(90deg);
}

/* Mobile Navigation List */
.mobile-menu-nav {
    margin-bottom: 3rem;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 0.5rem;
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Rajdhani', sans-serif;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background: rgba(35, 116, 196, 0.2);
    border-color: #2374c4;
    transform: translateX(10px);
    color: #2374c4;
}

/* Mobile Contact Button */
.mobile-menu-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-contact .btn {
    font-size: 1.25rem;
    padding: 1rem;
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
    
    .mobile-menu-overlay {
        display: none;
    }
}

/* Desktop menu visibility */
@media (max-width: 991px) {
    .menu-wrapper {
        display: none !important;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Video Background Banner Styles */
.hero-banner {
    position: relative;
    min-height: 100vh;
    background-color: var(--aw-dark-blue);
}

.video-background {
    z-index: 0;
}

.video-background video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner-content {
    z-index: 2;
}

.banner-content h1 {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
    font-size: 3rem;
}

.banner-content p {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

/* Animations */
.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Text Shadow for Better Readability */
.banner-content h1,
.banner-content p {
    text-shadow: 2px 2px 8px rgba(10, 37, 64, 0.9);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 100vh;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content .lead {
        font-size: 1.1rem;
    }
}

section {
    position: relative;
}

/* ========================================
   About Section - Agency Level Styles
   ======================================== */
.about-section {
    position: relative;
    background: linear-gradient(180deg, var(--aw-light-silver) 0%, #ffffff 100%);
    z-index: 1;

}

/* Sidebar Styling */
.about-sidebar {
    background: linear-gradient(135deg, var(--aw-dark-blue) 0%, var(--aw-medium-blue) 100%) !important;
    border-left: 4px solid var(--aw-silver);
    transition: all 0.3s ease;
    color: #ffffff;
}

.about-sidebar:hover {
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.3) !important;
    transform: translateY(-3px);
    border-left-color: #ffffff;
}

.about-sidebar h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-sidebar p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--aw-light-silver);
}

.about-content {
	font-family: 'Inter', sans-serif;
}

.about-content h2,
.about-content h3,
.about-content h4 {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	color: var(--aw-dark-blue);
}

/* Features List */
.feature-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--aw-medium-blue);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.08);
}

.feature-item:hover {
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.15);
    transform: translateX(5px);
    border-left-color: var(--aw-silver);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--aw-dark-blue) 0%, var(--aw-medium-blue) 100%);
    color: var(--aw-silver);
    border-radius: 8px;
}

.feature-content h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--aw-dark-blue);
}

.feature-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--aw-dark-silver);
}

.prop-box {
	border: 2px solid #fff;
    background-color: #197704;
}

/* Training Section - Distinct Look */
.training-section {
    background-color: #e8f1f8; /* Solid light blue - aviation inspired */
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.training-card {
    transition: all 0.3s ease;
    border: none !important;
    background: white;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 6px rgba(0, 40, 80, 0.08);
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 40, 80, 0.25) !important;
}

/* Make header a different shape/style - rounded top only */
.card-header-aviation {
    background: linear-gradient(135deg, #1a5490 0%, #2374c4 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0 !important;
    padding: 2.5rem 1.5rem !important;
}

/* Subtle shine effect on hover */
.training-card:hover .card-header-aviation::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(45deg);
    animation: shine 0.8s;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Logo styling */
.manufacturer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.training-card:hover .manufacturer-logo {
    opacity: 1;
    transform: scale(1.08);
}

/* Logo container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

/* Badge styling - silver with minimal border radius */
.training-card .badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #d8d8d8 100%) !important;
    color: #2c3e50;
    font-weight: 700;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0.25rem; /* Minimal border radius */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card body with border radius */
.training-card .card-body {
    padding: 2rem;
    background: white;
    border-radius: 0 0 0.5rem 0.5rem;
}

/* Aircraft models list - ultra clean */
.aircraft-models-list {
    margin-top: 1.25rem;
    padding: 0;
    background: transparent;
    border: none;
}

.aircraft-models-list p {
    color: #495057;
    font-size: 0.925rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

/* Section headers - solid underline */
.training-section h2 {
    color: #1a5490;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.training-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2374c4; /* Solid color */
}

.training-section .lead {
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Make sure cards are rounded */
.training-card {
    border-radius: 0.5rem;
}

/* Services Section - Dark Background */
.services-section {
    background: linear-gradient(180deg, #001a33 0%, #00132a 100%);
    position: relative;
    overflow: hidden;
}

/* Optional: Add subtle pattern overlay */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.01) 10px,
            rgba(255,255,255,0.01) 20px
        );
    pointer-events: none;
}

/* Section headers */
.services-section h2 {
    color: #ffffff;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2374c4;
}

.services-section .lead {
    color: #b0c4de;
}

.text-light-gray {
    color: #b0c4de;
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(35, 116, 196, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

/* Service Icon */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2374c4 0%, #1a5490 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(35, 116, 196, 0.4);
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper i {
    transform: scale(1.1);
}

/* Service Content */
.service-content {
    position: relative;
    z-index: 1;
}

.service-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.service-description {
    color: #c5d5e8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-description p {
    margin-bottom: 0;
    color: #c5d5e8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-wrapper i {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
}

/* Why Choose & Who We Serve Section */
.why-choose-section {
    background-color: #f8f9fa;
    position: relative;
}

/* Section Images */
.section-image img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Section Headings */
.why-choose-section .section-heading {
    color: #002850;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
}

.why-choose-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #2374c4;
}

/* Why Choose - Feature Items */
.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2374c4 0%, #1a5490 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Icon as image */
.feature-icon-box .icon-image,
.serve-icon-box .icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(35, 116, 196, 0.3);
}

.feature-icon-box i {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #002850;
    font-family: 'Rajdhani', sans-serif;
}

.feature-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Who We Serve - Cards */
.serve-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid #e5e5e5;
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 40, 80, 0.1);
    border-color: #2374c4;
}

.serve-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c0c0c0 0%, #d8d8d8 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.serve-card:hover .serve-icon-box {
    background: linear-gradient(135deg, #2374c4 0%, #1a5490 100%);
}

.serve-icon-box i {
    font-size: 1.5rem;
    color: #002850;
    transition: color 0.3s ease;
}

.serve-card:hover .serve-icon-box i {
    color: #ffffff;
}

.serve-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #002850;
    font-family: 'Rajdhani', sans-serif;
}

.serve-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-choose-section .section-heading {
        font-size: 1.75rem;
    }
    
    .col-lg-6:first-child {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .feature-icon-box,
    .serve-icon-box {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .feature-icon-box i,
    .serve-icon-box i {
        font-size: 1.25rem;
    }
    
    .feature-title,
    .serve-title {
        font-size: 1rem;
    }
}

/* Contact Section - Solid Dark Background with Grid Pattern */
.contact-section {
    background: #020c1b; /* Solid slate color */
    position: relative;
    overflow: hidden;
}

/* Grid pattern overlay */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 30px 30px;
    pointer-events: none;
}

/* Add subtle radial gradient overlay */
.contact-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Section Header */
.contact-section h2 {
    color: #ffffff;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    z-index: 1;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2374c4;
}

.contact-section .lead {
    color: #cbd5e0;
    position: relative;
    z-index: 1;
}

.text-light-gray {
    color: #cbd5e0;
}

/* Contact Info Items */
.contact-item {
    position: relative;
    z-index: 1;
}

.contact-item-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
}

/* Contact Buttons */
.btn-contact-primary {
    background: transparent;
    border: 2px solid;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-contact-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(35, 116, 196, 0.5);
    color: #ffffff;
}

.btn-contact-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.btn-contact-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #2374c4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(35, 116, 196, 0.3);
    color: #ffffff;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper:hover {
    border-color: rgba(35, 116, 196, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Gravity Forms Styling for Dark Background */
.contact-form-wrapper .gform_wrapper {
    margin: 0 !important;
}

.contact-form-wrapper .gfield_label {
    color: #ffffff !important;
    font-weight: 500;
    font-family: 'Rajdhani', sans-serif;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 0.75rem 1rem !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #2374c4 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(35, 116, 196, 0.2) !important;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.contact-form-wrapper .gform_button,
.contact-form-wrapper input[type="submit"] {
    background: linear-gradient(135deg, #2374c4 0%, #1a5490 100%) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 0.875rem 2.5rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1.1rem !important;
}

.contact-form-wrapper .gform_button:hover,
.contact-form-wrapper input[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(35, 116, 196, 0.4) !important;
}

.contact-form-wrapper .gfield_description,
.contact-form-wrapper .validation_message {
    color: #cbd5e0 !important;
}

.contact-form-wrapper .gfield_error .gfield_label {
    color: #ff6b6b !important;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-item-title {
        font-size: 1.1rem;
    }
    
    .btn-contact-primary,
    .btn-contact-secondary {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
}
.footer-top {
	background-color:#edece6;
	position:relative;
	font-weight:300;
}

.footer-top .village-view-logo {
  color: #3e5931;
}

.footer-top .logo-icon {
  border: 1px solid #3e5931;
}

.footer-top .logo-icon::before,
.footer-top .logo-icon::after {
  background-color: #3e5931;
}

.footer-top .address {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #3e5931;
}

@media(max-width: 768px) {
	.footer-top {
		text-align:center;
	}
}

.gform_button.button.btn.btn-primary {
	background: linear-gradient(135deg, var(--aw-dark-blue) 0%, var(--aw-medium-blue) 100%) !important;
	color: #ffffff !important;
	font-family: 'Rajdhani', sans-serif !important;
	font-weight: 600 !important;
	font-size: 1.1rem !important;
	padding: 0.75rem 2.5rem !important;
	border-radius: 5px !important;
	border: 2px solid var(--aw-silver) !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	transition: all 0.3s ease !important;
}

.gform_button.button.btn.btn-primary:hover {
	background: linear-gradient(135deg, var(--aw-medium-blue) 0%, var(--aw-light-blue) 100%) !important;
	border-color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(10, 37, 64, 0.3);
}

.scrollup {
	width: 50px;
    height: 50px;
    position: fixed;
    bottom: 50px;
    right: 30px;
    display: none;
    text-indent: -9999px;
    background-image: url(img/angle-up.svg);
    background-size: 19px;
    z-index: 9;
    background-color: #919191;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 15px;
    z-index:999999;
}

.scrollup:hover {
	background-color: var(--aw-medium-blue);
}

footer {
	background-color: #1c5a9a;
	padding:20px;
	color:#fff;
	position:relative;
}

footer .credit {
	float:right;
	font-family: 'Inter', sans-serif;
}

footer .credit .site-by {
	font-size: 10px;
    position: relative;
    top: 2px;
}

@media(max-width:768px) {
	footer .credit {
		float:none;
		margin-top:20px;
	}
}