:root {
    --bg-dark: #0B0B0F;
    --section-dark: #12121A;
    --gold-accent: #0a848c;
    --soft-gold: #0a848c;
    --text-light: #F5F5F5;
    --text-muted: #A1A1AA;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Modern Home Page Custom Styles */
.hero-gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #0a848c 50%, #0a848c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

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

.service-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-10px) scale(1.02);
}

.portfolio-img-zoom {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-img-zoom {
    transform: scale(1.1);
}

/* Luxury Cut Corner Button */
.btn-luxury-cut {
    position: relative;
    padding: 12px 35px;
    background: transparent;
    color: white !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    z-index: 1;
    border: none;
    text-decoration: none;
}

.btn-luxury-cut::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a848c 0%, #0a848c 100%);
    clip-path: polygon(0 0, 85% 0, 100% 30%, 100% 100%, 0 100%);
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-luxury-cut::after {
    content: '';
    position: absolute;
    top: 1.5px;
    left: 1.5px;
    right: 1.5px;
    bottom: 1.5px;
    background: #0B0B0F;
    clip-path: polygon(0 0, 84.8% 0, 99.5% 29.5%, 99.5% 100%, 0 100%);
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-luxury-cut:hover::before {
    background: linear-gradient(135deg, #0a848c 0%, #0a848c 100%);
    filter: drop-shadow(0 0 10px rgba(10, 132, 140, 0.6));
}

.btn-luxury-cut:hover {
    transform: translateY(-2px);
    color: white !important;
}

.btn-luxury-cut:hover::after {
    background: rgba(255, 255, 255, 0.05);
}

/* Luxury Pill Menu Styling */
.pill-nav-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pill-nav-link {
    position: relative;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.pill-nav-link:hover,
.pill-nav-link.active {
    color: #ffffff !important;
}

/* Dropdown arrow for menu items with sub-menus if needed */
.menu-arrow {
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.7;
}

/* Mega Menu Styling */
.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 800px;
    background: rgba(11, 11, 15, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    z-index: 1000;
}

.nav-item-mega:hover .mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.mega-column-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: block;
}

.mega-item {
    display: block;
    padding: 12px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mega-item-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}

.mega-item-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    line-height: 1.4;
    display: block;
}

.mega-item:hover .mega-item-title {
    color: #a855f7;
}

/* Mega Menu Promo Card */
.mega-promo-card {
    background: linear-gradient(135deg, #0a848c 0%, #0a848c 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.mega-promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=400') center/cover;
    mix-blend-mode: overlay;
    opacity: 0.3;
}

/* Hero Section Redesign */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: -2;
}

.hero-animated-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.15;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero-glow {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(10, 132, 140, 0.1) 0%, transparent 70%);
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
}

.hero-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(10, 132, 140, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(10, 132, 140, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 85%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 16px 4px 4px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-badge-pill {
    background: #0a848c;
    color: #ffffff;
    padding: 2px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.hero-badge-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

/* Trust Section & Logo Scroll */
.logo-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logo-scroll-container::before,
.logo-scroll-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #0B0B0F 0%, transparent 100%);
}

.logo-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #0B0B0F 0%, transparent 100%);
}

.logo-track {
    display: flex;
    width: calc(220px * 18); /* 9 logos * 2 for seamless loop */
    animation: scroll 40s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    width: 220px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 30px;
}

.logo-item img {
    max-width: 100%;
    max-height: 35px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logos pure white */
    opacity: 0.4;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 9)); }
}

/* Scrollable Services Section */
.services-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 32px;
    padding: 20px 0 40px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.services-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.service-card-new {
    flex: 0 0 calc(33.333% - 21.4px); /* Show 3 cards with gap */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 380px; /* Reduced height */
    /* Folder-like cut corner */
    clip-path: polygon(0 0, 40% 0, 50% 10%, 100% 10%, 100% 100%, 0 100%);
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .service-card-new {
        flex: 0 0 calc(50% - 16px); /* Show 2 cards on tablets */
    }
}

@media (max-width: 768px) {
    .service-card-new {
        flex: 0 0 100%; /* Show 1 card on mobile */
        height: 350px;
        padding: 25px;
    }
}

.service-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='200' viewBox='0 0 400 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150C50 140 100 180 150 160C200 140 250 100 300 120C350 140 400 110 400 110' stroke='white' stroke-opacity='0.05' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.service-card-new:hover {
    border-color: rgba(10, 132, 140, 0.3);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.service-icon-wrapper {
    width: 48px;
    height: 48px;
    background: radial-gradient(circle at 30% 30%, #0a848c 0%, #0a848c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(10, 132, 140, 0.3);
}

.service-icon-wrapper i,
.service-tab-card .w-14.h-14 i {
    color: #ffffff !important;
    background: transparent !important;
    font-size: 22px;
}

.service-card-new h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card-new p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    max-width: 90%;
}

.service-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    color: #0a848c;
    gap: 12px;
}

