/* Modern Color Scheme based on #003049 */
:root {
    --primary-color: #003049;      /* Deep Blue */
    --secondary-color: #669BBC;    /* Light Blue */
    --accent-color: #2F4858;       /* Dark Blue-Gray */
    --light-blue: #8ECAE6;         /* Sky Blue */
    --light-color: #F8F9FA;        /* Off White */
    --dark-color: #1B2A41;         /* Navy Blue */
}

/* Hero Section with Gradient */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--primary-color);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--accent-color) 100%
    );
    opacity: 0.95;
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary-color), var(--light-blue));
    animation: floatShape 20s infinite;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
    background: linear-gradient(45deg, var(--secondary-color), var(--light-blue));
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
    background: linear-gradient(45deg, var(--light-blue), var(--secondary-color));
}

.shape-3 {
    width: 200px;
    height: 200px;
    bottom: 30%;
    right: 20%;
    animation-delay: -10s;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
}

/* Floating Circles Decoration */
.hero-decoration {
    position: relative;
    height: 400px;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: float 6s infinite;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.circle-2 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: -2s;
    background: linear-gradient(45deg, var(--secondary-color), var(--light-blue));
}

.circle-3 {
    width: 75px;
    height: 75px;
    bottom: 20%;
    left: 30%;
    animation-delay: -4s;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(45deg, var(--light-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    border-color: var(--light-blue);
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(45deg, var(--secondary-color), var(--light-blue));
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(102, 155, 188, 0.4);
}

/* Navbar Customization */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar-fixed.scrolled {
    background: rgba(255, 255, 255, 1);
}

.navbar-fixed .nav-link {
    color: var(--primary-color);
    font-weight: 500;
}

.navbar-fixed .nav-link:hover {
    color: var(--secondary-color);
}

.navbar-fixed .brand-text {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-fixed .navbar-toggler {
    color: var(--primary-color);
    border-color: rgba(0, 48, 73, 0.1);
}

.navbar-fixed .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(0, 48, 73, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Update icon colors */
.navbar-fixed .nav-link i {
    color: var(--primary-color);
}

.navbar-fixed .nav-link:hover i {
    color: var(--secondary-color);
}

/* Enhanced Pulse Animation */
.animate-pulse {
    animation: gentlePulse 2s infinite;
}

@keyframes gentlePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 155, 188, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(102, 155, 188, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 155, 188, 0);
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10%, 10%) rotate(90deg);
    }
    50% {
        transform: translate(0, 20%) rotate(180deg);
    }
    75% {
        transform: translate(-10%, 10%) rotate(270deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }
    
    .d-flex.gap-3 {
        justify-content: center;
    }

    .shape {
        opacity: 0.05;
    }
}
.brand-logo{
    width: 70px !important;
    height: 70px !important;
}
/* Hero Carousel Styles */
.hero-slide {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-in-out;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-indicators {
    z-index: 15;
    bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: var(--light-blue);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.carousel-indicators button.active {
    background-color: var(--light-blue);
    transform: scale(1.2);
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    background-size: 1.5rem;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1 !important;
}

/* Enhanced Gradient Overlay */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 48, 73, 0.9) 0%,
        rgba(47, 72, 88, 0.8) 100%
    );
    z-index: 1;
}

.hero-slide .container {
    z-index: 2;
}

@media (max-width: 991.98px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .carousel-indicators {
        bottom: 1rem;
    }
}

/* Footer Styles */
.footer-section {
    border-top: 1px solid rgba(0, 48, 73, 0.1);
}

.footer-section a {
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color) !important;
}

.footer-section .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 48, 73, 0.1);
    transition: all 0.3s ease;
}

.footer-section .social-links a:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-3px);
}

.footer-section ul li {
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.brand-logo {
    width: 70px !important;
    height: 70px !important;
}

/* Services Section Styles */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 48, 73, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white !important;
    transform: rotate(360deg);
}

.service-card:hover .service-icon i {
    color: white !important;
}

.service-card ul li {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.service-card ul li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .service-card {
        margin-bottom: 1rem;
    }
}

/* Contact Forms Styles */
.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid rgba(0, 48, 73, 0.1);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 48, 73, 0.1);
}

.contact-form textarea.form-control {
    resize: none;
    height: 130px; /* Fixed height for textareas */
}

.contact-form .form-label {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 48, 73, 0.2);
}

/* Card hover effect */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 48, 73, 0.1) !important;
}

@media (max-width: 991.98px) {
    .contact-form {
        margin-bottom: 2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px; /* Height of fixed header */
}

/* Active nav link */
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

/* Custom Radio Buttons - Modern Blue Style */
.service-options .form-check {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.service-options .form-check-input {
    width: 1.4em;
    height: 1.4em;
    margin-left: -2rem;
    border: 2px solid #e6e6e6;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    background-color: white;
}

.service-options .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.2em;
}

.service-options .form-check-input:checked::after {
    content: none;
}

.service-options .form-check-label {
    cursor: pointer;
    font-weight: 500;
    color: #333;
    padding-left: 0.5rem;
    font-size: 1rem;
}

/* Submit Button Style */
.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-1px);
}

.btn-primary i {
    font-size: 1.1em;
}

/* Date Input Styles */
.contact-form input[type="date"] {
    padding: 0.75rem 1.25rem;
    cursor: pointer;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Footer Links Animation and Contact Icons */
.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    margin-right: 8px;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #0d6efd;
}

.footer-links a:hover {
    color: #0d6efd;
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Icons Style */
.footer-contact li {
    display: flex;
    align-items: center;
    color: #6c757d;
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    color: #0d6efd;
    transform: translateX(5px);
}

.footer-contact i {
    color: #0d6efd;
    font-size: 1.2rem;
    width: 25px;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    transform: scale(1.2);
}

/* Social Links Animation */
.social-links a {
    color: #6c757d;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #0d6efd;
    transform: translateY(-3px);
}

.footer-links li {
    padding: 0.5rem 0;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    margin-right: 8px;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #0d6efd;
}

.footer-links a:hover {
    color: #0d6efd;
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li {
    display: flex;
    align-items: center;
    color: #6c757d;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

/* --- NORMALIZED LANDING PAGE STYLES --- */
.hero-glass-premium {
    background: rgba(0, 48, 73, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 1rem !important;
    transition: transform 0.3s ease;
}
.hero-glass-premium:hover {
    transform: translateY(-2px);
}

.hero-title {
    letter-spacing: -0.02em;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.premium-form-card {
    border: none;
    border-radius: 1rem !important;
    box-shadow: 0 10px 25px rgba(0, 48, 73, 0.08) !important;
    transition: all 0.3s ease;
    background: #ffffff;
}
.premium-form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 48, 73, 0.12) !important;
}

.custom-gradient-bg {
    background: linear-gradient(135deg, var(--light-color) 0%, rgba(142, 202, 230, 0.2) 100%);
}

.btn-amber-accent {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}
.btn-amber-accent:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 48, 73, 0.2);
}

