/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header-top {
    background-color: #0a2463;
    color: white;
    padding: 5px 0;
    font-size: 12px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    align-items: center;
}

.header-top-left span {
    margin-right: 20px;
}

.header-top-right {
    display: flex;
    align-items: center;
}

.header-top-right a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

.header-main {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-size: 20px;
    font-weight: bold;
    color: #0a2463;
}

.logo-sub {
    font-size: 10px;
    font-weight: normal;
    color: #0a2463;
    letter-spacing: 1px;
    white-space: nowrap;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

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

.nav-buttons {
    display: flex;
    align-items: center;
}

.btn {
    padding: 12px 35px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 180px;
    white-space: nowrap;
}

.btn-primary {
    background-color: #ffb703;
    color: #0a2463;
    margin-left: 10px;
}

.btn-secondary {
    background-color: white;
    color: #0a2463;
    border: 1px solid #0a2463;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background-color: #0a2463;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    margin-bottom: 40px;
}

.hero-feature {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.hero-feature i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffb703;
}

.hero-buttons {
    display: flex;
}

.hero-buttons .btn {
    margin-right: 15px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

/* Trusted By Section */
.trusted-by {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.trusted-by .container {
    text-align: center;
}

.trusted-by h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.trusted-logo {
    margin: 0 30px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.trusted-logo:hover {
    opacity: 1;
}

.trusted-logo img {
    height: 40px;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services .container {
    text-align: center;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #0a2463;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid #0a2463;
}

.service-icon img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0a2463;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-card a {
    color: #0a2463;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.service-card a i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.service-card a:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats {
    background-color: #0a2463;
    color: white;
    padding: 60px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffb703;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #0a2463;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffb703;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffb703;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Service Pages */
.service-page {
    padding: 60px 0;
}

.service-page .container {
    text-align: left;
}

.service-page h1 {
    font-size: 36px;
    font-weight: bold;
    color: #0a2463;
    margin-bottom: 30px;
}

.service-page h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0a2463;
    margin: 40px 0 20px;
}

.service-page p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-page ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-page li {
    margin-bottom: 10px;
}

.service-benefits {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.service-benefits h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0a2463;
    margin-bottom: 20px;
}

/* About Page */
.about-page {
    padding: 60px 0;
}

.about-page .container {
    text-align: left;
}

.about-page h1 {
    font-size: 36px;
    font-weight: bold;
    color: #0a2463;
    margin-bottom: 30px;
}

.about-page h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0a2463;
    margin: 40px 0 20px;
}

.about-page p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.about-feature {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.about-feature i {
    font-size: 48px;
    color: #0a2463;
    margin-bottom: 20px;
}

.about-feature h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0a2463;
    margin-bottom: 15px;
}

/* Contact Page */
.contact-page {
    padding: 60px 0;
}

.contact-page .container {
    text-align: left;
}

.contact-page h1 {
    font-size: 36px;
    font-weight: bold;
    color: #0a2463;
    margin-bottom: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0a2463;
    margin-bottom: 20px;
}

.contact-item p {
    margin-bottom: 15px;
}

.contact-item i {
    color: #ffb703;
    margin-right: 10px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0a2463;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        padding: 10px;
    }
    
    .header-top-left,
    .header-top-right {
        margin-bottom: 10px;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .trusted-logos {
        flex-direction: column;
    }
    
    .trusted-logo {
        margin: 15px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-feature {
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .stats .container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #0a2463;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 1000;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 50px;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    text-decoration: none;
    color: #0a2463;
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Verify Section */
.verify-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.verify-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.verify-container {
    max-width: 600px;
    margin: 0 auto;
}

.verify-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.verify-form .form-group {
    margin-bottom: 25px;
}

.verify-form label {
    display: block;
    font-weight: 600;
    color: #0a2463;
    margin-bottom: 8px;
}

.verify-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.verify-form input:focus {
    outline: none;
    border-color: #0a2463;
}

.verify-form .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.certificate-result {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s ease-out;
}

.result-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0a2463;
}

.result-header h3 {
    color: #0a2463;
    font-size: 24px;
    margin-bottom: 15px;
}

.result-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.result-status.active {
    background-color: #d4edda;
    color: #155724;
}

.result-status i {
    font-size: 20px;
}

.certificate-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.detail-label {
    font-weight: 600;
    color: #0a2463;
    font-size: 14px;
    margin-bottom: 5px;
}

.detail-value {
    color: #333;
    font-size: 16px;
}

.active-status {
    color: #28a745;
    font-weight: 600;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    color: #721c24;
    animation: fadeIn 0.5s ease-out;
}

.error-message i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

