/*
Theme Name: DTCC Corporate Theme
Description: A professional corporate theme inspired by DTCC's design
Version: 1.0
Author: Custom Development
*/

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

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

/* Header Styles */


.site-logo {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: #0e5447;
}

.site-logo:hover {
    color: #e5e7eb;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: #0e5447;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #e5e7eb;
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
        color: white;
    }
    
    .hero-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 96px 16px;
    }
    
    @media (min-width: 640px) {
        .hero-container {
            padding: 96px 24px;
        }
    }
    
    @media (min-width: 1024px) {
        .hero-container {
            padding: 128px 32px;
        }
    }
    
    .hero-grid {
        display: grid;
        gap: 48px;
        align-items: center;
    }
    
    @media (min-width: 1024px) {
        .hero-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
        font-weight: bold;
        line-height: 1.1;
        margin-bottom: 24px;
    }
    
    @media (min-width: 1024px) {
        .hero-content h1 {
            font-size: 3.75rem;
        }
    }
    
    .hero-highlight {
        display: block;
        color: #93c5fd;
    }
    
    .hero-description {
        font-size: 1.25rem;
        color: #dbeafe;
        margin-bottom: 32px;
        line-height: 1.625;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    @media (min-width: 640px) {
        .hero-buttons {
            flex-direction: row;
        }
    }
    
    .hero-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 32px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }
    
    .hero-btn-primary {
        background-color: white;
        color: #1e3a8a;
    }
    
    .hero-btn-primary:hover {
        background-color: #f3f4f6;
    }
    
    .hero-btn-outline {
        background: transparent;
        color: white;
        border-color: white;
    }
    
    .hero-btn-outline:hover {
        background-color: white;
        color: #1e3a8a;
    }
    
    .btn-icon {
        margin-left: 8px;
        width: 20px;
        height: 20px;
        fill: currentColor;
    }
    
    .hero-stats {
        position: relative;
    }
    
    .stats-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
        border-radius: 16px;
        padding: 32px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.875rem;
        font-weight: bold;
        color: #93c5fd;
    }
    
    .stat-label {
        font-size: 0.875rem;
        color: #dbeafe;
    }


.cta-button {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #b91c1c;
}





/* Login Form Styles */
.login-form {
    max-width: 400px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.login-form h2 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
}

.login-button {
    width: 100%;
    background: #1e3a8a;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-button:hover {
    background: #1e40af;
}

