:root { --primary: #2c5aa0; --primary-dark: #1e3a6e; --secondary: #f8b739; --dark: #1a1a2e; --light: #f8f9fa; --gray: #6c757d; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Poppins', sans-serif; overflow-x: hidden; color: #333; }

h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* ===== HERO SECTION ===== */
.container1.hero-banner { position: relative; height: 90vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; }

.hero-image { width: 100%; height: 100%; object-fit: cover; animation: zoomInOut 20s infinite alternate; }

@keyframes zoomInOut { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

.hero-overlay { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background: linear-gradient(to right, rgba(28, 58, 113, 0.85) 0%, rgba(28, 58, 113, 0.7) 100%) !important; }
.hero-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: white; z-index: 2; width: 90%; max-width: 1200px; }

.hero-text h1 { font-size: 3.5rem; margin-bottom: 1rem; text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); animation: fadeInUp 1s ease-out; }

.hero-text p { font-size: 1.5rem; margin-bottom: 2rem; animation: fadeInUp 1s ease-out 0.3s both; }

.hero-text .btn-primary { background-color: var(--secondary); border: none; padding: 12px 30px; font-size: 1.1rem; font-weight: 600; border-radius: 50px; transition: all 0.3s ease; animation: fadeInUp 1s ease-out 0.6s both; }

.hero-text .btn-primary:hover { background-color: #e6a52c; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 80px 0; background-color: #f9fafc; }

.section-title { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 1rem; position: relative; display: inline-block; }

.section-title::after { content: ''; position: absolute; width: 60px; height: 4px; background-color: var(--secondary); bottom: -10px; left: 50%; transform: translateX(-50%); }

.section-subtitle { font-size: 1.1rem; color: var(--gray); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }

.service-card { background: white; border-radius: 10px; padding: 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: all 0.4s ease; text-align: center; position: relative; overflow: hidden; z-index: 1; }

.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0; background: linear-gradient(to right, var(--primary), var(--primary-dark)); transition: all 0.4s ease; z-index: -1; }

.service-card:hover::before { height: 100%; }

.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); }

.service-card:hover h4, .service-card:hover p { color: white; }

.service-card h4 { font-size: 1.4rem; margin-bottom: 15px; color: var(--primary-dark); transition: all 0.3s ease; }

.service-card p { color: #666; transition: all 0.3s ease; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 80px 0; background-color: white; }

.about-flex { display: flex; align-items: center; justify-content: space-between; gap: 50px; }

.about-left { flex: 1; }

.about-right { flex: 1; text-align: center; }

.about-right img { max-width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: all 0.4s ease; }

.about-right img:hover { transform: scale(1.03); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, #f9fafc 0%, #eef1f7 100%); }

.cta-flex { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.cta-card { background: white; border-radius: 15px; padding: 40px 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); transition: all 0.4s ease; text-align: center; }

.cta-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); }

.cta-card.highlight { border-top: 5px solid var(--secondary); }

/* ===== BANKING MODULES ===== */
.card { border: none; border-radius: 12px; transition: all 0.3s ease; border-top: 4px solid var(--primary); }

.card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important; }

/* ===== WHY CHOOSE US ===== */
.why-choose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; max-width: 1200px; margin: 80px auto; padding: 0 20px; }

.why-choose-grid .container1 { position: relative; overflow: hidden; border-radius: 15px; height: 300px; cursor: pointer; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }

.why-choose-grid .image { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s ease; }

.why-choose-grid .container1:hover .image { transform: scale(1.05); }

.why-choose-grid .middle { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background: rgba(44, 90, 160, 0.85); opacity: 0; transition: all 0.4s ease; padding: 20px; }

.why-choose-grid .container1:hover .middle { opacity: 1; }

.why-choose-grid .text { text-align: center !important; color: white !important; transform: translateY(20px); transition: all 0.4s ease; font-size: 28px !important; font-weight: 700; margin-bottom: 10px; background: none !important; padding: 0 !important; border-radius: 0 !important; max-width: 100% !important; }

.why-choose-grid .container1:hover .text { transform: translateY(0); }

.why-choose-grid .text { font-size: 28px; font-weight: 700; margin-bottom: 10px; }

.why-choose-grid .text p { font-size: 16px; margin-top: 10px; opacity: 0.9; }

/* ===== WORK TAGS ===== */
.work-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 30px; }

.work-tags span { background: #2c5aa0; color: white; padding: 10px 20px; border-radius: 50px; font-weight: 500; transition: all 0.3s ease; }

.work-tags span:hover { background: #f8b739; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }

/* ===== HIGHLIGHTS ===== */
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.highlight-box { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; border-left: 5px solid var(--secondary); }

.highlight-box:hover { transform: translateX(10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); }

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== FOOTER HERO ===== */
.bg-dark { background-color: var(--dark) !important; padding: 60px 0 !important; }

/* ===== ANIMATION CLASSES ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-animate { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }

.hero-animate.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 2.8rem; }
    .about-flex { flex-direction: column; }
    .about-left, .about-right { width: 100%; }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    .services-grid, .cta-flex, .highlights-grid { grid-template-columns: 1f; }
    .why-choose-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* Floating elements animation */
.floating-element { animation: float 3s ease-in-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }