/* assets/css/style.css - Modern responsive styles with provided base colors */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2rem;
    color: black;
}

h3 {
    font-size: 1.5rem;
    color: black;
}

p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.highlight {
    color: #2563eb;
}

/* Header Styles */
.site-header {
    background: #7e3333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
    margin-bottom: 30px;
   /* position: sticky;
    top: 20px; */
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

/* Option 1: Fluid sizing using viewport units */

/* Option 2: Percentage-based with max/min */
.ictlogo {
    width: 100%;
    max-width: 120px;
    min-width: 60px;
    height: auto;
}



/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .ictlogo {
        width: 220px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .ictlogo {
        width: 200px;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .ictlogo {
        width: 100px;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .ictlogo {
        width: 60px;
    }
}

/* Small Mobile (below 576px) */
@media (max-width: 575px) {
    .ictlogo {
        width: 50px;
    }
}

/* Extra Small Mobile (below 400px) */
@media (max-width: 400px) {
    .ictlogo {
        width: 40px;
    }
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
}

.logo i {
    color: #2563eb;
    font-size: 2rem;
}

.logo span {
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2563eb;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2563eb;
}

/* Hero Section */
.hero {
    margin-bottom: 3rem;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image i {
    font-size: 15rem;
    color: #2563eb;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 6px rgba(37,99,235,0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* Features Section */
.features {
    margin-bottom: 3rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.features-grid,
.services-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card,
.service-card,
.value-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover,
.service-card:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card i,
.service-card i,
.value-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
    text-align: left;
}

.service-features li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    font-size: 1rem;
    color: #10b981;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-radius: 10px;
    color: white;
    text-align: center;
    padding: 3rem;
    margin-bottom: 2rem;
}

.cta-container {
    background: transparent;
    box-shadow: none;
    padding: 0;
    color: white;
}

.cta h2 {
    color: white;
}

.cta p {
    color: rgba(255,255,255,0.9);
}

.cta .btn-primary {
    background: white;
    color: #2563eb;
}

/* About Page Styles */
.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image i {
    font-size: 12rem;
    color: #2563eb;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 10px;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
}

.stat-label {
    color: #6b7280;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
}

.contact-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Footer Styles */
.site-footer {
    margin-top: 30px;
    background: #7e3333;
    border-radius: 10px;
}

.footer-container {
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #ffffff;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin: 0.5rem 0;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-contact i {
    width: 25px;
    color: #2563eb;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    color: #2563eb;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f5f5f5, #e5e7eb);
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image i {
        font-size: 8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .features-grid,
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
    }
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.alert i {
    font-size: 1.25rem;
}