/* General Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333;
    line-height: 1.8; /* Increased line-height for better readability */
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem; /* Standard spacing below all headings */
}

p {
    margin-bottom: 1.5rem; /* Standard spacing below all paragraphs */
}

/* Brand Colors */
:root {
    --primary-blue: #3e9dcd;
    --accent-orange: #ff6600;
    --light-bg: #f4f9fc;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

/* Utility Classes for Spacing */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0; /* Increased top/bottom padding for sections */
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-light { background-color: var(--light-bg); }
.bg-blue { background-color: var(--primary-blue); color: var(--white); }

/* Spacing Utilities - To control gap between text and elements */
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; } /* Use this for space between Text and Grid */
.mb-5 { margin-bottom: 4rem; } 

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.btn-accent {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-orange {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar .logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(35, 43, 47, 0.9), rgba(53, 62, 72, 0.95)), url('../images/1.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0; /* More vertical space */
    text-align: center;
}

.hero-section h1 {
    font-size: 52px;
    margin-bottom: 25px;
}

.hero-section .subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px; /* Space between subtitle and button */
    opacity: 0.9;
}

/* Section Titles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto; /* 60px gap between the header block and the content below */
}

.section-title {
    color: var(--primary-blue);
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title.text-white {
    color: var(--white);
}

.text{
    color: #ffffff;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.intro-text {
    font-size: 16px;
    color: #666;
}

/* Feature List (About Section) */
.content-grid {
    display: flex;
    justify-content: center;
}

.text-block {
    max-width: 900px;
}

.feature-list {
    margin: 30px 0; /* Space above and below the list */
}

.feature-list li {
    list-style: none;
    margin-bottom: 15px; /* Space between list items */
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.feature-list li::before {
    content: '✔';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px; /* Consistent gap between cards */
}

.card {
    background: var(--white);
    padding: 40px 30px; /* Internal padding */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary-blue);
    transition: transform 0.3s ease;
    height: 100%; /* Makes cards equal height */
}

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

.card h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 20px; /* Explicit space between Card Title and Card Text */
}

.card p {
    margin-bottom: 0; /* Remove bottom margin for the last element in card */
    color: #555;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

table th, table td {
    padding: 20px 25px; /* increased padding for breathing room */
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
}

table tr:last-child td {
    border-bottom: none;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px; /* Space between steps and the next list */
}

.step {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.step-num {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1;
}

.step h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.step p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Two Column List */
.columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
}

.columns-2 li {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    font-size: 15px;
}

/* Why Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-item .icon {
    color: var(--accent-orange);
    font-size: 28px;
    margin-right: 20px;
    margin-top: -5px; /* Aligns checkmark with the top of the text */
}

.commitment-box {
    text-align: center;
    background: var(--light-bg);
    padding: 60px;
    border-radius: 15px;
    border-left: 6px solid var(--accent-orange);
}

/* Footer */
.footer-section {
    background: #08121a; /* Darker blue */
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

/* Animation Classes */
.reveal {
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.hero-section h1 { font-size: 36px; }
.columns-2 { grid-template-columns: 1fr; }
.section-padding { padding: 60px 0; }
.cards-grid { gap: 20px; }
.section-header { margin-bottom: 40px; }
}