/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Top Header */
.top-header {
    background: linear-gradient(135deg, #1f70c1 0%, #023368 100%);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.top-header-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    padding-right: 20px;
}

.top-header-left {
    flex: 1;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.talent-network-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.talent-network-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.top-header .social-icons {
    display: flex;
    gap: 5px;
}

.top-header .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.top-header .social-icon.facebook {
    background: rgba(24, 119, 242, 0.8);
    color: white;
}

.top-header .social-icon.twitter {
    background: rgba(29, 161, 242, 0.8);
    color: white;
}

.top-header .social-icon.linkedin {
    background: rgba(0, 119, 181, 0.8);
    color: white;
}

.top-header .social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.top-header .social-icon i {
    font-size: 1rem;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    overflow: visible;
}

.logo-img {
    height: 250px;
    width: auto;
    margin-top: -40px;
    margin-bottom: -40px;
    margin-left: -20px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white;
    background-color: #1f70c1;
}

.nav-link.active {
    background-color: #1f70c1;
    color: white;
}

/* Hero Section */
.hero {
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 200px;
    color: white !important;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero .hero-title {
    color: white !important;
}

.hero .hero-subtitle {
    color: white !important;
}

.hero .hero-content .hero-title {
    color: white !important;
}

.hero .hero-content .hero-subtitle {
    color: white !important;
}

.hero .hero-content h1 {
    color: white !important;
}

.hero .hero-content p {
    color: white !important;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-button {
    background-color: #1f70c1;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a5fa3;
}

/* Practice Groups Section - Cool Redesign */
.practice-groups {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.practice-groups::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.practice-groups .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1f70c1;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.practice-groups .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1f70c1, #023368);
    border-radius: 2px;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.practice-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(31, 112, 193, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f70c1, #023368);
}

.practice-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(31, 112, 193, 0.2);
}

.card-header {
    background: linear-gradient(135deg, #1f70c1 0%, #023368 100%);
    padding: 35px 35px 30px;
    text-align: center;
    position: relative;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2.2rem;
    color: #FFF700;
    transition: all 0.3s ease;
}

.practice-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.practice-card:hover .card-icon i {
    transform: scale(1.1);
}

.card-header h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 35px 35px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.roles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roles-list li {
    color: #495057;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.roles-list li:last-child {
    border-bottom: none;
}

.roles-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1f70c1;
    font-size: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.roles-list li:hover {
    color: #1f70c1;
    padding-left: 25px;
}

.roles-list li:hover::before {
    transform: translateY(-50%) translateX(3px);
    color: #023368;
}

/* Practice Groups Responsive Design */
@media (max-width: 1200px) {
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .practice-groups {
        padding: 60px 0;
    }
    
    .practice-groups .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .practice-card {
        min-height: 350px;
    }
    
    .card-header {
        padding: 25px 20px 20px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .roles-list li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}


/* Why Darmor Partners Section */
.why-darmor {
    background-color: white;
    padding: 80px 0;
}

.why-darmor .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1f70c1;
    margin-bottom: 60px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: #1f2937;
    margin: 0 auto 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 40px;
    margin-top: 60px;
}

.features-grid .feature-block:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
    max-width: 300px;
}

.features-grid .feature-block:nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: center;
    max-width: 300px;
}

.feature-block {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-icon i {
    font-size: 24px;
    color: #1f70c1;
    background: #e6f2ff;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #b3d9ff;
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f70c1;
    margin-bottom: 15px;
}

.feature-block p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8fafc;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-quote {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.quote-marks {
    font-size: 60px;
    color: #e5e7eb;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
    text-align: center;
}

.quote-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f70c1;
    margin-bottom: 15px;
    text-align: left;
}

.stars {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #fbbf24;
    font-size: 18px;
}

.quote-content p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.testimonial-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-block {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-block h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f70c1;
    margin-bottom: 15px;
}

.testimonial-block p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.attribution {
    font-weight: 600;
    color: #1f70c1;
    font-size: 14px;
    margin-top: auto;
}

/* Footer */
.footer {
    background-color: #1f70c1;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 140px;
    width: auto;
    display: block;
    max-width: 100%;
    filter: brightness(0) invert(1);
    margin-top: -40px;
    margin-bottom: -40px;
}

.footer-column p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1f70c1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #1f70c1;
}

.mailing-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mailing-form input {
    background-color: #374151;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
}

.mailing-form input::placeholder {
    color: #9ca3af;
}

.mailing-form button {
    background-color: rgba(55, 65, 81, 0.4);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mailing-form button:hover {
    background-color: rgba(55, 65, 81, 0.4);
}

.contact-info p {
    color: #d1d5db;
    margin-bottom: 8px;
    font-size: 14px;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1f70c1 0%, #023368 100%);
    color: white;
    padding: 0;
    text-align: center;
    margin-top: 88px;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Section - Enhanced */
.about-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(31, 112, 193, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.about-text:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(31, 112, 193, 0.2);
}

.about-text h2 {
    color: #1f70c1;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1f70c1, #023368);
    border-radius: 2px;
}

.about-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.about-text:hover p {
    color: #374151;
}

.about-text ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.about-text ul li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
    list-style: none;
    padding-left: 25px;
    position: relative;
}

.about-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 12px;
    height: 12px;
    background-image: url('images/Darmor-Partners-B7.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Enhanced Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(31, 112, 193, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1f70c1, #023368);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(31, 112, 193, 0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f70c1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1f70c1, #023368);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #1f70c1;
}

/* Enhanced Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="0.5" fill="%23dee2e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.services-section h2 {
    text-align: center;
    color: #1f70c1;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1f70c1, #023368);
    border-radius: 2px;
}

.services-intro {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid rgba(31, 112, 193, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f70c1, #023368);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(31, 112, 193, 0.2);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f70c1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #023368;
    transform: translateX(5px);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #4b5563;
}

/* Enhanced Recruitment Process */
.recruitment-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.recruitment-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.recruitment-process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.recruitment-process h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1f70c1, #023368);
    border-radius: 2px;
}

.process-intro {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #1f70c1;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

.recruitment-process {
    padding: 80px 0;
    background: #f8fafc;
}

.recruitment-process h2 {
    text-align: center;
    color: #1f70c1;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-intro {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1f70c1 0%, #023368 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(31, 112, 193, 0.3);
    z-index: 0;
}

.process-step {
    position: relative;
    margin-bottom: 80px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1f70c1, #023368);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(31, 112, 193, 0.5);
    border: 4px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 20px rgba(31, 112, 193, 0.5);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        box-shadow: 0 0 30px rgba(31, 112, 193, 0.8);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 20px rgba(31, 112, 193, 0.5);
    }
}

.step-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(31, 112, 193, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    z-index: 2;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f70c1, #023368);
}

.step-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(31, 112, 193, 0.2);
}

.process-step:nth-child(even) .step-content {
    flex-direction: row-reverse;
}

.step-image {
    flex-shrink: 0;
    position: relative;
}

.step-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.4s ease;
    border: 4px solid #1f70c1;
    box-shadow: 0 10px 25px rgba(31, 112, 193, 0.3);
}

.step-content:hover .step-img {
    transform: scale(1.1) rotate(5deg);
    border-color: #023368;
    box-shadow: 0 15px 35px rgba(31, 112, 193, 0.4);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1f70c1, #023368);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(31, 112, 193, 0.4);
}

.step-text {
    flex: 1;
}

.step-text h3 {
    color: #1f70c1;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-content:hover .step-text h3 {
    color: #023368;
    transform: translateX(5px);
}

.step-text p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    color: #1f70c1;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.team-section {
    padding: 40px 0;
    background-color: #f8fafc;
}

.team-section h2 {
    text-align: center;
    color: #1f70c1;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 80px;
    height: 80px;
    background: #1f70c1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.team-member h3 {
    color: #1f70c1;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-member p {
    color: #6b7280;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f70c1 0%, #023368 100%);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #1f70c1;
}

/* Practice Groups Page Styles */

.practice-groups-section {
    padding: 80px 0;
    background: white;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.practice-card {
    background: #023368;
    padding: 40px 30px;
    text-align: center;
    border: none;
    box-shadow: none;
    border-radius: 12px;
}

.practice-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #FFF700;
    font-size: 2rem;
}

.practice-icon i {
    color: #FFF700 !important;
    font-size: 2rem !important;
}

.practice-card .practice-icon i {
    color: #FFF700 !important;
    font-size: 2rem !important;
}

/* Aggressive override for Practice Groups page icons */
.practice-groups-section .practice-card .practice-icon i.fas.fa-calculator,
.practice-groups-section .practice-card .practice-icon i.fas.fa-briefcase,
.practice-groups-section .practice-card .practice-icon i.fas.fa-chart-line,
.practice-groups-section .practice-card .practice-icon i.fas.fa-database {
    color: #FFF700 !important;
    font-size: 2rem !important;
}

/* General override for all practice icon Font Awesome icons */
.practice-groups-section .practice-icon i[class*="fa-"] {
    color: #FFF700 !important;
    font-size: 2rem !important;
}

/* Additional specificity */
.practice-groups-section .practice-card .practice-icon i {
    color: #FFF700 !important;
    font-size: 2rem !important;
}

.practice-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.roles-text {
    text-align: left;
    margin-bottom: 30px;
}

.roles-text p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.learn-more-btn {
    background: white;
    color: #023368;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.learn-more-btn:hover {
    background: #f0f0f0;
}

/* Job Seekers & Employers Section */
.job-seekers-employers {
    padding: 80px 0;
    background: white;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.column {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 400px;
}

.column h2 {
    font-size: 2.5rem;
    color: #023368;
    margin-bottom: 15px;
    font-weight: 700;
}

.gradient-line {
    height: 3px;
    background: linear-gradient(90deg, #10b981, #8b5cf6);
    margin: 0 auto 20px;
    width: 200px;
}

.column p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 300px;
    margin-top: auto;
}

.main-btn {
    background: #023368;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 50px;
    white-space: nowrap;
    min-height: 50px;
}

.main-btn:hover {
    background: #1f70c1;
}

.arrow-btn {
    background: #023368;
    color: white;
    border: none;
    padding: 0;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1rem;
    flex-shrink: 0;
    min-height: 50px;
}

.arrow-btn:hover {
    background: #1f70c1;
}

.vertical-separator {
    width: 4px;
    height: 200px;
    background: #023368;
    margin: 0 20px;
}

/* Industry News Page */
.news-hero {
    background: linear-gradient(135deg, #1f70c1 0%, #023368 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.news-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.news-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Industry News Page Styles */

/* Modern Hero Section */
.modern-news-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1f70c1 0%, #023368 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?w=1920&h=1080&fit=crop') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 112, 193, 0.8) 0%, rgba(2, 51, 104, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.modern-news-hero .hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.modern-news-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFF700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Article Section */
.featured-article {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #1f70c1, #023368);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-text .article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.featured-text .category {
    background: linear-gradient(135deg, #1f70c1, #023368);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-text .date {
    color: #6b7280;
    font-size: 0.9rem;
}

.featured-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-text p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.featured-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.read-full-btn {
    background: linear-gradient(135deg, #1f70c1, #023368);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.read-full-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 112, 193, 0.3);
}

.article-stats {
    display: flex;
    gap: 20px;
    color: #6b7280;
    font-size: 0.9rem;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* News Categories Section */
.news-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f70c1;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.category-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(31, 112, 193, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f70c1, #023368);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(31, 112, 193, 0.2);
}

.category-header {
    margin-bottom: 30px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1f70c1, #023368);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.category-header p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.category-articles {
    margin-bottom: 30px;
}

.mini-article {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.mini-article:last-child {
    border-bottom: none;
}

.mini-article:hover {
    background: rgba(31, 112, 193, 0.05);
    padding-left: 10px;
    border-radius: 10px;
}

.mini-image {
    flex-shrink: 0;
    width: 60px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    line-height: 1.3;
}

.mini-date {
    font-size: 0.8rem;
    color: #6b7280;
}

.category-link {
    color: #1f70c1;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #023368;
    transform: translateX(5px);
}

/* Modern Newsletter Section */
.modern-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f70c1 0%, #023368 100%);
    position: relative;
    overflow: hidden;
}

.modern-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    outline: none;
}

.form-group button {
    background: linear-gradient(135deg, #FFF700, #ffeb3b);
    color: #1f70c1;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 247, 0, 0.3);
}

.form-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

/* Coming Soon Page Styles */
.coming-soon-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1f70c1 0%, #023368 100%);
}

.coming-soon-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&h=1080&fit=crop') center/cover;
    z-index: 1;
}

.coming-soon-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 112, 193, 0.8) 0%, rgba(2, 51, 104, 0.9) 100%);
    z-index: 2;
}

.coming-soon-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px 20px;
    margin-top: 100px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.coming-soon-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.coming-soon-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Animated Elements */
.animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Email Signup */
.email-signup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.email-signup h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.email-signup p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.signup-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.signup-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    outline: none;
}

