/* Enhanced AM & CO. Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* Ensure images don't overflow */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Enhanced Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}
.logo-text img
width:165px!important;
 {
    width: 165px;
}
.logo:hover {
    transform: scale(1.05);
}
.logo-text img{
    width: 165px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
    justify-content: center;
}

.bar {
    width: 3px;
    background: linear-gradient(to top, #FF6B47, #FF8A6B);
    border-radius: 2px;
    animation: barGrow 2s ease-in-out infinite alternate;
}

.bar1 { height: 6px; animation-delay: 0s; }
.bar2 { height: 10px; animation-delay: 0.2s; }
.bar3 { height: 14px; animation-delay: 0.4s; }

@keyframes barGrow {
    0% { transform: scaleY(0.8); }
    100% { transform: scaleY(1.2); }
}

.arrow-up {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid #FF6B47;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.curve {
    position: absolute;
    bottom: 4px;
    left: 4px;
    width: 20px;
    height: 12px;
    border: 2px solid #4A90E2;
    border-top: none;
    border-radius: 0 0 20px 20px;
    border-right: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.am-co {
    font-size: 22px;
    font-weight: 800;
    color: #2d3748;
    line-height: 1;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 11px;
    color: #FF6B47;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
    display: block;
}

.nav-menu a:hover {
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.08);
}

.nav-menu a.active {
    color: white;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.25);
}

.nav-menu a.active:hover {
    background: linear-gradient(135deg, #357ABD, #2563eb);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-toggle:hover {
    background: rgba(74, 144, 226, 0.05);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #4a5568;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
	margin-top:95px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.protection-shield img{
    width: 500px;
    border-radius: 12px;
}
.insurance-overview .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #4A90E2!important;
    line-height: 1;
}
.insurance-overview .stat-label {
    font-size: 14px;
    color: #4a5568!important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 8px;
}
.money-icon img{
    width: 600px;
	border-radius:12px;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 125 255 / 52%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    padding: 14px 28px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    max-width: 380px;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}

.hero-card-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.hero-card-content p {
    color: #718096;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Enhanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #357ABD, #2563eb);
}
.btn-secondary {
    background: transparent;
    color: #c9e1fc;
    border-color: #deecfc;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #4A90E2;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #FF6B47;
    border-color: #FF6B47;
}

.btn-outline:hover {
    background: #FF6B47;
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Services Section */
.services {
    padding: 60px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 24px;
}
.mf-overview .overview-image img{
    width: 550px;
    border-radius: 12px;
}
.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f093fb00 0%, #f5576c00 100%)!important;
    color: white;
    transition: transform 0.3s ease;
	    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(74, 144, 226, 0.05), transparent);
    transition: transform 0.6s;
    transform: rotate(45deg) translate(-100%, -100%);
}

