/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

nav a.active {
    font-weight: bold;
    color: #0073e6;
    border-bottom: 2px solid #0073e6;
}

/* Header Section */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #003366;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

header .logo img {
    max-height: 50px;
    width: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 15px;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

header nav ul li a:hover {
    color: #0073e6;
    background: white;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #003366;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #005bb5;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn::after {
    content: " ▼";
    font-size: 0.8rem;
    color: white;
    margin-left: 5px;
}

.services {
    padding: 60px 20px;
    background: url("Ship-Repair-beta-shipping.jpg") no-repeat center/cover; /* Adjust background image */
    color: #ffffff; /* Change text color to make it stand out on the background */
    text-align: center;
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #003366; /* Ensure the title is readable */
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.8); /* Add a semi-transparent white background for content */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-item img {
    max-width: 100px; /* Limit the size of icons */
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #003366; /* Match branding */
}

.service-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-in-out 1s;
}

.hero .btn {
    background: #0073e6;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
    animation: fadeIn 2s ease-in-out 1.5s;
}

.hero .btn:hover {
    background: #005bb5;
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 1rem;
    color: #666;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-item {
    flex: 1 1 45%;
    padding: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.about-item h2 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 15px;
}

.about-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}
/* Services Section */
.services {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.services h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-item img {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.2));
}

.service-item h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 280px;
}

/* Partners Section */
.partners-hero {
    background: linear-gradient(135deg, #003366 0%, #0073e6 100%);
    position: relative;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.partners-hero h1 {
    color: white;
    font-size: 4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out;
    position: relative;
}

/* Partner Card */
.partner-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    margin: 20px auto;
    max-width: 1100px;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: 's';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, #c0392b, #e74c3c);
}
.partners-content {
    background-color: #DFDBE5;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='64' viewBox='0 0 48 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48 28v-4L36 12 24 24 12 12 0 24v4l4 4-4 4v4l12 12 12-12 12 12 12-12v-4l-4-4 4-4zM8 32l-6-6 10-10 10 10-6 6 6 6-10 10L2 38l6-6zm12 0l4-4 4 4-4 4-4-4zm12 0l-6-6 10-10 10 10-6 6 6 6-10 10-10-10 6-6zM0 16L10 6 4 0h4l4 4 4-4h4l-6 6 10 10L34 6l-6-6h4l4 4 4-4h4l-6 6 10 10v4L36 8 24 20 12 8 0 20v-4zm0 32l10 10-6 6h4l4-4 4 4h4l-6-6 10-10 10 10-6 6h4l4-4 4 4h4l-6-6 10-10v-4L36 56 24 44 12 56 0 44v4z' fill='%239C92AC' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 1rem; /* Adjust padding as needed */
}

.partner-logo {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.partner-logo h2 {
    color: #003366;
    font-size: 2.5rem;
    margin: 0;
    padding: 20px 0;
    position: relative;
}

.partner-logo h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #003366, #0073e6);
    border-radius: 2px;
}

.partner-info {
    padding: 30px 0;
    border-bottom: 2px solid #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.partner-details {
    padding: 20px 0;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.features-list li {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.features-list li::before {
    content: '✓';
    margin-right: 10px;
    color: #28a745;
    font-weight: bold;
}
/* Values Section */
.values-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.values-section h1 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
}

.values-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-section .values-image {
    max-width: 80%;
    max-height: 900px;
    height: auto;
    width: auto;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 50vh;
    background: url('image.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-hero p a {
    color: #0073e6;
    text-decoration: none;
}

.contact-hero p a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
}

.contact-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #003366;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    flex: 1 1 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item img {
    width: 40px;
    height: auto;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.contact-item a {
    color: #0073e6;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer Section */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-column {
    flex: 1 1 300px;
    min-width: 200px;
}

.footer-column h3 {
    color: #0073e6;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #0073e6;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Additional Links and Buttons */
.website-link {
    display: inline-block;
    background: linear-gradient(135deg, #003366 0%, #0073e6 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
}

.website-link:hover {
    background: linear-gradient(135deg, #0073e6 0%, #003366 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,115,230,0.3);
}

.external-link {
    color: #c0392b;
    text-decoration: none;
    font-weight: bold;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
    }

    .partners-hero h1 {
        font-size: 2.8rem;
    }

    .partner-card {
        margin: 20px;
        padding: 30px;
    }

    .service-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    footer {
        font-size: 0.8rem;
    }
}
.history-page {
    background-color: #f5f5f5;
    background-image:
            linear-gradient(45deg, #003366 1px, transparent 1px),
            linear-gradient(-45deg, #003366 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    min-height: 100vh;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.page-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #003366, #0066cc);
    color: white;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

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

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #0066cc, transparent);
}

.timeline-item {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 35px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #0066cc, #003366);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    box-shadow: 0 0 0 8px rgba(0, 102, 204, 0.2);
    transform: scale(1.2);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -25px;
    top: 40px;
    width: 25px;
    height: 2px;
    background: linear-gradient(to right, #0066cc, transparent);
}

.timeline-date {
    color: #0066cc;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 20px;
}

.timeline-content {
    color: #333;
    line-height: 1.6;
    position: relative;
}

.timeline-content p {
    margin: 0;
    font-size: 1rem;
}

.timeline-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }

    .timeline-item::before {
        left: -25px;
        width: 12px;
        height: 12px;
    }

    .timeline-item::after {
        left: -20px;
        width: 20px;
    }
}

/* Custom animated background effect */
.background-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
    background:
            linear-gradient(45deg, transparent 48%, rgba(0, 102, 204, 0.1) 50%, transparent 52%),
            linear-gradient(-45deg, transparent 48%, rgba(0, 102, 204, 0.1) 50%, transparent 52%);
    background-size: 30px 30px;
    animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}
/* General Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #003366;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
}

nav ul li a.active {
    font-weight: bold;
    border-bottom: 2px solid #fff;
}


.awards {
    padding: 5rem 2rem; /* Increased padding for better spacing */
    background: url("data:image/svg+xml,%3Csvg width='48' height='64' viewBox='0 0 48 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48 28v-4L36 12 24 24 12 12 0 24v4l4 4-4 4v4l12 12 12-12 12 12 12-12v-4l-4-4 4-4zM8 32l-6-6 10-10 10 10-6 6 6 6-10 10L2 38l6-6zm12 0l4-4 4 4-4 4-4-4zm12 0l-6-6 10-10 10 10-6 6 6 6-10 10-10-10 6-6zM0 16L10 6 4 0h4l4 4 4-4h4l-6 6 10 10L34 6l-6-6h4l4 4 4-4h4l-6 6 10 10v4L36 8 24 20 12 8 0 20v-4zm0 32l10 10-6 6h4l4-4 4 4h4l-6-6 10-10 10 10-6 6h4l4-4 4 4h4l-6-6 10-10v-4L36 56 24 44 12 56 0 44v4z' fill='%239C92AC' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat center/cover;
    background-color: #DFDBE5; /* Fallback color */
    min-height: 100vh; /* Ensure it covers the entire viewport height */
    text-align: center;
}

.awards .container {
    max-width: 1400px; /* Wider container for larger layouts */
    margin: 0 auto;
    text-align: center;
}

/* Awards Section Title */
.awards-title {
    font-size: 3rem;
    color: #003366;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
    position: relative;
    line-height: 1.2;
}

.awards-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 4px;
    background: linear-gradient(90deg, #0073e6, #003366);
    border-radius: 2px;
}

/* Subtitle for Awards */
.awards-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Awards Grid */
.award-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Consistent size for all cards */
    gap: 2rem; /* Add spacing between items */
    justify-content: center;
}

/* Award Items */
.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    overflow: hidden;
    min-height: 500px; /* Adjusted height for consistency */
}

.award-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.award-item img {
    width: 100%;
    max-height: 400px; /* Limit height for consistency */
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.award-item h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #003366;
    margin: 1rem 0 0.5rem;
}

.award-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}

/* Certificate Viewer */
.certificate-viewer {
    padding: 2rem;
    background: url('https://www.toptal.com/designers/subtlepatterns/patterns/diagmonds-light.png') no-repeat center/cover;
    text-align: center;
}

.certificate-title {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}

.certificate-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 4px;
    background: linear-gradient(90deg, #0073e6, #003366);
    border-radius: 2px;
}

.pdf-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

iframe {
    border: none;
    border-radius: 8px;
    width: 100%;
    height: 800px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .award-item img {
        max-height: 250px;
    }
    .award-item {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .award-item img {
        max-height: 200px;
    }
    .award-item {
        padding: 1rem;
    }
}