/* Client Area Styles */
.client-dashboard {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.dashboard-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.dashboard-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.dashboard-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .site-main {
        padding: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.error-message {
    background: #fef2f2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #fecaca;
}

.success-message {
    background: #f0fdf4;
    color: #16a34a;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #bbf7d0;
}



/*Footer Styles */
.custom-footer {
        background-color: #111827;
        color: white;
    }
    
    .footer-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 64px 16px;
    }
    
    .footer-grid {
        display: grid;
        gap: 32px;
        grid-template-columns: 1fr;
    }
    
    @media (min-width: 768px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    
    .company-info .logo {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 16px;
    }
    
    .company-info .description {
        color: #9ca3af;
        margin-bottom: 24px;
        line-height: 1.625;
    }
    
    .social-links {
        display: flex;
        gap: 16px;
    }
    
    .social-links a {
        color: #9ca3af;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .social-links a:hover {
        color: white;
    }
    
    .footer-section h3 {
        font-weight: 600;
        margin-bottom: 16px;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section ul li a {
        color: #9ca3af;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: white;
    }
    
    .footer-bottom {
        border-top: 1px solid #374151;
        margin-top: 48px;
        padding-top: 32px;
    }
    
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    
    @media (min-width: 768px) {
        .footer-bottom-content {
            flex-direction: row;
        }
    }
    
    .copyright {
        color: #9ca3af;
        font-size: 14px;
    }
    
    .footer-links {
        display: flex;
        gap: 24px;
        margin-top: 16px;
    }
    
    @media (min-width: 768px) {
        .footer-links {
            margin-top: 0;
        }
    }
    
    .footer-links a {
        color: #9ca3af;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
        color: white;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

/* Header Styles */
.custom-header {
    background-color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1000;
}

.custom-header .header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .custom-header .header-container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .custom-header .header-container {
        padding: 0 32px;
    }
}

.custom-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    width: 100%;
}

.custom-header .logo {
    flex-shrink: 0;
    margin-right: auto; /* This ensures the logo stays on the left */
}

.custom-header .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #1e3a8a;
    text-decoration: none;
    display: inline-block;
}

.custom-header .desktop-nav {
    display: none;
    gap: 32px;
    flex: 1; /* This allows the nav to take up available space */
    justify-content: center; /* Centers the navigation */
}

@media (min-width: 768px) {
    .custom-header .desktop-nav {
        display: flex;
    }
}

.custom-header .desktop-cta {
    display: none;
    align-items: center;
    gap: 16px;
    flex-shrink: 0; /* Prevents buttons from shrinking */
}

@media (min-width: 768px) {
    .custom-header .desktop-cta {
        display: flex;
    }
}

/* Rest of your custom header styles remain the same... */
.custom-header .nav-item {
    position: relative;
}

.custom-header .nav-button, 
.custom-header .nav-link {
    display: flex;
    align-items: center;
    color: #374151;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.custom-header .nav-button:hover, 
.custom-header .nav-link:hover {
    color: #1e3a8a;
}

.custom-header .chevron-icon {
    margin-left: 4px;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.custom-header .btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.custom-header .btn-outline {
    color: #374151;
    border-color: #d1d5db;
    background: white;
}

.custom-header .btn-outline:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.custom-header .btn-primary {
    color: white;
    background-color: #1e3a8a;
    border-color: #1e3a8a;
}

.custom-header .btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
}

.custom-header .mobile-menu-button {
    display: block;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
    margin-left: auto; /* Pushes mobile button to the right */
}

@media (min-width: 768px) {
    .custom-header .mobile-menu-button {
        display: none;
    }
}

.custom-header .mobile-menu-button:hover {
    color: #1e3a8a;
}

.custom-header .menu-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.custom-header .mobile-menu {
    display: none;
}

.custom-header .mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .custom-header .mobile-menu {
        display: none !important;
    }
}

.custom-header .mobile-menu-content {
    padding: 8px 0 12px 0;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.custom-header .mobile-nav-links {
    padding: 0 8px;
    margin: 8px 0;
}

@media (min-width: 640px) {
    .custom-header .mobile-nav-links {
        padding: 0 12px;
    }
}

.custom-header .mobile-nav-link {
    display: block;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-header .mobile-nav-link:hover {
    color: #1e3a8a;
}

.custom-header .mobile-cta {
    padding-top: 16px;
    padding-bottom: 12px;
    border-top: 1px solid #e5e7eb;
}

.custom-header .mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 12px;
}
    
    .hidden {
        display: none;
    }





/* Service, Hero, Aboout, Card*/

.services-section {
        padding: 96px 0;
        background-color: #f9fafb;
    }
    
    .services-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 16px;
    }
    
    @media (min-width: 640px) {
        .services-container {
            padding: 0 24px;
        }
    }
    
    @media (min-width: 1024px) {
        .services-container {
            padding: 0 32px;
        }
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 64px;
    }
    
    .services-header h2 {
        font-size: 2.25rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 16px;
    }
    
    .services-header p {
        font-size: 1.25rem;
        color: #4b5563;
        max-width: 48rem;
        margin: 0 auto;
    }
    
    .services-grid {
        display: grid;
        gap: 32px;
    }
    
    @media (min-width: 768px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    .service-card {
        background: white;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s ease;
    }
    
    .service-card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
   /* Service Card Content */
   .about-service-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(229, 231, 235, 0.6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06), 
                0 8px 24px rgba(0, 0, 0, 0.04);
    padding: 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Accent gradient bar on top */
.about-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #004b87, #0074c1);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transition: opacity 0.4s ease;
    opacity: 0.8;
}

/* Hover effects */
.about-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12), 
                0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Subtle glowing border on hover */
