/* ================================
   Base Styles
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   Button Styles (Blinking + Hover)
================================= */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, rgb(206, 231, 93), rgb(163, 108, 4));
    color: black;
    font-weight: bold;
    text-decoration: none;
    font-size: large;
    border-radius: 8px;
    animation: blinkMove 0.8s infinite alternate;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
    margin-top: 5px;
}

@keyframes blinkMove {
    0% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.3; transform: translateX(1px); }
    100% { opacity: 1; transform: translateX(-1px); }
}

.btn:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

/* ================================
   Header Styles
================================= */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #13498f;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a73e8;
}

.nav-menu i {
    color: #13498f;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================
   Hero Section
================================= */
.hero {
    background: linear-gradient(135deg, #133766 0%, #7f9bf0 100%);
    color: white;
    padding: 100px 20px 50px; /* extra top padding for fixed header */
    /* background-color: #f5f5f5; */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-content .text {
    flex: 1 1 500px;
}

.hero-content .video {
    flex: 1 1 500px;
}

.hero-content .video video {
    margin-top: 20px;
    width: 100%;
    border-radius: 15px;
    max-height: 950px;
    object-fit: cover;
}
.text h1{
    font-size: 60px;  
}

.text p{
    font-size: 20px; 
    margin-top: 20px;
    margin-bottom: 20px;
}

.text {
    margin-bottom: 350px;
}

/* ================================
   Features Section
================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #13498f;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #13498f;
}

/* ================================
   Services Section
================================= */
.services {
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: #13498f;
    margin-bottom: 20px;
    text-align: center;
}

.service-card h3 {
    color: #13498f;
    margin-bottom: 15px;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: #13498f;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ================================
   CTA Section
================================= */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #13498f 0%, #6c8ef5 100%);
    color: white;
    padding: 50px 20px;
}

.cta .section-title {
    color: white;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* ================================
   Footer
================================= */
footer {
    background-color: #0d2b4b;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #13498f;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* ================================
   Responsive Styles
================================= */
html { scroll-behavior: smooth; }

@media (max-width: 992px) {
    .hero-content .text,
    .hero-content .video {
        flex: 1 1 100%;
    }

    .hero-content .video {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 80px);
        padding: 40px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
