/* Color Palette from Image 
   Primary Blue: #2158A4
   Accent Yellow: #FFCC00
*/

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Global Highlights */
.text-gold {
    color: #FFCC00 !important;
}

.heading-line {
    width: 60px;
    height: 4px;
    background-color: #FFCC00;
}

/* Navbar - Using the Blue from the Image */
.navbar {
    background-color: #2158A4 !important;
    border-bottom: 4px solid #FFCC00;
    padding: 1rem 0;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #FFCC00 !important;
}

/* Hero Section with Image Blue Overlay */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(33, 88, 164, 0.85), rgba(33, 88, 164, 0.85)), 
                url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

/* Primary Buttons - Using the Yellow from the Image */
.btn-primary {
    background-color: #FFCC00;
    border-color: #FFCC00;
    color: #2158A4; /* Blue text on yellow button */
    font-weight: bold;
    border-radius: 0;
    text-uppercase: uppercase;
}

.btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #2158A4;
}

/* Cards & Expertise */
.card {
    border-top: 5px solid #FFCC00 !important;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    background-color: #2158A4;
}

.card:hover h5, .card:hover p {
    color: #ffffff !important;
}

.card:hover i {
    color: #FFCC00 !important;
}

/* Founder Section Styling */
.founder-image-wrapper {
    border-bottom: 6px solid #FFCC00;
}

/* Floating WhatsApp with Image Border */
.whatsapp-float {
    background-color: #25d366;
    border: 3px solid #FFCC00;
}

/* Footer */
footer {
    background-color: #2158A4 !important;
    border-top: 4px solid #FFCC00;
    color: #ffffff;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid #FFD700;
    /* Added gold border to match theme */
}

/* About Section Styling */
#about {
    background-color: #ffffff;
}

.about-image-container img {
    border-left: 5px solid #FFD700;
}

.experience-badge {
    bottom: -20px;
    left: 20px;
    min-width: 180px;
    background-color: #002147;
    color: #fff;
    padding: 15px;
    border-top: 3px solid #FFD700;
}

#about i {
    font-size: 1.2rem;
    color: #FFD700;
}

/* Founder Section Styling */
.founder-image-wrapper {
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.founder-image-wrapper img {
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(40%);
}

.founder-image-wrapper img:hover {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.blockquote {
    font-style: italic;
    background-color: #f8f9fa;
    border-left: 4px solid #FFD700;
    padding: 15px 25px;
}

/* Footer Integration */
footer {
    background-color: #002147 !important;
    border-top: 2px solid #FFD700;
    color: white;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Styling for the Navy/Gold Dropdown */
.bg-navy {
    background-color: #002147 !important;
}

.border-gold {
    border: 1px solid #FFD700 !important;
}

.bg-gold-muted {
    background-color: rgba(255, 215, 0, 0.3);
}

.dropdown-item:hover {
    background-color: #FFD700;
    color: #002147 !important;
}

/* Ensure dropdown opens on hover for desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}