.signup-form button {
    background: linear-gradient(135deg, #FFF700, #ffeb3b);
    color: #1f70c1;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.signup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 247, 0, 0.3);
}

/* Features Preview */
.features-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23dee2e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.features-preview h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1f70c1;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.features-preview .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(31, 112, 193, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f70c1, #023368);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(31, 112, 193, 0.2);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1f70c1, #023368);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-hero .hero-title {
        font-size: 3rem;
    }
    
    .coming-soon-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .signup-form .form-group {
        flex-direction: column;
    }
    
    .features-preview h2 {
        font-size: 2.5rem;
    }
    
    .features-preview .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #1f70c1 0%, #023368 100%);
    color: white;
    text-align: center;
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-info {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1f70c1, #023368);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.contact-card h3 {
    color: #1f70c1;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Cool Contact Section */
.cool-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.cool-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.cool-contact-section .container {
    position: relative;
    z-index: 1;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card.cool-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card.cool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f70c1, #023368);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card.cool-card:hover::before {
    transform: scaleX(1);
}

.contact-card.cool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1f70c1, #023368);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.contact-card.cool-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card.cool-card h3 {
    color: #1f70c1;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card.cool-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1f70c1, #023368);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 112, 193, 0.3);
    color: white;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(31, 112, 193, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-header h2 {
    color: #1f70c1;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper {
    position: relative;
    z-index: 1;
}

/* Cool Form Styles */
.cool-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    position: relative;
}

.input-wrapper,
.textarea-wrapper,
.select-wrapper {
    position: relative;
}

.input-wrapper input,
.textarea-wrapper textarea,
.select-wrapper select {
    width: 100%;
    padding: 20px 0 10px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    background: transparent;
    font-size: 1rem;
    color: #374151;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-wrapper input:focus,
.textarea-wrapper textarea:focus,
.select-wrapper select:focus {
    outline: none;
    border-bottom-color: #1f70c1;
}

.input-wrapper label,
.textarea-wrapper label {
    position: absolute;
    top: 20px;
    left: 0;
    color: #9ca3af;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.textarea-wrapper textarea:focus + label,
.textarea-wrapper textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.85rem;
    color: #1f70c1;
    font-weight: 600;
}

.input-line,
.textarea-line,
.select-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1f70c1, #023368);
    transition: width 0.3s ease;
}

.input-wrapper input:focus ~ .input-line,
.textarea-wrapper textarea:focus ~ .textarea-line,
.select-wrapper select:focus ~ .select-line {
    width: 100%;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.select-wrapper select {
    cursor: pointer;
    padding-right: 30px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

/* File Upload */
.file-upload-wrapper {
    text-align: center;
    padding: 40px;
    border: 2px dashed #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: #1f70c1;
    background: rgba(31, 112, 193, 0.05);
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: #6b7280;
    font-weight: 600;
}

.file-upload-label i {
    font-size: 2rem;
    color: #1f70c1;
}

.file-info {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 10px;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(135deg, #1f70c1, #023368);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px auto 0;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(31, 112, 193, 0.4);
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

/* Social Connect */
.social-connect {
    text-align: center;
}

.social-connect h3 {
    color: #1f70c1;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.social-link i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-link.linkedin i {
    background: #0077b5;
}

.social-link.twitter i {
    background: #1da1f2;
}

.social-link.facebook i {
    background: #1877f2;
}

.social-link span {
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.form-container h2 {
    text-align: center;
    color: #1f70c1;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.form-container .mailing-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-container .mailing-form input,
.form-container .mailing-form select,
.form-container .mailing-form textarea {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-container .mailing-form input:focus,
.form-container .mailing-form select:focus,
.form-container .mailing-form textarea:focus {
    outline: none;
    border-color: #1f70c1;
    box-shadow: 0 0 0 3px rgba(31, 112, 193, 0.1);
}

.form-container .mailing-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-container .mailing-form button {
    background: linear-gradient(135deg, #1f70c1, #023368);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.form-container .mailing-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 112, 193, 0.3);
}

.news-sections {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.news-column {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.column-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1f70c1;
    flex-shrink: 0;
}

.column-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f70c1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.column-header h2 i {
    font-size: 1.3rem;
}

.column-header p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.column-articles {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.article-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #1f70c1;
}

.article-image {
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.category {
    background: #1f70c1;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.8rem;
}

.date {
    color: #666;
}

.article-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    flex-shrink: 0;
}

.article-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
    flex: 1;
}

.read-more {
    color: #1f70c1;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.read-more:hover {
    color: #023368;
}

.loading-message, .error-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

.loading-message {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.newsletter-section {
    background: #1f70c1;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #023368;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #1a5a8a;
}

/* Practice Group Pages */
.practice-hero {
    background: linear-gradient(135deg, #1f70c1 0%, #023368 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.practice-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.practice-content {
    padding: 80px 0;
    background: white;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-text {
    margin-bottom: 40px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.role-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.role-icon {
    width: 20px;
    height: 20px;
    background: #1f70c1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.role-item span {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.job-seeker-cta {
    background: #1f70c1;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
    position: sticky;
    top: 120px;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #333;
}

.job-seeker-cta h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.job-seeker-cta p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.job-seeker-cta .cta-button {
    background: white;
    color: #1f70c1;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.job-seeker-cta .cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .hero {
        height: 300px !important;
        top: 100px !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-block {
        margin: 0;
        padding: 20px;
    }
    
    .feature-block h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .feature-block p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-blocks {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-quote {
        padding: 40px 20px;
    }
    
    .quote-marks {
        font-size: 80px;
    }
    
    /* Top header mobile fixes */
    .top-header-content {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .talent-network-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .contact-form-container {
        padding: 40px 30px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .practice-groups,
    .why-darmor,
    .testimonials {
        padding: 60px 0;
    }
    
    .practice-card {
        padding: 30px 20px;
    }
    
    .testimonial-block {
        padding: 30px 20px;
    }
    
    /* Feature blocks mobile fixes */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-block {
        margin: 0;
        padding: 15px;
        text-align: center;
    }
    
    .feature-block h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .feature-block p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Top header mobile fixes */
    .top-header {
        padding: 5px 0;
    }
    
    .top-header-content {
        flex-direction: column;
        gap: 8px;
        padding: 8px 10px;
    }
    
    .talent-network-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 25px;
        height: 25px;
    }

    /* About page responsive */
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Practice Groups page responsive */
    .practice-hero h1 {
        font-size: 2.5rem;
    }
    
    .practice-hero p {
        font-size: 1rem;
    }
    
    .practice-intro h2 {
        font-size: 2rem;
    }
    
    .why-practice-groups h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vertical-separator {
        display: none;
    }
    
    .column h2 {
        font-size: 2rem;
    }
    
    .gradient-line {
        width: 150px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    
    .main-btn {
        min-width: auto;
        width: 100%;
        border-radius: 6px;
        margin-bottom: 10px;
    }
    
    .arrow-btn {
        width: 100%;
        border-radius: 6px;
    }

    .cta-button.secondary {
        width: 200px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .process-timeline::before {
        left: 30px;
    }
    
    .process-step::before {
        left: 30px;
    }
    
    .step-content {
        flex-direction: column !important;
        gap: 30px;
        margin-left: 60px;
        padding: 30px 20px;
    }
    
    .step-image {
        align-self: center;
    }
    
    .step-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .step-text p {
        text-align: center;
    }

    /* Practice Group Pages Responsive */
    .practice-hero h1 {
        font-size: 2.5rem;
    }

    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .job-seeker-cta {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .roles-grid {
        grid-template-columns: 1fr;
    }

    .practice-hero h1 {
        font-size: 2rem;
    }

    /* Industry News Page Responsive */
    .news-hero h1 {
        font-size: 2.5rem;
    }

    .news-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    /* Modern Industry News Responsive */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-text h2 {
        font-size: 1.8rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-group {
        flex-direction: column;
    }

    .news-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* FINAL OVERRIDE - Must be at the end of CSS file */
body .practice-groups-section .practice-card .practice-icon i {
    color: #FFF700 !important;
    font-size: 2rem !important;
}

body .practice-groups-section .practice-icon i[class*="fa-"] {
    color: #FFF700 !important;
    font-size: 2rem !important;
}

/* Comprehensive Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Top Header Mobile */
    .top-header {
        padding: 10px 0;
    }
    
    .top-header-content {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .top-header-right {
        justify-content: center;
        gap: 20px;
    }
    
    .talent-network-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    /* Navigation Mobile */
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    /* Hero Section Mobile */
    .hero {
        margin-top: 120px;
        height: 70vh;
    }
    
    .hero-content {
        margin-top: 50px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    /* Practice Groups Mobile */
    .practice-groups {
        padding: 60px 0;
    }
    
    .practice-groups .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .practice-card {
        padding: 30px 20px;
    }
    
    .card-header {
        padding: 25px 25px 20px;
    }
    
    .card-content {
        padding: 25px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .practice-card h3 {
        font-size: 1.3rem;
    }
    
    .practice-card p {
        font-size: 0.9rem;
    }
    
    /* Why Darmor Partners Mobile */
    .why-darmor {
        padding: 60px 0;
    }
    
    .why-darmor .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-block {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-block h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .feature-block p {
        font-size: 0.9rem;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-card h3 {
        font-size: 1.3rem;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-column ul {
        gap: 10px;
    }
    
    .footer-column a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-links {
        gap: 20px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .practice-groups .section-title {
        font-size: 1.8rem;
    }
    
    .why-darmor .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials .section-title {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .practice-card {
        padding: 20px 15px;
    }
    
    .card-header {
        padding: 20px 20px 15px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .feature-block {
        padding: 20px 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
}