.about-service-card:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, #0074c1, #00aaff);
}

    .service-header {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        background-color: #dbeafe;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-icon svg {
        width: 24px;
        height: 24px;
        stroke: #1e3a8a;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    
    .service-title {
        font-size: 1.25rem;
        color: #111827;
        font-weight: 600;
        margin: 0;
    }
    
    .service-content {
        padding: 0 24px 24px 24px;
    }
    
    .service-description {
        color: #4b5563;
        line-height: 1.625;
        margin: 0;
        font-size: 0.875rem;
    }


/* About Section */
.about-section {
        padding: 96px 0;
        background-color: white;
    }
    
    .about-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 16px;
    }
    
    @media (min-width: 640px) {
        .about-container {
            padding: 0 24px;
        }
    }
    
    @media (min-width: 1024px) {
        .about-container {
            padding: 0 32px;
        }
    }
    
    .about-grid {
        display: grid;
        gap: 64px;
        align-items: center;
    }
    
    @media (min-width: 1024px) {
        .about-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    .about-content h2 {
        font-size: 2.25rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 24px;
    }
    
    .about-description {
        font-size: 1.125rem;
        color: #4b5563;
        margin-bottom: 32px;
        line-height: 1.625;
    }
    
    .about-features {
        margin-bottom: 32px;
    }
    
    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        background-color: #dbeafe;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .feature-icon svg {
        width: 16px;
        height: 16px;
        stroke: #1e3a8a;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    
    .feature-content h3 {
        font-weight: 600;
        color: #111827;
        margin-bottom: 4px;
        font-size: 16px;
    }
    
    .feature-content p {
        color: #4b5563;
        margin: 0;
        font-size: 14px;
    }
    
    .about-btn {
        display: inline-flex;
        align-items: center;
        padding: 12px 24px;
        background-color: #1e3a8a;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }
    
    .about-btn:hover {
        background-color: #1e40af;
    }
    
    .btn-icon {
        margin-left: 8px;
        width: 16px;
        height: 16px;
        fill: currentColor;
    }
    
    .about-visual {
        position: relative;
    }
    
    .visual-card {
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        border-radius: 16px;
        padding: 32px;
    }
    
    .about-image {
        width: 100%;
        height: 256px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .about-section .stats-row {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.about-section .stat-item {
    text-align: center;
}

.about-section .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

.about-section .stat-label {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Button Component */
.wp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    outline: none;
}

.wp-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.wp-btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* Button Variants */
.wp-btn-default {
    background-color: #1e3a8a;
    color: white;
}

.wp-btn-default:hover {
    background-color: rgba(30, 58, 138, 0.9);
}

.wp-btn-destructive {
    background-color: #dc2626;
    color: white;
}

.wp-btn-destructive:hover {
    background-color: rgba(220, 38, 38, 0.9);
}

.wp-btn-outline {
    border: 1px solid #d1d5db;
    background-color: white;
    color: #374151;
}

.wp-btn-outline:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.wp-btn-secondary {
    background-color: #f3f4f6;
    color: #111827;
}

.wp-btn-secondary:hover {
    background-color: rgba(243, 244, 246, 0.8);
}

.wp-btn-ghost {
    background: transparent;
    color: #374151;
}

.wp-btn-ghost:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.wp-btn-link {
    color: #1e3a8a;
    text-decoration: underline;
    text-underline-offset: 4px;
    background: transparent;
}

.wp-btn-link:hover {
    text-decoration: underline;
}

/* Button Sizes */
.wp-btn-default-size {
    height: 40px;
    padding: 8px 16px;
}

.wp-btn-sm {
    height: 36px;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 13px;
}

.wp-btn-lg {
    height: 44px;
    border-radius: 6px;
    padding: 0 32px;
    font-size: 16px;
}

.wp-btn-icon {
    height: 40px;
    width: 40px;
    padding: 0;
}

/* Card Component */
.wp-card {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background-color: white;
    color: #111827;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.wp-card-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
}

.wp-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.025em;
    margin: 0;
}

.wp-card-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.wp-card-content {
    padding: 24px;
    padding-top: 0;
}

.wp-card-footer {
    display: flex;
    align-items: center;
    padding: 24px;
    padding-top: 0;
}

/* Card Variations */
.wp-card-elevated {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.wp-card-hover {
    transition: box-shadow 0.3s ease;
}


.login-color {
    font-size: 12px;
    font-family: 'Times New Roman', Times, serif;
}


/*Contact Form*/
.contact-section {
        padding: 96px 0;
        background-color: #f9fafb;
    }
    
    .contact-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 16px;
    }
    
    @media (min-width: 640px) {
        .contact-container {
            padding: 0 24px;
        }
    }
    
    @media (min-width: 1024px) {
        .contact-container {
            padding: 0 32px;
        }
    }
    
    .contact-header {
        text-align: center;
        margin-bottom: 64px;
    }
    
    .contact-header h1 {
        font-size: 2.25rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 16px;
    }
    
    .contact-header p {
        font-size: 1.25rem;
        color: #4b5563;
        max-width: 48rem;
        margin: 0 auto;
    }
    
    .contact-methods-grid {
        display: grid;
        gap: 32px;
        margin-bottom: 64px;
    }
    
    @media (min-width: 768px) {
        .contact-methods-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1024px) {
        .contact-methods-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    .contact-method-card {
        background: white;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s ease;
    }
    
    .contact-method-card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .contact-method-header {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }
    
    .contact-method-icon {
        width: 48px;
        height: 48px;
        background-color: #dbeafe;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-method-icon svg {
        width: 24px;
        height: 24px;
        stroke: #1e3a8a;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    
    .contact-method-title {
        font-size: 1.25rem;
        color: #111827;
        font-weight: 600;
        margin: 0;
    }
    
    .contact-method-content {
        padding: 0 24px 24px 24px;
    }
    
    .contact-method-description {
        color: #1e3a8a;
        line-height: 1.625;
        margin: 0 0 12px 0;
        font-size: 0.875rem;
        font-weight: 500;
    }
    
    .contact-method-details {
        color: #4b5563;
        line-height: 1.625;
        margin: 0;
        font-size: 0.875rem;
    }
    
    .contact-form-section {
        background: white;
        border-radius: 12px;
        padding: 48px 32px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .contact-form-header {
        text-align: center;
        margin-bottom: 32px;
    }
    
    .contact-form-header h2 {
        font-size: 1.875rem;
        font-weight: bold;
        color: #111827;
        margin-bottom: 8px;
    }
    
    .contact-form-header p {
        color: #4b5563;
        font-size: 1rem;
    }
    
    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #374151;
        font-weight: 500;
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 6px;
        font-size: 16px;
        transition: all 0.3s ease;
        font-family: inherit;
        background-color: #f9fafb;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #3b82f6;
        background-color: white;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    .submit-button {
        width: 100%;
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        color: white;
        padding: 16px 24px;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 8px;
    }
    
    .submit-button:hover {
        background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    }
    
    .submit-button:active {
        transform: translateY(0);
    }

/* Clearing and Settlement */

.dtcc-clearing-hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #004b87, #0074c1);
  color: white;
  position: relative;
  overflow: hidden;
}

.dtcc-clearing-hero::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.dtcc-clearing-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.dtcc-clearing-hero-text {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}


.dtcc-clearing-services {
  padding: 80px 20px;
  background-color: #f9fbfd;
}

.dtcc-clearing-services-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 600;
  color: #004b87;
  position: relative;
}

.dtcc-clearing-services-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0074c1;
  margin: 16px auto 0;
  border-radius: 2px;
}

.dtcc-clearing-service-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.dtcc-clearing-service-block {
  flex: 1 1 300px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dtcc-clearing-service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.dtcc-clearing-service-heading {
  font-size: 22px;
  margin-bottom: 15px;
  color: #004b87;
  font-weight: 600;
}

.dtcc-clearing-service-text {
  margin-bottom: 15px;
  color: #555;
}

.dtcc-clearing-service-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.dtcc-clearing-service-list li {
  margin: 8px 0;
}

.dtcc-clearing-service-list a {
  text-decoration: none;
  color: #0074c1;
  transition: color 0.3s ease;
}

.dtcc-clearing-service-list a:hover {
  color: #003060;
  text-decoration: underline;
}


.dtcc-clearing-cta {
  text-align: center;
  padding: 80px 20px;
  background: #004b87;
  color: white;
}

.dtcc-clearing-cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #004b87;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dtcc-clearing-cta-button:hover {
  background-color: #003060;
  color: white;
}


@media (max-width: 992px) {
  .dtcc-clearing-hero {
    padding: 80px 15px;
  }
  .dtcc-clearing-hero-title {
    font-size: 36px;
  }
  .dtcc-clearing-hero-text {
    font-size: 18px;
  }

  .dtcc-clearing-services {
    padding: 60px 15px;
  }
  .dtcc-clearing-services-title {
    font-size: 28px;
  }
  .dtcc-clearing-service-block {
    flex: 1 1 45%;
  }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .dtcc-clearing-hero {
    padding: 60px 10px;
  }
  .dtcc-clearing-hero-title {
    font-size: 28px;
  }
  .dtcc-clearing-hero-text {
    font-size: 16px;
  }

  .dtcc-clearing-services {
    padding: 40px 10px;
  }
  .dtcc-clearing-services-title {
    font-size: 24px;
  }
  .dtcc-clearing-service-blocks {
    flex-direction: column;
    gap: 20px;
  }
  .dtcc-clearing-service-block {
    flex: 1 1 100%;
    padding: 20px;
  }

  .dtcc-clearing-cta {
    padding: 50px 15px;
  }
  .dtcc-clearing-cta-button {
    font-size: 16px;
    padding: 12px 24px;
  }
}