.nav-btn-custom {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-btn-custom:hover {
    border-color: #0a848c;
    color: #0a848c;
    background: rgba(10, 132, 140, 0.05);
}

.text-purple-accent {
    color: #0a848c;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.rotating-text-wrapper {
    display: inline-flex;
    flex-direction: column;
    height: 1.15em;
    overflow: hidden;
    vertical-align: bottom;
    position: relative;
    width: auto;
    overflow: hidden;
}

.rotating-text-list {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.rotating-text-list span {
    display: block;
    height: 1.15em;
    line-height: 1.15em;
    white-space: nowrap;
}


/* Standard Section & Typography (Luxury System) */
.luxury-section {
    padding: 6rem 0; /* py-24 */
    position: relative;
    overflow: hidden;
}

.luxury-heading-main {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-light);
    font-size: 3.5rem; /* text-5xl */
}

@media (min-width: 768px) {
    .luxury-heading-main { font-size: 5rem; } /* md:text-7xl */
}
@media (min-width: 1024px) {
    .luxury-heading-main { font-size: 6rem; } /* lg:text-8xl */
}

.luxury-heading-secondary {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
    font-size: 2.25rem; /* text-4xl */
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .luxury-heading-secondary { font-size: 3rem; } /* md:text-5xl */
}

.luxury-paragraph {
    color: var(--text-muted);
    font-size: 1.125rem; /* text-lg */
    font-weight: 300;
    line-height: 1.6;
    max-width: 42rem;
}

.luxury-card {
    padding: 2.5rem;
    border-radius: 2.5rem;
    background: #0D0D0F;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.luxury-card:hover {
    border-color: rgba(10, 132, 140, 0.3);
    transform: translateY(-5px);
}

.luxury-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.luxury-input-group {
    margin-bottom: 1.5rem;
}

.luxury-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B7280; /* text-gray-500 */
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

.luxury-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.luxury-input:focus {
    border-color: rgba(10, 132, 140, 0.5);
}

.luxury-button {
    background: #ffffff;
    color: #000000;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.luxury-button:hover {
    background: #0a848c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #0a848c 0%, #F5F5F5 50%, #0a848c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn-white {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-outline-arrow {
    color: #ffffff;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-arrow:hover {
    color: #D4AF37;
}

.btn-outline-arrow i {
    transition: transform 0.3s ease;
}

.btn-outline-arrow:hover i {
    transform: translateX(5px);
}

.luxury-dot {
    width: 6px;
    height: 6px;
    background-color: #D4AF37;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.text-gold {
    color: #D4AF37 !important;
}

.bg-gold {
    background-color: #D4AF37 !important;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #0a848c, #0a848c);
    z-index: 1001;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--section-dark);
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title .subtitle {
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

/* Portfolio Filter */
.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 8px 25px;
    border-radius: 50px;
    margin: 5px;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--bg-dark);
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 15, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Sections */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

/* Form Styling */
.form-control {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light) !important;
    padding: 12px 20px;
    border-radius: 10px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-accent);
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 10px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 24px;
}

.industry-tag {
    background: rgba(10, 132, 140, 0.1);
    border: 1px solid rgba(10, 132, 140, 0.2);
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #0a848c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.industry-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10, 132, 140, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .industry-card {
        padding: 32px;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Testimonial Slider */
#testimonial-slider {
    position: relative;
}

.testimonial-track {
    position: relative;
    transition: height 0.3s ease-in-out;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
    position: static;
}

/* Blog Section */
.btn-teal {
    background-color: #0a848c;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-teal:hover {
    background-color: #086F75;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 132, 140, 0.2);
}

.blog-card {
    background: #12121A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 132, 140, 0.3);
}

.blog-card-link {
    text-decoration: none;
    display: block;
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    transition: transform 0.5s ease;
}

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

.blog-card-content {
    padding: 24px;
}

.blog-card-category {
    color: #0a848c;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.blog-card-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 20px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .section-title h2 {
/* New Footer Styles */
.footer-links a {
    font-size: 18px;
    color: white;
    line-height: 2;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00D4E8;
    transform: translateX(5px);
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #00D4E8;
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        display: inline-block;
        text-align: left;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        margin-top: 1rem;
    }
}

        font-size: 2.5rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}