
:root {
    /* Primary Colors - Professional & Trustworthy */
    --primary: #003366;         /* Deep navy blue - conveys professionalism, trust, reliability */
    --primary-dark: #002244;    /* Darker navy - for hover states and accents */
    --primary-light: #4d6b8a;   /* Lighter navy - for subtle accents */
    --primary-transparent: rgba(0, 51, 102, 0.9);
    
    /* Secondary Colors - Energy & Safety */
    --secondary: #FF6B35;       /* Warm orange - represents energy, safety alerts, calls to action */
    --secondary-dark: #CC552B;   /* Darker orange - for hover states */
    --secondary-light: #FF8C5A;  /* Lighter orange - for highlights */
    --secondary-transparent: rgba(255, 107, 53, 0.9);
    
    /* Neutral Colors */
    --light: #F8F9FA;           /* Very light gray - for backgrounds */
    --dark: #212529;            /* Near black - for text */
    --gray: #6C757D;            /* Medium gray - for secondary text */
    --light-gray: #E9ECEF;      /* Light gray - for borders and subtle elements */
    
    /* Utility Colors */
    --success: #28A745;         /* Green - for success messages */
    --info: #17A2B8;            /* Teal - for informational elements */
    --warning: #FFC107;         /* Yellow - for warnings */
    --danger: #DC3545;          /* Red - for errors/danger */
    
    /* Text Colors */
    --text-primary: var(--dark);
    --text-secondary: var(--gray);
    --text-light: #FFFFFF;      /* White - for text on dark backgrounds */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(0, 34, 68, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 180px 0 150px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 30%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 1.25rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Section styling */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--secondary);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.section-padding {
    padding: 100px 0;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card .card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.service-card .card-body {
    padding: 2rem;
}

.service-card .list-unstyled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card .list-unstyled li:hover {
    padding-left: 5px;
    border-bottom-color: var(--primary-light);
}

.service-card .list-unstyled i {
    transition: all 0.3s ease;
}

.service-card .list-unstyled li:hover i {
    color: var(--secondary);
    transform: scale(1.2);
}

/* Feature Icons */
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

/* Pricing Cards */
.price-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    background: white;
    border: none;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-card .card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    border-bottom: none;
}

.price-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.price-card .period {
    font-size: 1rem;
    color: var(--gray);
}

.price-card .list-unstyled li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card .list-unstyled i {
    color: var(--success);
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(0, 51, 102, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card .rating {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-card .author-info {
    margin-left: 1rem;
}

.testimonial-card .author-info h5 {
    margin-bottom: 0.2rem;
}

.testimonial-card .author-info small {
    color: var(--gray);
}

/* Partners Section */
.partner-logo {
    height: 150px;
    width: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
    padding: 15px;
}

.align-and-center{
    display: flex;
    align-items: center;
    justify-content: center;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581093450022-4d53e6f9a0a9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-weight: 800;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 5rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: white;
    padding-left: 5px;
}

.footer h5 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    margin-top: 3rem;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(90deg, var(--danger) 0%, #c82333 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.emergency-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-bottom: none;
}

.modal-body {
    padding: 2rem;
}

/* Form Steps */
.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 100px;
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 80px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-brand img {
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

/* Emergency Banner */
.emergency-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040; /* Above navbar */
    background: linear-gradient(90deg, var(--danger) 0%, #c82333 100%);
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Adjust navbar position */
.navbar.fixed-top {
    top: 38px; /* Height of emergency banner */
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Adjust body padding to account for fixed elements */
body {
    padding-top: 100px; /* Emergency banner + navbar */
}

@media (max-width: 991.98px) {
    .emergency-banner {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }
    
    .navbar.fixed-top {
        top: 32px; /* Reduced height for mobile */
    }
    
    body {
        padding-top: 90px; /* Adjusted for mobile */
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 575.98px) {
    .emergency-banner {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    body {
        padding-top: 85px; /* Further adjustment for small mobile */
    }
}
/* Adjust body padding to account for fixed elements */
body {
    padding-top: 100px; /* Emergency banner (48px) + navbar (56px) */
}

@media (max-width: 991.98px) {
    body {
        padding-top: 88px; /* Adjusted for mobile */
    }
}



/* Preloader Styles */
#preloader {
  position: fixed;
  z-index: 9999;
  background: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
    width: 250px;
    max-width: 90%;
    margin-bottom: 0px;

}