/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --x: #ffffff;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --card-foreground: #1a1a1a;
    --primary: #030213;
    --primary-foreground: #ffffff;
    --secondary: #f1f5f9;
    --secondary-foreground: #030213;
    --muted: #ececf0;
    --muted-foreground: #717182;
    --border: rgba(0, 0, 0, 0.1);
    --radius: 0.625rem;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-150: #c7ddff;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #111827;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green-500: #10b981;
    --green-600: #059669;
    --red-600: #dc2626;
    --orange-600: #ea580c;
    --purple-600: #9333ea;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6, p{
    margin-bottom: 0 !important;
}
/* Utility Classes */
.hidden {
    display: none;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.shield-icon {
    width: 2rem;
    height: 2rem;
    color: var(--green-600);
}

.icon-blue {
    width: 40px;
    height: 40px;
    color: var(--blue-600);
}

.icon-green {
    width: 40px;
    height: 40px;
    color: var(--green-600);
}

.icon-red {
    width: 40px;
    height: 40px;
    color: var(--red-600);
}

.icon-orange {
    width: 40px;
    height: 40px;
    color: var(--orange-600);
}

.icon-purple {
    width: 40px;
    height: 40px;
    color: var(--purple-600);
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--green-600);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--blue-400);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--blue-600);
    color: white;
}

.btn-primary:hover {
    background-color: var(--blue-700);
}

/* Header */
.header {
    background-color: var(--gray-900);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-image {
    width: 60px;
    height: 60px;
}

.logo-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-400);
    line-height: 1.5;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.desktop-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    color: var(--gray-700);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    color: var(--blue-600);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: white !important;
}

.mobile-nav {
    border-top: 1px solid var(--gray-200);
    padding: 1rem 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease-in-out;
}       

.nav-link:hover {
    color: var(--blue-600);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--blue-150), white, var(--blue-300));
    padding: 50px 0;
}

.hero-container {
    max-width: 80rem;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.hero-text-bottom {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.75;
    padding-top: 0.5rem;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge span {
    font-size: 0.875rem;
    color: var(--gray-600);
}
.hero-image {
    height: 400px;
    text-align: right;
}
.hero-image img {
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 370px;
}

/* CTA Section */
.cta-section {
    background-color: var(--background);
    padding: 40px 0;
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
}

.cta-header {
    text-align: center;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 36px !important;
    margin-bottom: 1.5rem;
    color: var(--blue-900);
    line-height: 1.5;
    font-weight: 600;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    /* margin-bottom: 4rem; */
}

.cta-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow 0.3s ease;
    min-height: 448px;
}

.cta-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 20px 15px;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.card-image {
    margin-bottom: 10px;
}

.card-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 0.75rem;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}

.card-description {
    color: var(--gray-600);
    line-height: 21px;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--blue-150), white, var(--blue-300));
    padding: 2.5rem 0;
}

.features-container {
    max-width: 80rem;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 30px;
}

.features-title {
    font-size: 36px !important;
    margin-bottom: 1.5rem;
    color: var(--blue-900);
    line-height: 1.5;
    font-weight: 600;
}

.features-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 80rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border: 3px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow 0.3s ease;
}
.feature-card2 {
    height: 248px;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-content {
    padding: 15px;
    text-align: center;
}

.feature-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.feature-description {
    color: var(--gray-600);
    line-height: 22px;
    font-size: 14px;
}

.features-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.features-bottom-title {
    font-size: 36px;
    margin-bottom: 1.5rem;
    color: var(--blue-900);
    line-height: 1.5;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.features-item-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.features-item-content p {
    color: var(--gray-600);
}

.features-img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: white;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    width: 3.75rem;
    height: 3.75rem;
}

.footer-logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-400);
    line-height: 1.5;
}

.footer-logo-subtitle {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.75;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-link:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item span {
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 10px;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-legal-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-text {
        font-size: 16px;
    }
    .hero-text-bottom {
        font-size: 16px;
    }   
    .cta-card {
    min-height: 469px;
    }
    .features-img {
     height: 320px;
    }
}
@media (max-width: 1200px) {
    .hero-image img {
        height: 380px;
    }
    .cta-card {
        min-height: 473px;
    }
    .card-description {
        font-size: 14px;
    }
}
@media (max-width: 992px) {
    .hero-image img {
        height: 380px;
        width: 100%;
        margin-top: 20px;
    }
    .feature-card3{
        height: auto;
    }
}
@media (max-width: 768px) {
    .feature-description {
        display: none;
    }
    .feature-card {
        height: 131px;
    }   
    .feature-title {
        font-size: 15px;
    }
    .features-subtitle {
        font-size: 16px;
    }
    .features-title, .cta-title, .features-bottom-title {
        font-size: 26px !important;
    }
    .cta-card {
        min-height: 373px;
    }
    .cta-card2 {
        min-height: auto;
        padding-bottom: 20px;
    }
    .card-content {
       padding: 0px 5px 10px;
        text-align: center;
    }
    .card-img {
        height: 190px;
    }
}
@media (max-width: 576px) {
    .features-title, .cta-title, .features-bottom-title {
        font-size: 24px !important;
    }
    .shield-icon {
        width: 20px;
        height: 20px;
    }
    .cta-card {
        min-height: 323px;
    }
    .features-subtitle {
        font-size: 14px;
    }
    .feature-title {
        font-size: 13px;
    }
    .feature-card {
        height: auto;
    }
    .features-item-content p {
        font-size: 14px;
    }
    .footer-description {
        font-size: 14px;
    }
}
@media (max-width: 370px) {
    .feature-card {
        height: 122px;
    }
}
@media (min-width: 768px) {
    .desktop-actions {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-legal {
        justify-content: flex-end;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .features-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-title {
        font-size: 3.125rem;
    }
    
    .features-title {
        font-size: 3.125rem;
    }
}

/* Additional responsive adjustments */
@media (max-width: 640px) {

    
    .badge {
        margin-bottom: 0.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
}