* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #0a2540;
    overflow-x: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #f8faff 0%, #e1eaff 100%);
    overflow: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2%;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 115, 232, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 2%;
    background: rgba(255, 255, 255, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 80px;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Main Navigation */
.nav-links {
    display: flex;
    list-style: none;
    margin-left: 20px;
}

.nav-links li {
    position: relative;
    margin: 0 2px;
}

.nav-links a {
    color: #0a2540;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.nav-links a:hover {
    color: #1a73e8;
    background-color: rgba(26, 115, 232, 0.08);
}

/* Updated Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 230px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    border-radius: 15px;
    padding: 5px;
    z-index: 1;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(26, 115, 232, 0.1);
}

.dropdown-content:before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-left: 1px solid rgba(26, 115, 232, 0.1);
    border-top: 1px solid rgba(26, 115, 232, 0.1);
}

.dropdown-content a {
    padding: 5px 10px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    color: #0a2540;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.dropdown-content a i {
    margin-right: 12px;
    font-size: 1.1rem;
    color: #1a73e8;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(26, 115, 232, 0.1);
    transform: translateX(5px);
}

.dropdown-content a:hover i {
    transform: scale(1.2);
}

.nav-links li:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    top: 100%;
}

/* Dropdown Indicator */
.dropdown-indicator {
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-links li:hover .dropdown-indicator {
    transform: rotate(180deg);
}

/* Animated CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover:after {
    width: 250px;
    height: 250px;
}

.btn-outline {
    border: 2px solid #1a73e8;
    color: #1a73e8;
    background: transparent;
}

.btn-filled {
    background: linear-gradient(135deg, #1a73e8 0%, #0d5bbd 100%);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-outline:hover {
    background-color: rgba(26, 115, 232, 0.05);
    transform: translateY(-2px);
}

.btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a73e8;
    transition: all 0.3s ease;
}

.mobile-toggle i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.mobile-toggle:hover i {
    transform: rotate(90deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.4s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(26, 115, 232, 0.1);
    }
    
    .nav-links a {
        padding: 15px 20px;
    }

    .nav-links a:after {
        display: none;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(26, 115, 232, 0.05);
        border-radius: 0;
        margin: 0;
        border: none;
    }

    .dropdown-content:before {
        display: none;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown-indicator {
        margin-right: 10px;
    }

    .dropdown-active .dropdown-indicator {
        transform: rotate(180deg);
    }

    .dropdown-active .dropdown-content {
        display: block;
    }

    .cta-buttons {
        margin: 15px 20px;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.8rem 4%;
    }

    .logo img {
        height: 50px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

.hero-content {
    display: flex;
    height: 100%;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
    animation: fadeInUp 1s ease-out;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s ease infinite;
}

.hero-text h1 span {
    color: #1a73e8;
    background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* New dynamic visual animation */
.dynamic-visual {
    width: 100%;
    max-width: 600px;
    height: 400px;
    position: relative;
    animation: floatIn 1.2s ease-out;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.rotating-cube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
    width: 200px;
    height: 200px;
    animation: rotateCube 20s linear infinite;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(26, 115, 232, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #1a73e8;
    box-shadow: 0 0 20px rgba(26, 115, 232, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
}

.cube-face:hover {
    background: rgba(26, 115, 232, 0.2);
}

.face-front { transform: translateZ(100px); }
.face-back { transform: rotateY(180deg) translateZ(100px); }
.face-right { transform: rotateY(90deg) translateZ(100px); }
.face-left { transform: rotateY(-90deg) translateZ(100px); }
.face-top { transform: rotateX(90deg) translateZ(100px); }
.face-bottom { transform: rotateX(-90deg) translateZ(100px); }

.orbiting-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(26, 115, 232, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation: rotateOrbit 15s linear infinite;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    animation: rotateOrbit 20s linear infinite reverse;
}

.orbit-3 {
    width: 500px;
    height: 500px;
    animation: rotateOrbit 25s linear infinite;
}

.orbiting-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #1a73e8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #1a73e8, 0 0 20px #1a73e8;
}

.particle-1 { top: 0; left: 50%; }
.particle-2 { top: 50%; left: 100%; }
.particle-3 { top: 100%; left: 50%; }
.particle-4 { top: 50%; left: 0; }

.light-streaks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.light-streak {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a73e8, transparent);
    animation: lightStreak 3s linear infinite;
    opacity: 0;
}

.pulsating-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #1a73e8;
    transform: translate(-50%, -50%) scale(0);
    animation: pulseCircle 4s ease-out infinite;
}

.pulse-1 { animation-delay: 0s; }
.pulse-2 { animation-delay: 1s; }
.pulse-3 { animation-delay: 2s; }
.pulse-4 { animation-delay: 3s; }

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    color: #1a73e8;
    opacity: 0.8;
    animation: floatIcon 10s ease-in-out infinite;
}

@keyframes rotateCube {
    0% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg); }
}