.service-card:hover::before {
    transform: rotate(45deg) translate(0, 0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #4A90E2;
}

.service-icon {
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

/* .service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #FF6B47, #E55A3C);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
*/
.service-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.service-card li {
    padding: 6px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-link {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    color: #357ABD;
    transform: translateX(4px);
}

/* Partners Carousel */
.partners-carousel {
    padding: 40px 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.carousel-wrapper {
    overflow: hidden;
    /*mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);*/
}
.logos-carouse2 {
    display: grid
;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 12px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    border: 1px solid #b6b6b6;
    border-radius: 7px;
}

.partner-logo {
    width: 80px;
    height: 60px;
    object-fit: contain;
      filter: grayscale(0%) opacity(1);
    filter: none;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.partner-name {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    text-align: center;
    display: none!important;
}

/* About Preview Section */
.about-preview {
    padding: 60px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-highlights {
    margin: 32px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #edf2f7;
    transform: translateX(4px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.highlight-content p {
    color: #4a5568;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
}

.company-info {
    font-size: 14px;
    color: #4a5568;
}

.company-info p {
    margin-bottom: 4px;
}

.about-image {
    position: relative;
}

.about-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #FF6B47, #E55A3C);
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 71, 0.3);
}

.experience-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.experience-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.8));
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-header {
    margin-bottom: 50px;
}

.testimonials .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonials .section-header h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: #f59e0b;
    font-size: 14px;
}

.testimonial-content p {
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: #4a5568;
}

/* Why Choose Section */
.why-choose {
    padding: 60px 0;
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.reason-card {
    text-align: center;
    padding: 24px 16px;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-4px);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.reason-card:nth-child(2) .reason-icon {
    background: linear-gradient(135deg, #FF6B47, #E55A3C);
}

.reason-card:nth-child(3) .reason-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.reason-card:nth-child(4) .reason-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.reason-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.reason-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.call-btn {
    background: #4A90E2;
    color: white;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4A90E2;
}

.footer-section p {
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: #4A90E2;
    transform: translateX(4px);
}

.contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4A90E2;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

.footer-bottom a {
    color: #4A90E2;
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header-content h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header-content p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: #4A90E2;
    text-decoration: none;
}

.breadcrumb span {
    opacity: 0.7;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border-radius: 16px;
        border: 1px solid rgba(226, 232, 240, 0.5);
        gap: 8px;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.2s ease-out;
    }

    .nav-menu a {
        padding: 16px 20px;
        border-radius: 12px;
        text-align: center;
        font-size: 15px;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar {
        padding: 12px 0;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .container {
        padding: 0 16px;
    }

    .services,
    .why-choose,
    .cta,
    .testimonials,
    .about-preview {
        padding: 40px 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header scroll effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}

.header.scrolled .nav-menu {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled .nav-toggle {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 80px 0 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .partners-carousel {
        padding: 30px 0;
    }

    .logo-item {
        min-width: 100px;
        gap: 8px;
    }

    .partner-logo {
        width: 60px;
        height: 45px;
    }

    .partner-name {
        font-size: 11px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }

/* Additional styles for other pages will remain as they were in the original CSS */
/* Just with the enhanced spacing and styling applied consistently */

/* Inner Pages Styles - AM & CO. */

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header-content p {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #667eea;
}

.breadcrumb span {
    opacity: 0.7;
}

/* Insurance Overview */
.insurance-overview,
.loans-overview,
.mf-overview,
.company-overview {
    padding: 80px 0;
    background: #fff;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.overview-text p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.overview-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #4A90E2;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 8px;
}

/* Insurance/Loan Features */
.loan-features,
.mf-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.feature-item:hover {
    background: rgba(74, 144, 226, 0.08);
    transform: translateY(-2px);
}

.feature-item i {
    color: #4A90E2;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

/* Graphics */
.insurance-graphic,
.loan-graphic,
.investment-graphic,
.about-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.protection-shield {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 25px 50px rgba(74, 144, 226, 0.4); }
}

.money-flow {
    position: relative;
    width: 180px;
    height: 180px;
}

.money-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
    animation: float 3s ease-in-out infinite;
}

/* Investment Graphics */
.growth-illustration {
    position: relative;
    width: 180px;
    height: 180px;
}

.investment-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    justify-content: center;
    height: 100%;
}

.stack-layer {
    width: 120px;
    height: 35px;
    border-radius: 18px;
    animation: stackGrow 3s ease-in-out infinite;
}

.layer1 {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    animation-delay: 0s;
}

.layer2 {
    background: linear-gradient(135deg, #10b981, #059669);
    animation-delay: 0.5s;
}

.layer3 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    animation-delay: 1s;
}

@keyframes stackGrow {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.1); }
}

.growth-arrow {
    position: absolute;
    top: -15px;
    right: -15px;
    color: #10b981;
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Insurance Types / Loan Types / Fund Categories */
.insurance-types,
.loan-types,
.fund-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.insurance-grid,
.loans-grid,
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.insurance-card,
.loan-card,
.fund-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.insurance-card::before,
.loan-card::before,
.fund-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
}

.insurance-card:hover,
.loan-card:hover,
.fund-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #4A90E2;
}

.insurance-icon,
.loan-icon,
.fund-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.insurance-card:nth-child(2) .insurance-icon,
.loan-card:nth-child(2) .loan-icon,
.fund-card:nth-child(2) .fund-icon {
    background: linear-gradient(135deg, #FF6B47, #E55A3C);
}

.insurance-card:nth-child(3) .insurance-icon,
.loan-card:nth-child(3) .loan-icon,
.fund-card:nth-child(3) .fund-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.insurance-card:nth-child(4) .insurance-icon,
.loan-card:nth-child(4) .loan-icon,
.fund-card:nth-child(4) .fund-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.insurance-card:nth-child(5) .insurance-icon,
.loan-card:nth-child(5) .loan-icon,
.fund-card:nth-child(5) .fund-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.insurance-card:nth-child(6) .insurance-icon,
.loan-card:nth-child(6) .loan-icon,
.fund-card:nth-child(6) .fund-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.insurance-card h3,
.loan-card h3,
.fund-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.insurance-card p,
.loan-card p,
.fund-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Loan Details */
.loan-details {
    margin: 20px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.detail-label {
    font-weight: 500;
    color: #4a5568;
    font-size: 14px;
}

.detail-value {
    font-weight: 700;
    color: #4A90E2;
    font-size: 14px;
}

/* Features Lists */
.features-list,
.loan-features-list,
.fund-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.features-list li,
.loan-features-list li,
.fund-features li {
    padding: 6px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.features-list li:before,
.loan-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.fund-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: bold;
}

/* Insurance Benefits / Fund Features */
.insurance-benefits {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.benefit-tag {
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Risk Meter */
.risk-meter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.risk-label,
.risk-text {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
}

.risk-bar {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.risk-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.low-risk {
    background: #10b981;
    width: 30%;
}

.medium-risk {
    background: #f59e0b;
    width: 60%;
}

.high-risk {
    background: #ef4444;
    width: 90%;
}

/* Expected Returns */
.expected-returns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    padding: 12px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
}

.returns-label {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

.returns-value {
    font-weight: 800;
    color: #4A90E2;
    font-size: 16px;
}

/* Why Choose Sections */
.why-choose-insurance,
.why-choose-about {
    padding: 80px 0;
    background: #fff;
}

.benefits-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr))!important;
    gap: 32px;
}
.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))!important;
    gap: 32px;
}

.benefit-item,
.choose-item {
    text-align: center;
    padding: 32px 20px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-item:hover,
.choose-item:hover {
    background: #edf2f7;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon,
.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.benefit-item:nth-child(2) .benefit-icon,
.choose-item:nth-child(2) .choose-icon {
    background: linear-gradient(135deg, #FF6B47, #E55A3C);
}

.benefit-item:nth-child(3) .benefit-icon,
.choose-item:nth-child(3) .choose-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-item:nth-child(4) .benefit-icon,
.choose-item:nth-child(4) .choose-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.benefit-item h3,
.choose-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.benefit-item p,
.choose-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Investment Options */
.investment-options {
    padding: 80px 0;
    background: #fff;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.investment-option {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.investment-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.option-benefits ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.option-benefits li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.option-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.option-example {
    background: rgba(74, 144, 226, 0.05);
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.option-example h5 {
    color: #4A90E2;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
}

.option-example p {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
}

/* Process Steps */
.loan-process,
.investment-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
    background: #fff;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.eligibility-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #4A90E2;
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.eligibility-card h4 {
    color: #1a202c;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.eligibility-card ul {
    list-style: none;
}

.eligibility-card li {
    padding: 10px 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.eligibility-card li:last-child {
    border-bottom: none;
}

/* Top Funds Table */
.top-funds {
    padding: 80px 0;
    background: #fff;
}

.funds-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.funds-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.funds-table th,
.funds-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.funds-table th {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.funds-table tr:hover {
    background: #f8fafc;
}

.funds-table tr:last-child td {
    border-bottom: none;
}

.positive {
    color: #10b981;
    font-weight: 700;
}

.btn-small {
    padding: 8px 16px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-small:hover {
    background: linear-gradient(135deg, #357ABD, #2563eb);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.table-note {
    text-align: center;
    margin-top: 16px;
}

.table-note em {
    color: #4a5568;
    font-size: 14px;
}

/* About Page Specific */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.mission-card h3,
.vision-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.mission-card p,
.vision-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Company Stats */
.company-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4A90E2;
    font-size: 2rem;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4A90E2;
    display: block;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-label {
    font-size: 14px;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.company-overview img{
    width: 560px;
    border-radius: 12px;
    height: 700px;
    object-fit: cover;
}
.team-member {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
    margin-bottom: 20px;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2.5rem;
}

.member-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.member-role {
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    display: none!important;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.member-social a {
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social a:hover {
    background: #4A90E2;
    color: white;
    transform: translateY(-2px);
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: #fff;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.award-item {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border-left: 4px solid #f59e0b;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.award-icon {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 16px;
}

.award-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.award-item p {
    color: #4a5568;
    font-size: 14px;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.contact-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.contact-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #FF6B47, #E55A3C);
}

.contact-item:nth-child(4) .contact-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 12px;
}

.contact-item a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.business-hours,
.response-time,
.emergency-note {
    display: block;
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    margin-top: 12px;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-features {
    margin-bottom: 40px;
}

.contact-features .feature-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.social-connect h4 {
    color: #1a202c;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.social-connect .social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.social-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link.facebook { border-left: 4px solid #1877f2; }
.social-link.twitter { border-left: 4px solid #1da1f2; }
.social-link.linkedin { border-left: 4px solid #0077b5; }
.social-link.instagram { border-left: 4px solid #e4405f; }

.social-link i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.social-link span {
    font-weight: 600;
}

/* Form Styles */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 32px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
    font-size: 14px;
    color: #4a5568;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    width: 100%;
    position: relative;
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: #fff;
}

.quick-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.quick-option {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.quick-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.quick-option h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.quick-option p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #357ABD;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.map-placeholder i {
    font-size: 4rem;
    color: #4A90E2;
    margin-bottom: 20px;
}

.map-placeholder h4 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 700;
}

.map-placeholder p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-details {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.location-details h4 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.location-details .detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.location-details .detail-item:last-child {
    border-bottom: none;
}

.location-details .detail-item i {
    color: #4A90E2;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.location-details .detail-item span {
    color: #4a5568;
    font-size: 14px;
}

/* Responsive Design for Inner Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .overview-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .insurance-grid,
    .loans-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .social-connect .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .social-link {
        flex: 1;
        min-width: 45%;
    }

    .loan-features,
    .mf-benefits {
        grid-template-columns: 1fr;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 90px 0 50px;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .insurance-benefits,
    .benefit-tag {
        justify-content: center;
        gap: 6px;
    }

    .protection-shield,
    .money-icon {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .growth-illustration {
        width: 120px;
        height: 120px;
    }

    .stack-layer {
        width: 80px;
        height: 25px;
    }

    .map-placeholder {
        padding: 40px 20px;
    }

    .contact-form-container {
        padding: 24px;
    }
}

.services, .products, .partners {
            background: white;
            margin: 3rem 0;
            padding: 3rem;
            border-radius: 20px;
        }

        .services h2, .products h2, .partners h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: #333;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .service-card {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            transition: transform 0.3s ease;
        }

        .service-card:nth-child(2) {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .service-card:nth-child(3) {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .service-card:nth-child(4) {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
       @media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  .nav-toggle {
    display: flex;
  }
}
/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; /* below header */
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
  }

  .nav-toggle {
    display: flex;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* --- Mobile Navigation Fix --- */
@media (max-width: 768px) {
	.logos-carousel {
    display: grid
;
    /* animation: scroll 30s linear infinite; */
    gap: 12px;
    grid-template-columns: 1fr 1fr 1fr;
}

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;   /* appears below header */
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  .nav-menu li {
    margin: 8px 0;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
    color: #333;
  }

  .nav-toggle {
    display: flex; /* ensure hamburger is visible */
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;  /* hidden by default */
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px; 
        right: 0;
        width: 200px;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        display: flex;  /* show menu when active */
        width:100%;
    }

    .nav-toggle {
        display: flex; /* show hamburger on mobile */
    }
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.photo-placeholder img{
    width: 100px!important;
    border-radius: 50%!important;
}
.partners-carousel1 {margin:30px 0;}

/* Dropdown Menu Styles */
.nav-menu li {
    position: relative;
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu .dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    z-index: 1000;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #4a5568;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.nav-menu .dropdown-menu a:hover {
    background: rgba(74, 144, 226, 0.08);
    color: #4A90E2;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Team Detail Section Styles */
.team-detail-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-detail-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-detail-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.team-detail-section .section-header p {
    font-size: 18px;
    color: #64748b;
}

.team-member-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    align-items: start;
}

.team-member-detail.reverse {
    grid-template-columns: 2fr 1fr;
}

.team-member-detail.reverse .member-photo-large {
    order: 2;
}

.team-member-detail.reverse .member-detail-content {
    order: 1;
}

.member-photo-large {
    text-align: center;
}

.member-photo-large img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.member-photo-large img:hover {
    transform: scale(1.05);
}

.member-detail-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.member-position {
    font-size: 18px;
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 20px;
}

.member-bio {
    margin-bottom: 30px;
}

.member-bio p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.member-expertise h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.member-expertise ul {
    list-style: none;
    padding: 0;
}

.member-expertise ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #4a5568;
}

.member-expertise ul li i {
    color: #4A90E2;
    font-size: 18px;
}

/* Mobile Responsive for Team Detail */
@media (max-width: 768px) {
    .team-member-detail,
    .team-member-detail.reverse {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .team-member-detail.reverse .member-photo-large,
    .team-member-detail.reverse .member-detail-content {
        order: unset;
    }

    .member-photo-large img {
        max-width: 200px;
    }

    .member-detail-content h3 {
        font-size: 24px;
    }

    .team-detail-section {
        padding: 40px 0;
    }

    .team-detail-section .section-header h2 {
        font-size: 28px;
    }

    /* Mobile dropdown menu */
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding-left: 16px;
        background: rgba(74, 144, 226, 0.05);
    }

    .nav-menu .dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }
}