:root {
    --primary: #002366;
    --secondary: #FFD700;
    --light: #F5F5F5;
    --dark: #333333;
    --gold-light: #FFF4CC;
    --gold-dark: #FF007F;
    --text-dark: #1a1a1a;
    --text-medium: #666;
    --light-gray: #f8f9fa;
}
:root {
    --black: #000000;
    --electric-blue: #00BFFF;
    --magenta: #FF007F;
    --gold: #FFD700;
    --teal: #00CED1;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #4d4d4d;
}

/* Base Styles */
html, body {
    overflow-x: hidden;
    font-family:  "Readex Pro", "Tajawal",sans-serif;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img, video {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.text-center {
    text-align: center;
}

/* Spinner */
.spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner.hide {
    opacity: 0;
    visibility: hidden;
}

/* Navigation */
.navbar {
    background-image: url('../img/newmages/image2.png');
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 35, 102, 0.1);
    transition: all 0.3s ease;
}



.navbar.sticky-top {
    top: -100px;
    transition: all 0.5s ease;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-nav {
    margin-right: auto;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    margin-left: 15px;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgb(58 0 99 / 63%), rgb(0 0 0 / 50%));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}

/* Section Styling */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    color: #ff4081; 
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}



.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-content h3 span {
    color: var(--secondary);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}
/* Media Container Styling */
.media-container {
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.media-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.media-container img,
.media-container video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.media-container:hover img,
.media-container:hover video {
    transform: scale(1.03);
}


/* Skills */
.skills {
    margin-top: 30px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 500;
}

.progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--secondary);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--light);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-position {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-bio {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Banner Section */
.banner-section {
    padding: 60px 0;
    background-image: url('../img/newmages/image1.png');
    background-color: #2e2b78;
}

.side-slider {
    position: relative;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 10px;
}

.side-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.side-slide.active {
    opacity: 1;
}

.side-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 35, 102, 0.12);
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px 20px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #002366; /* or var(--text-dark) */
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: #555; /* or var(--text-medium) */
    line-height: 1.6;
}

/* Auctions Section */
.auctions-section {
    padding: 80px 0;
    background-image: url('../img/newmages/image.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.auctions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 35, 102, 0.7);
    z-index: 0;
}

.auctions-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.auctions-content h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.auctions-list {
    padding: 0;
}

.auctions-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.auctions-list li i {
    margin-left: 10px;
    color: var(--secondary);
}

.auctions-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Magazine Section */
.magazine-section {
    padding: 80px 0;
    background-color: white;
}

.language-selector {
    margin-bottom: 30px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary.active {
    background-color: var(--primary);
    color: white;
}
.pdf-viewer-container {
  text-align: center;
  margin-top: 20px;
}

.pdf-viewer {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-top: 141.42%; /* Aspect ratio for A4 paper (1 / 0.707) ~ √2 */
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.pdf-viewer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.download-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.product-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin: 10px;
    text-align: center;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-item h4 {
    padding: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0;
}
/* App Section */
.app-section {
    padding: 100px 0;
    background-image: url('../img/newmages/image2.png');
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,215,0,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    z-index: 0;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    border: 10px solid var(--medium-gray);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(15deg);
    transition: all 0.5s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg);
    box-shadow: 0 30px 70px rgba(0, 191, 255, 0.4);
}

.app-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-feature-list {
    margin-bottom: 30px;
}

.app-feature-list li {
    margin-bottom: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.text-accent {
    color: var(--electric-blue);
}

.btn-download {
    background-color: var(--gold);
    color: var(--black);
    font-weight: 600;
    padding: 12px 25px;
    border: none;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: var(--electric-blue);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
}

/* Location Tabs */
.location-tabs {
    border-bottom: 2px solid rgba(0, 35, 102, 0.1);
    margin-bottom: 30px;
}

.location-tabs .nav-link {
    color: var(--text-medium);
    font-weight: 600;
    padding: 12px 25px;
    border: none;
    border-radius: 8px 8px 0 0;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent;
}

.location-tabs .nav-link:hover {
    color: var(--primary);
    background-color: rgba(0, 35, 102, 0.05);
}

.location-tabs .nav-link.active {
    color: var(--primary);
    background-color: white;
    border-bottom: 3px solid var(--secondary);
}

.location-tabs .nav-link i {
    margin-left: 8px;
}

/* Contact Card Enhancements */
.contact-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 4px solid var(--secondary);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-left: 15px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
    border: 1px solid #eee;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .location-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .contact-card {
        margin-bottom: 30px;
    }
    
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 767.98px) {
    .location-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .location-tabs .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-item i {
        margin-left: 0;
        margin-bottom: 8px;
    }
}
/* Footer */
.footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 0;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-links {
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-right: 10px;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.footer-gallery img:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--secondary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    animation: pulse 2s infinite;
}

.whatsapp-btn img {
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover img {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }
    
    .order-lg-1 {
        order: 1;
    }
    
    .order-lg-2 {
        order: 2;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .footer-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/*** Project Section ***/
.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 35, 102, 0.2);
}

.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 35, 102, 0.8);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-item img {
    min-height: 150px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item h6 {
    text-align: center;
    padding: 15px;
    background: white;
    margin: 0;
    color: var(--primary);
    font-weight: 600;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--secondary);
    background: var(--secondary);
}


/* Blog Gateway Section */
.blog-gateway {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-gateway .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2a3f54;
    margin-bottom: 20px;
    position: relative;
}

.blog-gateway .section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #4e73df;
    bottom: -10px;
    right: 0;
}

.blog-gateway .section-description {
    color: #5a5c69;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.gateway-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: #e9f0ff;
    color: #4e73df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 1.1rem;
}

.feature-item span {
    color: #4a4a4a;
    font-weight: 500;
}

.gateway-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.gateway-image img {
    transition: transform 0.5s ease;
}

.gateway-image:hover img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(78, 115, 223, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gateway-image:hover .image-overlay {
    opacity: 1;
}

.overlay-btn {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.overlay-btn i {
    margin-right: 10px;
}

.overlay-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-gateway {
        padding: 60px 0;
    }
    
    .blog-gateway .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .blog-gateway .row {
        flex-direction: column-reverse;
    }
    
    .gateway-content {
        margin-top: 30px;
        text-align: center;
    }
    
    .blog-gateway .section-title:after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .feature-item {
        justify-content: center;
    }
}