@keyframes rotateOrbit {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes lightStreak {
    0% {
        left: -100%;
        width: 30%;
        opacity: 0;
    }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% {
        left: 100%;
        width: 30%;
        opacity: 0;
    }
}

@keyframes pulseCircle {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes floatIcon {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 1; }
    100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) scale(1);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

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

@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        padding-top: 60px; /* Reduced padding for mobile */
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 1rem; /* Reduced margin for tighter spacing */
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .dynamic-visual {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(10, 37, 64, 0.1);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        height: 80vh; /* Reduced height to remove blank space */
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .dynamic-visual {
        height: 200px; /* Reduced height for mobile */
        max-width: 300px; /* Reduced width for mobile */
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 40%;
        margin: auto;
        text-align: center;
    }

    .rotating-cube {
        width: 100px; /* Smaller cube */
        height: 100px;
    }

    .cube-face {
        width: 100px;
        height: 100px;
        font-size: 1.2rem; /* Smaller icons */
    }

    .cube-face img {
        width: 30px; /* Smaller bull image */
        height: 30px;
    }

    .face-front { transform: translateZ(50px); }
    .face-back { transform: rotateY(180deg) translateZ(50px); }
    .face-right { transform: rotateY(90deg) translateZ(50px); }
    .face-left { transform: rotateY(-90deg) translateZ(50px); }
    .face-top { transform: rotateX(90deg) translateZ(50px); }
    .face-bottom { transform: rotateX(-90deg) translateZ(50px); }

    .orbit-1 {
        width: 150px; /* Smaller orbits */
        height: 150px;
        animation-duration: 10s; /* Faster animation */
    }

    .orbit-2 {
        width: 200px;
        height: 200px;
        animation-duration: 12s;
    }

    .orbit-3 {
        width: 250px;
        height: 250px;
        animation-duration: 15s;
    }

    .orbiting-particle {
        width: 10px; /* Smaller particles */
        height: 10px;
        box-shadow: 0 0 5px #1a73e8, 0 0 10px #1a73e8;
    }

    .light-streak {
        height: 1px; /* Thinner streaks */
        animation-duration: 2s; /* Faster streaks */
    }

    .pulse-circle {
        animation: pulseCircleMobile 3s ease-out infinite; /* Faster and smaller pulse */
    }

    @keyframes pulseCircleMobile {
        0% {
            width: 0;
            height: 0;
            opacity: 0.6;
            transform: translate(-50%, -50%) scale(0);
        }
        100% {
            width: 200px; /* Smaller final size */
            height: 200px;
            opacity: 0;
            transform: translate(-50%, -50%) scale(1);
        }
    }
}
		.features-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f8faff 0%, #e1eaff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .section-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientText 5s ease infinite;
        background-size: 200% 200%;
    }
    
    .section-header h2 span {
        color: #1a73e8;
        background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .section-header p {
        font-size: 1.1rem;
        color: #546e7a;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .feature-card {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(26, 115, 232, 0.1);
        z-index: 1;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(26, 115, 232, 0.15);
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(26, 115, 232, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
        z-index: -1;
        transition: opacity 0.3s ease;
        opacity: 0;
    }
    
    .feature-card:hover::before {
        opacity: 1;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
        transition: transform 0.3s ease;
    }
    
    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
    }
    
    .feature-icon i {
        font-size: 1.5rem;
        color: #ffffff;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: #0a2540;
    }
    
    .feature-card p {
        font-size: 1rem;
        color: #546e7a;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .feature-link {
        color: #1a73e8;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: transform 0.3s ease;
    }
    
    .feature-link i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }
    
    .feature-link:hover {
        transform: translateX(5px);
    }
    
    .feature-link:hover i {
        transform: translateX(3px);
    }
    
    .features-cta {
        text-align: center;
    }
    
    @media (max-width: 1024px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 2rem;
        }
        
        .section-header p {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 576px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .features-section {
            padding: 4rem 0;
        }
        
        .feature-card {
            padding: 1.5rem;
        }
    }
	.app-download-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
        overflow: hidden;
        position: relative;
    }
    
    .app-download-section .section-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .app-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }
    
    .app-text {
        flex: 1;
        max-width: 600px;
    }
    
    .app-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientText 5s ease infinite;
        background-size: 200% 200%;
    }
    
    .app-text h2 span {
        color: #1a73e8;
        background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .app-text p {
        font-size: 1.1rem;
        color: #546e7a;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .app-features {
        margin-bottom: 2.5rem;
    }
    
    .app-feature {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .app-feature:hover {
        transform: translateX(5px);
    }
    
    .app-feature i {
        color: #1a73e8;
        font-size: 1.2rem;
        background: rgba(26, 115, 232, 0.1);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .app-feature h4 {
        margin-bottom: 0.3rem;
        color: #0a2540;
    }
    
    .app-feature p {
        font-size: 0.95rem;
        margin-bottom: 0;
    }
    
    .download-buttons {
        display: flex;
        gap: 1rem;
    }
    
    .download-btn {
        display: flex;
        align-items: center;
        background: #0a2540;
        color: white;
        padding: 0.8rem 1.2rem;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .download-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(10, 37, 64, 0.2);
    }
    
    .download-btn i {
        font-size: 2rem;
        margin-right: 0.8rem;
    }
    
    .download-btn div {
        display: flex;
        flex-direction: column;
    }
    
    .download-btn span {
        font-size: 0.7rem;
        opacity: 0.8;
    }
    
    .download-btn strong {
        font-size: 1.1rem;
    }
    
    /* Mobile device container from first code */
    .mobile-device-container {
        flex: 1;
        display: flex;
        justify-content: center;
        position: relative;
    }
    
    .mobile-device-frame {
        width: 280px;
        height: 580px;
        background: #0a2540;
        border-radius: 36px;
        padding: 12px;
        position: relative;
        box-shadow: 0 30px 60px rgba(10, 37, 64, 0.3);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: floatDevice 6s ease-in-out infinite;
    }
    
    @keyframes floatDevice {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-15px) rotate(1deg);
        }
    }
    
    .device-notch {
        width: 150px;
        height: 25px;
        background: #0a2540;
        border-radius: 0 0 15px 15px;
        margin: 0 auto;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .app-screenshot {
        flex: 1;
        width: 100%;
        height: calc(100% - 10px);
        border-radius: 26px;
        margin-top: 25px;
        object-fit: cover;
        position: relative;
        background: #1a73e8;
        background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
    }
    
    .device-shadow {
        position: absolute;
        bottom: -20px;
        width: 70%;
        height: 20px;
        background: rgba(10, 37, 64, 0.2);
        filter: blur(15px);
        border-radius: 50%;
    }
    
    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    
    .float-element {
        position: absolute;
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(26, 115, 232, 0.2);
        animation: floatElement 8s ease-in-out infinite;
    }
    
    .float-element:nth-child(even) {
        animation-duration: 10s;
        animation-delay: 1s;
    }
    
    .float-element i {
        font-size: 1.5rem;
        color: #1a73e8;
    }
    
    @keyframes floatElement {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-20px) scale(1.05);
        }
    }
    
    .floating-stats {
        position: absolute;
        right: -40px;
        top: 150px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 20;
    }
    
    .stat-card {
        background: rgba(255, 255, 255, 0.95);
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        min-width: 110px;
        animation: pulseStat 3s ease-in-out infinite;
    }
    
    .stat-card:nth-child(even) {
        animation-delay: 1.5s;
    }
    
    @keyframes pulseStat {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
        background: rgba(26, 115, 232, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
    }
    
    .stat-icon i {
        color: #1a73e8;
        font-size: 0.8rem;
    }
    
    .stat-data {
        font-weight: 700;
        color: #0a2540;
        font-size: 1.1rem;
    }
    
    @keyframes gradientText {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .app-content {
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }
        
        .app-text {
            max-width: 100%;
            text-align: center;
        }
        
        .app-feature {
            justify-content: center;
            text-align: left;
        }
        
        .download-buttons {
            justify-content: center;
        }
    }
    
    @media (max-width: 768px) {
        .app-download-section {
            padding: 4rem 0;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .floating-stats {
            right: -20px;
        }
    }
    
    @media (max-width: 576px) {
        .mobile-device-frame {
            width: 240px;
            height: 500px;
            border-radius: 30px;
        }
        
        .device-notch {
            width: 120px;
            height: 20px;
        }
        
        .app-screenshot {
            border-radius: 22px;
        }
        
        .app-feature {
            flex-direction: column;
            align-items: center;
        }
        
        .app-feature i {
            margin-right: 0;
            margin-bottom: 1rem;
        }
        
        .feature-text {
            text-align: center;
        }
        
        .floating-stats {
            display: none;
        }
        
        .download-buttons {
            flex-direction: column;
        }
        
        .app-text h2 {
            font-size: 2rem;
        }
    }
	
	
	
	
	.pricing-section {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f8faff 0%, #e1eaff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .pricing-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231a73e8' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.5;
        z-index: 0;
    }
    
    .section-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientText 5s ease infinite;
        background-size: 200% 200%;
    }
    
    .section-header h2 span {
        color: #1a73e8;
        background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .section-header p {
        font-size: 1.1rem;
        color: #546e7a;
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* Pricing Cards */
    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
        border: 1px solid rgba(26, 115, 232, 0.1);
        display: flex;
        flex-direction: column;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(26, 115, 232, 0.15);
    }
    
    .pricing-card.featured {
        border: 2px solid #1a73e8;
        transform: scale(1.02);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-10px);
    }
    
    .price-badge {
        position: absolute;
        top: 0;
        right: 0;
        background: #1a73e8;
        color: white;
        padding: 5px 15px;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 0 12px 0 12px;
    }
    
    .price-header {
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(26, 115, 232, 0.1);
    }
    
    .price-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
    }
    
    .price-icon i {
        font-size: 1.5rem;
        color: #ffffff;
    }
    
    .price-amount {
        font-size: 3rem;
        font-weight: 700;
        color: #0a2540;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .price-amount .currency {
        font-size: 1.8rem;
        margin-right: 5px;
        align-self: flex-start;
        margin-top: 5px;
    }
    
    .price-header h3 {
        font-size: 1.4rem;
        color: #0a2540;
        margin: 0;
    }
    
    .price-details {
        padding: 1.5rem 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .price-details p {
        font-size: 0.95rem;
        color: #546e7a;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .price-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .price-features li {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        color: #0a2540;
    }
    
    .price-features li i {
        margin-right: 10px;
        color: #1a73e8;
        font-size: 0.8rem;
    }
    
    .price-cta {
        padding: 0 2rem 2rem;
        text-align: center;
    }
    
    .price-cta .btn {
        width: 100%;
    }
    
    /* Notes Section */
    .pricing-notes {
        margin: 2rem 0;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        border: 1px solid rgba(26, 115, 232, 0.1);
    }
    
    .pricing-notes p {
        color: #546e7a;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-notes p:last-child {
        margin-bottom: 0;
    }
    
    /* Additional Pricing Information */
    .pricing-additional {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    /* Comparison Section */
    .pricing-comparison h3, 
    .pricing-faq h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: #0a2540;
        text-align: center;
    }
    
    .comparison-container {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .comparison-item {
        flex: 1;
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .comparison-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-item.highlight {
        border: 2px solid #1a73e8;
    }
    
    .comparison-title {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .comparison-title i {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        color: white;
    }
    
    .comparison-title h4 {
        margin: 0;
        font-size: 1.2rem;
        color: #0a2540;
    }
    
    .comparison-vs {
        width: 40px;
        height: 40px;
        background: #0a2540;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(10, 37, 64, 0.2);
        font-size: 0.9rem;
    }
    
    .comparison-details {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .comparison-details li {
        display: flex;
        align-items: center;
        margin-bottom: 0.8rem;
        color: #546e7a;
        font-size: 0.95rem;
    }
    
    .comparison-details li i {
        margin-right: 10px;
        font-size: 0.8rem;
    }
    
    .comparison-details li i.fa-check {
        color: #2ecc71;
    }
    
    .comparison-details li i.fa-times {
        color: #e74c3c;
    }
    
    /* FAQ Section */
    .faq-container {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
    
    .faq-item {
        border-bottom: 1px solid rgba(26, 115, 232, 0.1);
    }
    
    .faq-item:last-child {
        border-bottom: none;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .faq-question:hover {
        background: rgba(26, 115, 232, 0.05);
    }
    
    .faq-question h4 {
        margin: 0;
        font-size: 1.1rem;
        color: #0a2540;
    }
    
    .faq-question i {
        color: #1a73e8;
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
        max-height: 1000px;
    }
    
    .faq-answer p {
        margin: 0;
        color: #546e7a;
        line-height: 1.6;
    }
    
    /* CTA Section */
    .pricing-cta-section {
        text-align: center;
        padding: 3rem 0 1rem;
    }
    
    .pricing-cta-section h3 {
        font-size: 1.8rem;
        color: #0a2540;
        margin-bottom: 1rem;
    }
    
    .pricing-cta-section p {
        font-size: 1.1rem;
        color: #546e7a;
        margin-bottom: 2rem;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .pricing-cards {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .pricing-additional {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .pricing-section {
            padding: 4rem 0;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .comparison-container {
            flex-direction: column;
        }
        
        .comparison-vs {
            margin: 1rem 0;
        }
    }
    
    @media (max-width: 576px) {
        .pricing-cards {
            grid-template-columns: 1fr;
        }
        
        .pricing-card.featured {
            transform: scale(1);
        }
        
        .pricing-card.featured:hover {
            transform: translateY(-10px);
        }
        
        .section-header h2 {
            font-size: 1.8rem;
        }
    }

    /* JavaScript for FAQ accordions */
    .faq-question {
        cursor: pointer;
    }
	
	
	
	.account-details-section {
            padding: 3rem 0;
            background: linear-gradient(135deg, #f8faff 0%, #e1eaff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .section-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
            color: #0a2540;
            margin-bottom: 0.5rem;
        }
        
        .section-header h2 span {
            color: #1a73e8;
        }
        
        .section-header p {
            color: #546e7a;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .account-details-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 2rem;
            border: 1px solid rgba(26, 115, 232, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .account-details-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(26, 115, 232, 0.15);
        }
        
        .account-header {
            background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .account-logo {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .account-logo i {
            font-size: 1.5rem;
            color: white;
        }
        
        .account-title h3 {
            font-size: 1.4rem;
            margin-bottom: 0.3rem;
        }
        
        .account-title h3 span {
            font-weight: 400;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .account-info {
            padding: 0;
        }
        
        .info-row {
            display: flex;
            padding: 1rem 2rem;
            transition: background-color 0.3s ease;
        }
        
        .info-row:hover {
            background-color: rgba(26, 115, 232, 0.05);
        }
        
        .info-row.alt {
            background-color: rgba(248, 250, 255, 0.8);
        }
        
        .info-row.alt:hover {
            background-color: rgba(26, 115, 232, 0.08);
        }
        
        .info-label {
            flex: 0 0 200px;
            font-weight: 600;
            color: #0a2540;
        }
        
        .info-value {
            flex: 1;
            color: #546e7a;
        }
        
        .secure-value {
            display: flex;
            align-items: center;
        }
        
        .copy-btn {
            background: none;
            border: none;
            color: #1a73e8;
            cursor: pointer;
            margin-left: 10px;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .copy-btn:hover {
            background-color: rgba(26, 115, 232, 0.1);
            transform: scale(1.1);
        }
        
        .account-actions {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            padding: 1.5rem 2rem;
            background-color: rgba(248, 250, 255, 0.8);
            border-top: 1px solid rgba(26, 115, 232, 0.1);
        }
        
        .security-note {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.9);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(26, 115, 232, 0.1);
        }
        
        .note-icon {
            width: 40px;
            height: 40px;
            background: rgba(26, 115, 232, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: #1a73e8;
            flex-shrink: 0;
        }
        
        .note-text h4 {
            color: #0a2540;
            margin-bottom: 0.5rem;
        }
        
        .note-text p {
            color: #546e7a;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .account-details-section {
                padding: 2rem 0;
            }
            
            .section-container {
                width: 95%;
            }
            
            .section-header h2 {
                font-size: 1.5rem;
            }
            
            .account-header {
                padding: 1.2rem 1.5rem;
            }
            
            .account-logo {
                width: 40px;
                height: 40px;
            }
            
            .account-title h3 {
                font-size: 1.2rem;
            }
            
            .account-title h3 span {
                display: block;
                margin-top: 0.2rem;
            }
            
            .info-row {
                flex-direction: column;
                padding: 0.8rem 1.5rem;
            }
            
            .info-label {
                margin-bottom: 0.3rem;
                flex: none;
            }
            
            .account-actions {
                flex-direction: column;
                padding: 1rem 1.5rem;
            }
            
            .account-actions .btn {
                width: 100%;
                text-align: center;
                margin-bottom: 0.5rem;
            }
            
            .security-note {
                flex-direction: column;
                padding: 1.2rem;
            }
            
            .note-icon {
                margin: 0 0 0.8rem 0;
            }
            
            .note-text {
                text-align: center;
            }
        }
    
    /* Copy functionality script */
	
	.investor-information {
        padding: 4rem 0;
        background-color: #f5f7fb;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(26, 115, 232, 0.1);
    }
    
    .investor-content {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
        padding: 2.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(26, 115, 232, 0.1);
    }
    
    .investor-content p {
        margin-bottom: 1rem;
        line-height: 1.6;
        color: #546e7a;
        font-size: 0.95rem;
    }
    
    .investor-links, .language-selection {
        margin: 1.5rem 0;
    }
    
    .investor-link, .language-link {
        color: #1a73e8;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .investor-link:hover, .language-link:hover {
        color: #0d5bbd;
        text-decoration: underline;
    }
    
    .company-details, .investor-warnings, .investor-notes, .filing-procedure {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(26, 115, 232, 0.1);
    }
    
    .filing-procedure p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: #0a2540;
    }
    
    @media (max-width: 768px) {
        .investor-information {
            padding: 3rem 0;
        }
        
        .investor-content {
            padding: 1.5rem;
        }
        
        .section-header h2 {
            font-size: 1.5rem;
        }
    }
	
	* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8faff;
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #0a2540 0%, #051d35 100%);
            color: #ffffff;
            padding: 4rem 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            grid-column: span 4;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            height: 45px;
            margin-right: 1rem;
        }

        .footer-logo h2 {
            font-size: 1.8rem;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .footer-section {
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 10px;
            color: #ffffff;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #1a73e8;
        }

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

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

        .footer-links a {
            color: #ccd7e6;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 8px;
            font-size: 0.8rem;
            color: #1a73e8;
        }

        .footer-links a:hover {
            color: #1a73e8;
            transform: translateX(5px);
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .footer-contact li i {
            color: #1a73e8;
            margin-right: 10px;
            margin-top: 5px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #1a73e8;
            transform: translateY(-5px);
        }

        .newsletter {
            margin-top: 1.5rem;
        }

        .newsletter p {
            color: #ccd7e6;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            height: 45px;
        }

        .newsletter-input {
            flex: 1;
            padding: 0 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-right: none;
            border-radius: 4px 0 0 4px;
            color: #ffffff;
            outline: none;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-btn {
            background: #1a73e8;
            color: #ffffff;
            border: none;
            padding: 0 20px;
            font-weight: 600;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #0d5bbd;
        }

        .copyright {
            text-align: center;
            padding: 1.5rem 0;
            margin-top: 3rem;
            background: rgba(0, 0, 0, 0.2);
            color: #ccd7e6;
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }

        .copyright a {
            color: #1a73e8;
            text-decoration: none;
            font-weight: 500;
        }

        .footer-light-streaks {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .footer-light-streak {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.2), transparent);
            animation: lightStreak 8s linear infinite;
            opacity: 0;
        }

        @keyframes lightStreak {
            0% {
                left: -100%;
                width: 30%;
                opacity: 0;
            }
            10% { opacity: 0.5; }
            80% { opacity: 0.5; }
            100% {
                left: 100%;
                width: 30%;
                opacity: 0;
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-logo {
                grid-column: span 2;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .footer-logo {
                grid-column: span 1;
            }
            
            .newsletter-form {
                flex-direction: column;
                height: auto;
            }
            
            .newsletter-input {
                border-radius: 4px;
                border-right: 1px solid rgba(255, 255, 255, 0.2);
                margin-bottom: 10px;
                height: 45px;
            }
            
            .newsletter-btn {
                border-radius: 4px;
                height: 45px;
            }
        }
		.btn-premium {
        background: linear-gradient(135deg, #1e2a5e 0%, #4a3b96 100%);
        color: #ffffff;
        border: none;
        box-shadow: 0 4px 15px rgba(30, 42, 94, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: relative;
        overflow: hidden;
        padding: 10px 20px;
    }
    
    /* Icon styling */
    .btn-premium i {
        font-size: 0.95rem;
        color: #ffd700;
        transition: all 0.3s ease;
    }
    
    .btn-premium:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(30, 42, 94, 0.5);
    }
    
    /* Shine effect on hover */
    .btn-premium::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: 0.5s;
    }
    
    .btn-premium:hover::before {
        left: 100%;
    }
    
    .btn-premium:hover i {
        transform: rotate(15deg) scale(1.2);
    }

/* Extracted from about.php */

             * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: #f8faff;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about-header {
            padding: 80px 0 50px;
            text-align: center;
            background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
            color: white;
        }
        
        .about-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .about-header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .about-content {
            padding: 60px 0;
        }
        
        .about-section-layout {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        /* Highlights Section */
        .highlights-section {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .highlight-box {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(26, 115, 232, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            text-align: left;
        }
        
        .highlight-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(26, 115, 232, 0.15);
        }
        
        .highlight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .highlight-icon i {
            color: white;
            font-size: 1.3rem;
        }
        
        .highlight-content h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #0a2540;
        }
        
        .highlight-content p {
            color: #546e7a;
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }
        
        /* About Description */
        .about-description {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(26, 115, 232, 0.15);
        }
        
        .about-description h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: #0a2540;
        }
        
        .about-description p {
            margin-bottom: 20px;
            color: #546e7a;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .about-description p:last-child {
            margin-bottom: 0;
        }
        
        /* Team Section */
        .team-section {
            padding: 40px 0 80px;
        }
        
        .team-section h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: #0a2540;
        }
        
        /* Leadership Grid */
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .leadership-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid transparent;
            background-clip: padding-box;
            position: relative;
        }
        
        .leadership-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-radius: 20px;
            z-index: -1;
            margin: -3px;
        }
        
        .leadership-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(26, 115, 232, 0.25);
        }
        
        .leadership-content {
            display: flex;
            height: 380px;
        }
        
        .leadership-img {
            width: 40%;
            overflow: hidden;
            position: relative;
        }
        
        .leadership-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }
        
        .role-badge {
            display: inline-block;
            background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.85rem;
            box-shadow: 0 5px 15px rgba(26, 115, 232, 0.4);
            margin-top: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .leadership-info {
            width: 60%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .leadership-details {
            flex-grow: 1;
        }
        
        .leadership-info h3 {
            font-size: 1.8rem;
            margin-bottom: 0;
            color: #0a2540;
        }
        
        .leadership-title {
            color: #1a73e8;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .leadership-bio {
            color: #546e7a;
            margin-bottom: 25px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #f0f4ff 0%, #e1eaff 100%);
            border-radius: 50%;
            color: #1a73e8;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Management Team */
        .management-title {
            text-align: center;
            margin-bottom: 40px;
            color: #546e7a;
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
        }
        
        .team-member {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(26, 115, 232, 0.1);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(26, 115, 232, 0.15);
        }
        
        .member-img {
            height: 280px;
            width: 100%;
            overflow: hidden;
            background-color: #e1eaff;
        }
        
        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }
        
        .member-info {
            padding: 25px;
        }
        
        .member-info h3 {
            font-size: 1.4rem;
            margin-bottom: 0;
            color: #0a2540;
        }
        
        .member-title {
            color: #1a73e8;
            font-weight: 600;
            margin-bottom: 15px;
            display: inline-block;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.85rem;
            border: 1px solid rgba(26, 115, 232, 0.3);
            margin-top: 8px;
        }
        
        .member-bio {
            color: #546e7a;
            margin-bottom: 20px;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-section-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .highlights-section {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
                margin-bottom: 30px;
            }
            
            .highlight-box {
                flex-direction: column;
                text-align: center;
            }
            
            .highlight-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .leadership-grid {
                grid-template-columns: 1fr;
            }
            
            .leadership-content {
                height: auto;
                flex-direction: column;
            }
            
            .leadership-img {
                width: 100%;
                height: 400px;
            }
            
            .leadership-info {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .about-header {
                padding: 60px 0 40px;
            }
            
            .about-header h1 {
                font-size: 2.5rem;
            }
            
            .highlights-section {
                grid-template-columns: 1fr;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .about-description {
                padding: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .about-header h1 {
                font-size: 2rem;
            }
            
            .about-description h2 {
                font-size: 1.8rem;
            }
            
            .team-section h2 {
                font-size: 2rem;
            }
            
            .leadership-info h3 {
                font-size: 1.5rem;
            }
        }
    
/* === Styles moved from become-partner.php === */
:root {
            --primary-blue: #1a4f8a;
            --secondary-blue: #2c7cc3;
            --accent-blue: #ebf3fa;
            --dark-blue: #0a2d50;
            --white: #ffffff;
            --light-gray: #f5f7fa;
            --text-dark: #333333;
            --whatsapp-green: #25D366;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-blue);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .hero-section {
            color: black;
            padding: 3rem 0;
            text-align: center;
        }
        
        .hero-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .hero-text {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        
        .contact-btn {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .whatsapp-btn {
            background-color: var(--whatsapp-green);
            color: var(--white);
        }
        
        .email-btn {
            background-color: var(--primary-blue);
            color: var(--white);
        }
        
        .phone-btn {
            background-color: var(--secondary-blue);
            color: var(--white);
        }
        
        .btn-icon {
            margin-right: 8px;
        }
        
        .intro-section {
            background-color: var(--accent-blue);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 4rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .intro-section h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
        }
        
        .intro-section p {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .credential-badge {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: var(--white);
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(26, 79, 138, 0.3);
            transition: transform 0.2s ease;
        }
        
        .credential-badge:hover {
            transform: translateY(-2px);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--secondary-blue);
            margin-bottom: 20px;
        }
        
        .service-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-blue);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .benefit-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .requirements-section {
            background-color: var(--accent-blue);
        }
        
        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
        }
        
        .requirements-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .requirements-card h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .requirements-list {
            list-style: none;
        }
        
        .requirements-list li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            font-size: 1rem;
            color: var(--text-dark);
            border-bottom: 1px solid #f1f3f4;
        }
        
        .requirements-list li:last-child {
            border-bottom: none;
        }
        
        .requirements-list li svg {
            color: #27ae60;
            width: 16px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .investment-section {
            background: linear-gradient(135deg, var(--accent-blue), var(--white));
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            margin-bottom: 4rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .investment-section h3 {
            font-size: 2rem;
            margin-bottom: 2.5rem;
            color: var(--primary-blue);
        }
        
        .investment-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .investment-item {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .investment-item h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary-blue);
        }
        
        .investment-item .amount {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-blue);
            margin-bottom: 10px;
        }
        
        .investment-item p {
            font-size: 1rem;
            color: var(--text-dark);
        }
        
        footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 3rem 0;
            text-align: center;
        }
        
        .contact-info {
            margin-top: 2rem;
        }
        
        .contact-method {
            margin-bottom: 10px;
        }
        
        .contact-method strong {
            color: var(--light-gray);
        }
        
        .enrollment-steps {
            max-width: 800px;
            margin: 2rem auto;
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .step {
            display: flex;
            margin-bottom: 25px;
            align-items: center;
        }
        
        .step:last-child {
            margin-bottom: 0;
        }
        
        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 50%;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .step-content h3 {
            color: var(--primary-blue);
            margin-bottom: 5px;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-text {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .service-card,
            .benefit-card,
            .requirements-card {
                padding: 20px;
            }
            
            .requirements-grid {
                grid-template-columns: 1fr;
            }
        }
		/* Header styles */
       .header {
            padding: 80px 0 50px;
            text-align: center;
            background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
            color: white;
        }
        
        .header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

/* === Styles moved from calculators.php === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f8faff;
    color: #333;
    line-height: 1.6;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.calculators-header {
    padding: 80px 0 50px;
    text-align: center;
    background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
    color: white;
}

.calculators-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.calculators-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.calculators-intro {
    padding: 60px 0 30px;
    text-align: center;
}

.calculators-intro p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #546e7a;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 30px 0 80px;
}

.calc-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(26, 115, 232, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.calc-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.2);
}

.calc-box i {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 15px;
    z-index: 1;
}

.calc-box h3 {
    color: #0a2540;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 1;
}

.calc-box::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(56, 189, 248, 0.1) 100%);
    border-radius: 50%;
    top: -75px;
    right: -75px;
}

.calculator-container1 {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 115, 232, 0.15);
    margin-bottom: 60px;
    display: none;
}

.calculator-container1.active {
    display: block;
}

.calculator-container1 h2 {
    font-size: 1.8rem;
    color: #0a2540;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f4ff;
}

.calculator-container1 h2 strong {
    color: #1a73e8;
}

/* Updated Form Elements Styling */
.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    font-weight: 500;
    color: #0a2540;
    margin-bottom: 10px;
    font-size: 1rem;
    position: relative;
}

label.required:after {
    content: '*';
    color: #1a73e8;
    margin-left: 4px;
}

input, 
select, 
textarea,
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e1eaff;
    border-radius: 10px;
    font-size: 1rem;
    color: #546e7a;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

input:focus, 
select:focus, 
textarea:focus,
.form-control:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

input:hover, 
select:hover, 
textarea:hover,
.form-control:hover {
    border-color: #1a73e8;
}

input::placeholder, 
select::placeholder, 
textarea::placeholder,
.form-control::placeholder {
    color: #a0b4c5;
}

/* Input Group for Currency/Percentage Input */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-prepend,
.input-group-append {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: #546e7a;
    font-weight: 500;
    z-index: 1;
    pointer-events: none;
}

.input-group-prepend {
    left: 0;
}

.input-group-append {
    right: 0;
}

.input-group input,
.input-group .form-control {
    padding-left: 40px;  /* For prepend icons or symbols */
}

.input-group.with-append input,
.input-group.with-append .form-control {
    padding-right: 40px;  /* For append icons or symbols */
}

/* Error state for validation */
.form-group.error label {
    color: #e53935;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea,
.form-group.error .form-control {
    border-color: #e53935;
    box-shadow: 0 0 0 1px rgba(229, 57, 53, 0.2);
}

.error-message {
    font-size: 0.85rem;
    color: #e53935;
    margin-top: 5px;
    display: block;
}

/* Helper text */
.helper-text {
    font-size: 0.85rem;
    color: #78909c;
    margin-top: 6px;
    display: block;
}

/* Disabled state */
input:disabled,
select:disabled,
textarea:disabled,
.form-control:disabled {
    background-color: #f5f7fa;
    border-color: #e1e7ee;
    color: #a0b4c5;
    cursor: not-allowed;
}

/* Form row for side-by-side inputs */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}


/* Calculate Button - Enhanced Prominence */
.btn-calculate {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.btn-calculate:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13, 71, 161, 0.5);
}

.btn-calculate:hover:before {
    transform: translateY(0);
}

.btn-calculate:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.4);
}

.btn-calculate i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    color: #1a73e8;
    border: 2px solid #1a73e8;
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(26, 115, 232, 0.1);
    box-shadow: none;
}

.btn-reset {
    background: #f5f7fa;
    color: #546e7a;
    border: 1px solid #e1eaff;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    margin-right: 15px;
}

.btn-reset:hover {
    background: #e1eaff;
    color: #0a2540;
    transform: translateY(-2px);
}

.button-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
}

.results-container1 {
    background: linear-gradient(135deg, #f0f4ff 0%, #e1eaff 100%);
    border-radius: 12px;
    padding: 25px;
    margin-top: 35px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.results-container1 h3 {
    color: #0a2540;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(26, 115, 232, 0.2);
    padding-bottom: 10px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(26, 115, 232, 0.15);
}

.result-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.result-item .label {
    font-weight: 500;
    color: #546e7a;
}

.result-item .value {
    font-weight: 600;
    color: #1a73e8;
}

.result-item.total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid rgba(26, 115, 232, 0.3);
    border-bottom: none;
}

.result-item.total .label,
.result-item.total .value {
    font-size: 1.1rem;
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #e1eaff 100%);
    border-left: 4px solid #1a73e8;
    padding: 18px;
    border-radius: 0 10px 10px 0;
    margin-top: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-box p {
    margin: 0;
    color: #0a2540;
    font-weight: 500;
    line-height: 1.5;
}

.highlight-box.info {
    border-left-color: #1a73e8;
}

.highlight-box.warning {
    border-left-color: #ff9800;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
}

.highlight-box.success {
    border-left-color: #4caf50;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

/* WOW animation classes */
.wow.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .calculator-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .calculators-header {
        padding: 60px 0 40px;
    }
    
    .calculators-header h1 {
        font-size: 2.5rem;
    }
    
    .calculator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    label {
        font-size: 0.95rem;
    }
    
    input, 
    select, 
    textarea,
    .form-control {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .btn-calculate {
        padding: 14px 30px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .button-group {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .btn-reset {
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .calculators-header h1 {
        font-size: 2rem;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-container1 h2 {
        font-size: 1.5rem;
    }
    
    .result-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .result-item.total {
        flex-direction: row;
    }
    
    .btn-calculate {
        width: 100%;
    }
}


/* Moved from services.php */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: #f8faff;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .services-header {
            padding: 80px 0 50px;
            text-align: center;
            background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
            color: white;
        }
        
        .services-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .services-header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .services-intro {
            padding: 60px 0 30px;
            text-align: center;
        }
        
        .services-intro p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #546e7a;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            padding: 30px 0 80px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(26, 115, 232, 0.15);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(26, 115, 232, 0.2);
        }
        
        .service-icon {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f0f4ff 0%, #e1eaff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .service-icon:before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.2) 0%, rgba(56, 189, 248, 0.2) 100%);
            border-radius: 50%;
            top: -150px;
            right: -150px;
        }
        
        .service-icon i {
            font-size: 4rem;
            color: #1a73e8;
            position: relative;
            z-index: 1;
        }
        
        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h2 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #0a2540;
        }
        
        .service-content h2 strong {
            color: #1a73e8;
        }
        
        .service-content p {
            color: #546e7a;
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.7;
            flex-grow: 1;
        }
        
        .service-content .service-highlight {
            background: linear-gradient(135deg, #f0f4ff 0%, #e1eaff 100%);
            border-left: 4px solid #1a73e8;
            padding: 15px;
            border-radius: 0 8px 8px 0;
            margin-top: auto;
        }
        
        .service-content .service-highlight p {
            margin: 0;
            color: #0a2540;
            font-weight: 500;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
            padding: 60px 0;
            text-align: center;
            color: white;
            margin-bottom: 80px;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .cta-btn {
            display: inline-block;
            background: white;
            color: #1a73e8;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .services-header {
                padding: 60px 0 40px;
            }
            
            .services-header h1 {
                font-size: 2.5rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .services-header h1 {
                font-size: 2rem;
            }
            
            .service-content h2 {
                font-size: 1.4rem;
            }
            
            .cta-content h2 {
                font-size: 1.8rem;
            }
            
            .cta-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

/* Moved from contact.php */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: #f8faff;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header {
            padding: 80px 0 50px;
            text-align: center;
            background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
            color: white;
        }
        
        .header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-content {
            padding: 60px 0;
        }
		
		.divider {
        height: 1px;
        background: rgba(26, 115, 232, 0.15);
        margin: 20px 0;
    }

    /* Adjust spacing between sections */
    .contact-card h3:nth-of-type(2) {
        margin-top: 20px;
    }
        
        .contact-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        /* Contact Info Section */
        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(26, 115, 232, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(26, 115, 232, 0.15);
        }
        
        .contact-card h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #0a2540;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-card h3 i {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #1a73e8 0%, #38bdf8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        
        .contact-card p,
        .contact-card a {
            color: #546e7a;
            margin-bottom: 10px;
            line-height: 1.7;
            display: block;
        }
        
        .contact-card a {
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-card a:hover {
            color: #1a73e8;
        }
        
        .contact-card .highlight {
            color: #1a73e8;
            font-weight: 600;
        }
        
        /* Branch Offices Section */
        .branch-offices {
            padding: 40px 0;
        }
        
        .branch-offices h2 {
            font-size: 2.2rem;
            color: #0a2540;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .branches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .branch-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(26, 115, 232, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .branch-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(26, 115, 232, 0.15);
        }
        
        .branch-header {
            background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .branch-header h3 {
            font-size: 1.3rem;
            margin-bottom: 0;
        }
        
        .branch-content {
            padding: 25px;
        }
        
        .branch-content p {
            color: #546e7a;
            margin-bottom: 0;
            line-height: 1.7;
        }
        
        /* Escalation Matrix */
        .escalation-matrix {
            padding: 60px 0;
        }
        
        .escalation-matrix h2 {
            font-size: 2.2rem;
            color: #0a2540;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .matrix-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(26, 115, 232, 0.15);
        }
        
        .matrix-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .matrix-table th {
            background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
            color: white;
            text-align: left;
            padding: 15px 20px;
        }
        
        .matrix-table tr:nth-child(even) {
            background-color: #f0f4ff;
        }
        
        .matrix-table td {
            padding: 15px 20px;
            border-bottom: 1px solid #e1eaff;
            color: #546e7a;
        }
        
        .escalation-note {
            background: #f0f4ff;
            border-left: 4px solid #1a73e8;
            padding: 20px;
            margin-top: 30px;
            border-radius: 8px;
            color: #546e7a;
            line-height: 1.7;
        }
        
        .escalation-note a {
            color: #1a73e8;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .escalation-note a:hover {
            text-decoration: underline;
        }
        
        /* Key Personnel Section */
        .key-personnel {
            padding: 40px 0 80px;
        }
        
        .key-personnel h2 {
            font-size: 2.2rem;
            color: #0a2540;
            text-align: center;
            margin-bottom: 40px;
        }
        
        /* Map Section */
        .map-section {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(26, 115, 232, 0.15);
            margin-bottom: 60px;
            background-color: #e1eaff;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .map-placeholder {
            text-align: center;
            color: #546e7a;
        }
        
        .map-placeholder i {
            font-size: 3rem;
            color: #1a73e8;
            margin-bottom: 15px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                padding: 60px 0 40px;
            }
            
            .header h1 {
                font-size: 2.5rem;
            }
            
            .branch-offices h2,
            .escalation-matrix h2,
            .key-personnel h2 {
                font-size: 1.8rem;
            }
            
            .matrix-table thead {
                display: none;
            }
            
            .matrix-table tr {
                margin-bottom: 15px;
                display: block;
                border-bottom: 2px solid #1a73e8;
            }
            
            .matrix-table td {
                display: block;
                text-align: right;
                padding: 15px;
                position: relative;
                border-bottom: 1px solid #e1eaff;
            }
            
            .matrix-table td:before {
                content: attr(data-label);
                position: absolute;
                left: 15px;
                width: 50%;
                padding-right: 15px;
                font-weight: 600;
                text-align: left;
                color: #0a2540;
            }
        }
        
        @media (max-width: 576px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .contact-card,
            .branch-content {
                padding: 20px;
            }
        }

/* Moved from letest-news.php */
:root {
            --primary-blue: #1a4f8a;
            --secondary-blue: #2c7cc3;
            --accent-blue: #ebf3fa;
            --dark-blue: #0a2d50;
            --white: #ffffff;
            --light-gray: #f5f7fa;
            --text-dark: #333333;
            --text-muted: #666666;
            --border-light: #e1e8ed;
            --success-green: #27ae60;
        }
        * {
            margin: 0; padding: 0; box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 4rem 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-blue);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 3rem;
        }
        /* Header styles */
        .header {
            padding: 80px 0 50px;
            text-align: center;
            background: linear-gradient(135deg, #0a2540 0%, #1a73e8 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 2rem;
        }
        .news-card {
            background-color: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .news-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .news-category {
            background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
            color: var(--white);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            user-select: none;
        }
        .news-date {
            color: var(--text-muted);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            user-select: none;
        }
        .news-date svg {
            stroke-width: 2.5;
            stroke: var(--text-muted);
        }
        .news-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-blue);
            font-weight: 600;
            flex-grow: 1;
        }
        .news-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .news-title a:hover {
            color: var(--secondary-blue);
        }
        .news-description {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-footer {
            margin-top: auto;
            display: flex;
            justify-content: flex-end;
        }
        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--secondary-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 20px;
            border: 2px solid transparent;
            user-select: none;
        }
        .read-more:hover {
            background-color: var(--secondary-blue);
            color: var(--white);
            transform: translateX(5px);
        }
        .read-more svg {
            transition: transform 0.3s ease;
        }
        .read-more:hover svg {
            transform: translateX(3px);
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }
            .header p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .news-card {
                padding: 20px;
            }
            .news-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }