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

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

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

/* Top Header */
.top-header {
    background: #260F54;
    color: #ffffff;
    padding: 12px 0;
    font-size: 13px;
    font-weight: bold;
    border-bottom: 3px solid #7146C4;
}

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

.header-info span {
    margin-right: 25px;
}

.header-tagline {
    font-size: 11px;
    letter-spacing: 1px;
    color: #dfd5ff;
}

/* Navigation & Logo settings */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(61, 27, 125, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 65px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #555555;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(38, 15, 84, 0.96) 0%, rgba(61, 27, 125, 0.9) 100%), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 110px 0;
    text-align: center;
}

.shield-badge {
    background: white;
    color: #3D1B7D;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero h2 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 400;
}

.hero h2 span {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #c9b3ff;
}

.hero h1 {
    font-family: 'Georgia', serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #3D1B7D;
}

.btn-primary:hover {
    background: #f0ebff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebd58;
    transform: translateY(-2px);
}

/* Services Section Strips */
.services {
    padding: 80px 0;
    background: #f5f4f8;
}

.services h2, .target-market h2, .about h2, .contact h2 {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 32px;
    color: #260F54;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666666;
    margin-bottom: 50px;
    font-size: 15px;
}

.services-list-container {
    max-width: 750px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(61, 27, 125, 0.05);
}

.service-strip {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid #eae6f3;
}

.service-strip:last-child {
    border-bottom: none;
}

.service-strip-icon {
    font-size: 22px;
    color: white;
    background: #3D1B7D;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.service-strip h3 {
    font-size: 16px;
    color: #260F54;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Target Market Section ("We work with") */
.target-market {
    padding: 60px 0;
    background: white;
}

.section-divider {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #3D1B7D;
    line-height: 0.1em;
}

.section-divider span {
    background: white;
    padding: 0 20px;
    font-weight: bold;
    color: #3D1B7D;
    letter-spacing: 2px;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}

.market-card {
    padding: 30px 15px;
    background: #fbfaff;
    border: 1px solid #eae6f3;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.market-card:hover {
    border-color: #3D1B7D;
    background: #f7f4ff;
    transform: translateY(-3px);
}

.market-icon {
    font-size: 26px;
    color: #3D1B7D;
    margin-bottom: 15px;
}

.market-card h4 {
    font-size: 14px;
    color: #260F54;
    line-height: 1.4;
}

/* About Section with CAlc.jpeg styling */
.about {
    padding: 80px 0;
    background: #f5f4f8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border-left: 6px solid #3D1B7D;
    box-shadow: 0 8px 25px rgba(61, 27, 125, 0.15);
}

.about-text h3 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    color: #3D1B7D;
    margin-bottom: 5px;
}

.credentials {
    font-size: 12px;
    font-weight: bold;
    color: #7146C4;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    color: #555555;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-box {
    background: #f5f4f8;
    border-radius: 8px;
    padding: 45px;
    border-top: 4px solid #3D1B7D;
    max-width: 850px;
    margin: 0 auto;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid #eae6f3;
    padding-bottom: 35px;
    text-align: center;
}

.contact-card-item h4 {
    font-size: 15px;
    color: #666666;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.highlight-link {
    font-family: 'Georgia', serif;
    font-size: 18px;
    color: #3D1B7D;
    text-decoration: none;
    font-weight: bold;
}

.highlight-link:hover {
    text-decoration: underline;
}

/* Large WhatsApp Action Zone */
.whatsapp-action-zone {
    text-align: center;
}

.whatsapp-action-zone h3 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #260F54;
    margin-bottom: 10px;
}

.whatsapp-action-zone p {
    color: #666666;
    margin-bottom: 25px;
    font-size: 14px;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.25);
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #1ebd58;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37,211,102,0.35);
}

/* Footer */
.footer {
    background: #260F54;
    color: white;
    padding: 40px 0 25px;
    border-top: 4px solid #7146C4;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.footer-logo-container {
    background: white;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
}

.logo-img-footer {
    height: 50px;
    width: auto;
    display: block;
}

.footer-slogan {
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-slogan span {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #c9b3ff;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #bfa3ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header .container, .navbar .container, .footer-top { flex-direction: column; text-align: center; }
    .nav-menu { gap: 15px; margin-top: 15px; }
    .hero h1 { font-size: 30px; }
    .about-content { grid-template-columns: 1fr; }
    .about-img { height: 260px; }
    .btn-whatsapp-large { width: 100%; justify-content: center; }
}