/* ===========================================
   RAHUL YADAV JAVA COACHING - CUSTOM STYLES
   Deep Navy Blue + Gold Theme with Animations
   =========================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    --primary-navy: #0A1F44;
    --secondary-navy: #1a2b4a;
    --royal-blue: #1F3C88;
    --cyan: #00B4D8;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #666666;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-gold {
    color: var(--gold) !important;
}

.bg-navy {
    background: var(--primary-navy) !important;
}

/* ========== NAVIGATION ========== */
.navbar {
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    background: var(--primary-navy);
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white) !important;
}

.navbar-brand i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-gold {
    background: var(--gold);
    color: var(--primary-navy);
    border: 2px solid var(--gold);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    background-image: url('https://images.unsplash.com/photo-1608858132869-4fe7467333b4?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.95) 0%, rgba(26, 43, 74, 0.9) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--gold);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 120px 0 60px;
    margin-bottom: 0;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

/* ========== ABOUT PREVIEW SECTION ========== */
.about-preview {
    padding: 80px 0;
}

.about-preview img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-preview img:hover {
    transform: scale(1.02);
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* ========== PROGRAMS SECTION ========== */
.programs-section {
    padding: 80px 0;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.program-card.highlight {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    color: var(--white);
}

.program-card.highlight .program-icon {
    background: var(--gold);
    color: var(--primary-navy);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: var(--primary-navy);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 80px 0;
}

.stat-item {
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.counter {
    color: var(--gold);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.stars i {
    color: var(--gold);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin: 1.5rem 0;
    color: var(--text-dark);
}

.testimonial-author h5 {
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-muted);
    margin: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* ========== CONTACT SECTION ========== */
.quick-contact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-item a {
    color: var(--primary-navy);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--secondary-navy);
    border-color: var(--secondary-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.3);
}

.btn-outline-primary {
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

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

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

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

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-navy);
    color: var(--white);
}

.footer h4, .footer h5 {
    color: var(--white);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-links i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* ========== FLOATING BUTTONS ========== */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
    color: var(--white);
}

.call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--primary-navy);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.call-float:hover {
    transform: scale(1.1);
    color: var(--primary-navy);
}

/* ========== COURSE DETAIL CARDS ========== */
.course-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.course-detail-card.highlight-course {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
}

.course-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--gold);
    margin: 0 auto;
}

.course-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-navy);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;


/* ========== INTERNSHIP BADGES ========== */
.internship-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--cyan);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
    z-index: 10;
    animation: pulse-badge 2s infinite;
}

.internship-badge i {
    margin-right: 0.5rem;
}

.internship-badge-highlight {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-navy);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 10;
    animation: glow 2s ease-in-out infinite;
}

.internship-badge-highlight i {
    margin-right: 0.5rem;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(212, 175, 55, 0.7);
    }
}

.badge-cyan {
    background: var(--cyan);
    color: var(--white);
}

.internship-topics i {
    color: var(--cyan) !important;
}

/* ========== CYAN BUTTON ========== */
.btn-cyan {
    background: var(--cyan);
    color: var(--white);
    border: 2px solid var(--cyan);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-cyan:hover {
    background: #0096c7;
    border-color: #0096c7;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

/* ========== INTERNSHIP & EXPOSURE SECTION ========== */
.internship-exposure-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.exposure-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--cyan);
}

.exposure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top-color: var(--gold);
}

.exposure-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cyan), var(--royal-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.exposure-card:hover .exposure-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.exposure-card h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.exposure-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.course-info-box {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.course-info-box i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.course-topics {
    list-style: none;
    padding: 0;
}

.course-topics li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.course-topics i {
    color: var(--gold);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -5px;
    background: var(--gold);
    color: var(--primary-navy);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* ========== PLACEMENT CARDS ========== */
.placement-stat-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.placement-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.placement-stat-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.placement-service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.placement-service-card i {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.success-story-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.student-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--gold);
}

.company-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-navy);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.success-story-card .role {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.success-story-card .package {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.company-logo-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.company-logo-box:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* ========== CONTACT PAGE ========== */
.contact-form {
    background: var(--white);
}

.contact-info-large .contact-item-large {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item-large .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-item-large .content h5 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.contact-item-large .content a {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item-large .content a:hover {
    color: var(--gold);
}

.social-links-large a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-navy);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    background: var(--gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

/* ========== BLOG PAGE ========== */
.blog-post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--primary-navy);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    margin-right: 1.5rem;
}

.blog-content h2 a {
    color: var(--primary-navy);
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: var(--gold);
}

.blog-sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.widget-title {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.category-list i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.popular-post {
    display: flex;
    margin-bottom: 1.5rem;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.popular-post h6 a {
    color: var(--primary-navy);
    font-size: 0.95rem;
}

.popular-post h6 a:hover {
    color: var(--gold);
}

.popular-post small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.tag-cloud a {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-navy);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin: 0 0.3rem 0.5rem 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--gold);
    color: var(--white);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
}

/* ========== ABOUT PAGE SPECIFIC ========== */
.vision-mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.methodology-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.method-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-navy);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.why-choose-card {
    padding: 1.5rem;
}

.why-choose-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.custom-list i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.feature-box {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.feature-box i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

/* ========== CTA SECTIONS ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 80px 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
    }
    
    .navbar-collapse {
        background: var(--primary-navy);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.4rem;
    }
    
    .whatsapp-float {
        bottom: 70px;
    }
}
