/* Import Merriweather font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

/* General Image Styling */
.responsive-image {
    width: 100%; /* Makes the image responsive */
    max-width: 400px; /* Limits the maximum width */
    height: auto; /* Maintains aspect ratio */
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 20px; /* Adds spacing below the image */
    display: block; /* Ensures the image is centered */
    margin-left: auto;
    margin-right: auto;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dropdown Styling */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px;
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #345;
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
}

.dropdown-menu li {
    display: block;
    text-align: left;
    padding: 5px 15px;
}

.dropdown-menu li a {
    color: #fff;
    display: block;
    padding: 8px 15px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a:hover {
    background: #345;
    border-radius: 5px;
}

/* Body Styling */
body {
    font-family: 'Merriweather', serif; /* Font from Google Fonts */
    line-height: 1.6; /* Improves readability */
    background-color: #f4f4f4; /* Light background */
    color: #333; /* Neutral text color */
    margin: 0; /* Removes default body margin */
    padding: 0;
}

/* Header Styling */
header {
    background-color: #345; /* Dark header background */
    color: #fff; /* White text color */
    padding: 20px;
    border-radius: 0px 0px 0px 0px; /* Rounded corners only at the top */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center all text content */
}

.header-content {
    max-width: 1200px; /* Constrain the width */
    margin: 0 auto; /* Center the container */
    display: flex;
    flex-direction: column; /* Stack welcome/logo and navigation vertically */
    align-items: center; /* Center everything horizontally */
}

.welcome-logo-container {
    display: flex;
    align-items: center; /* Vertically center the welcome text and logo */
    margin-bottom: 10px; /* Space between welcome/logo and bar */
}

header h1 {
    font-size: 2em; /* Slightly larger header size */
    margin: 0;
    font-weight: bold;
    padding-right: 20px; /* Space between welcome text and logo */
}

.header-logo img {
    width: 40px; /* Smaller logo size */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Rounded corners for the logo */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Logo Hover Effect */
.header-logo img:hover {
    transform: translateY(-3.5px); /* Move the logo 10px to the right on hover */
}

/* Bar to separate welcome/logo from navigation */
.header-bar {
    width: 100%; /* Full width */
    height: 2px; /* Thickness of the bar */
    background-color: #ffe; /* Color of the bar */
    margin-bottom: 10px; /* Space between bar and navigation */
}

/* Sticky Navigation Bar */
.sticky-nav {
    position: sticky;
    top: 0; /* Stick to the top of the viewport */
    z-index: 1000; /* Ensure the nav bar stays above other content */
    background-color: #345; /* Match the header background color */
    border-radius: 0px 0px 8px 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Navigation Styling */
nav {
    display: flex;
    justify-content: space-between; /* Space between nav links and login container */
    align-items: center; /* Vertically center the nav links and login container */
    max-width: 1200px; /* Constrain the width */
    margin: 0 auto; /* Center the container */
    padding: 10px 20px; /* Add padding for better spacing */
}

nav ul {
    list-style: none; /* Removes bullet points */
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center navigation links */
}

nav ul li {
    margin: 0 15px; /* Adds spacing between navigation items */
}

nav ul li a {
    color: #fff; /* White text for links */
    text-decoration: none; /* Removes underlines */
    font-weight: bold; /* Boldens the links */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

nav ul li a:hover {
    color: #c0c2c9; /* Slightly lighter color on hover */
}

/* Login Container Styling */
.login-container {
    margin-left: auto; /* Push the login container to the right */
    display: flex;
    align-items: center; /* Vertically center the text and icon */
}

.login-container a {
    color: #fff; /* White color for the text and icon */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
    display: flex;
    align-items: center; /* Vertically center the text and icon */
    gap: 8px; /* Space between text and icon */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.login-container a:hover {
    color: #c0c2c9; /* Slightly lighter color on hover */
}

.login-container i {
    font-size: 1.2em; /* Slightly larger icon size */
}

/* Dropdown Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #345;
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
}

.dropdown-menu li {
    display: block;
    text-align: left;
    padding: 5px 15px;
}

.dropdown-menu li a {
    color: #fff;
    display: block;
    padding: 8px 15px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a:hover {
    background: #567;
    border-radius: 5px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background-color: #ffe;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #345;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

/* Main Section Styling */
main {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background-color: #ffe;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 60vh; /* Ensure the main section has a minimum height */
}

/* Section Header */
main h2 {
    text-align: center; /* Centers the "Home" header only */
    font-size: 28px; /* Prominent font size */
    color: #345; /* Dark blue for contrast */
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #345; /* Underline effect */
    margin-bottom: 20px;
}

/* Paragraph Styling */
main p {
    text-align: left; /* Ensures all paragraphs are left-aligned */
    color: #666; /* Dark gray color for text */
    font-size: 16px; /* Standard readable font size */
    margin-bottom: 15px; /* Adds spacing between paragraphs */
    line-height: 1.8; /* Improves readability with line spacing */
}

/* Link Styling */
main a {
    color: #345; /* Dark blue for links */
    text-decoration: none; /* Removes underlines */
    font-weight: bold; /* Boldens the links */
    transition: color 0.3s ease; /* Smooth color transition */
}

main a:hover {
    color: #0077b5; /* Changes to LinkedIn blue on hover */
}

/* Projects Section Container */
#projects {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto; /* Centers the projects section */
    text-align: center; /* Centers the "Projects" header */
}

/* Projects Header Styling */
#projects h2 {
    font-size: 28px; /* Prominent font size */
    color: #345; /* Dark blue for contrast */
    font-weight: 700;
    border-bottom: 2px solid #345; /* Line across the whole width */
    display: block; /* Ensures the line spans across the section */
    width: 100%; /* Makes the line extend across the entire container */
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: center; /* Keeps the text itself centered */
}

/* Projects Grid Container */
.projects-grid {
    display: flex; /* Enables Flexbox layout */
    flex-wrap: wrap; /* Wraps the items to the next line as needed */
    justify-content: center; /* Centers the grid items */
    gap: 20px; /* Adds spacing between project cards */
    margin-top: 20px;
}

/* Individual Project Card */
.project-card {
    flex: 1 1 calc(33.333% - 40px); /* Ensures 3 cards per row */
    max-width: 300px; /* Restricts the maximum width */
    background-color: #fff; /* White background for the card */
    border: 1px solid #ddd; /* Adds a light border */
    border-radius: 8px; /* Smooth, rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 15px;
    text-align: center; /* Centers text inside the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover effects */
    text-decoration: none; /* Removes underline for links */
}

/* Thumbnail Image */
.project-card img {
    max-width: 100%; /* Makes the image responsive */
    height: auto; /* Maintains the aspect ratio */
    border-radius: 4px; /* Slightly rounded corners for the image */
    margin-bottom: 10px;
}

/* Project Name */
.project-card h3 {
    font-size: 1.2em; /* Slightly larger text */
    color: #333; /* Neutral dark color for the title */
    margin: 10px 0;
    font-weight: bold;
    padding-bottom: 5px; /* Space below the text */
    border-bottom: 2px solid #345; /* Horizontal line to separate the name */
}

/* Project Description */
.project-card p {
    font-size: 0.95em; /* Standard size for readability */
    color: #666; /* Dark gray for the description */
    line-height: 1.5;
    margin-top: 10px; /* Space above the description */
}

/* Hover Effect for Project Card */
.project-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Deeper shadow */
}

/* Responsive Design for Medium Screens */
@media (max-width: 900px) {
    .project-card {
        flex: 1 1 calc(50% - 40px); /* 2 cards per row */
    }
}

/* Responsive Design for Small Screens */
@media (max-width: 600px) {
    .project-card {
        flex: 1 1 100%; /* 1 card per row */
    }
}

/* Login Main Section */
.login-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px); /* Adjust height to fit the viewport */
    padding: 20px;
    background-color: #ffe; /* Light background */
}

.login-section {
    background-color: #345;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff; /* Dark blue for contrast */
    border-bottom: 2px solid #ffe;
}

/* Login Form Styling */
.login-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
}

.login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    border-color: #345; /* Dark blue border on focus */
    outline: none;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF; /* Blue button */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Sign Up Link */
.signup-link {
    margin-top: 20px;
    font-size: 14px;
    color: #c0c2c9;
}

.signup-link a {
    color: #007BFF; /* Blue link */
    text-decoration: none;
    font-weight: bold;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Signup Main Section */
.signup-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px); /* Adjust height to fit the viewport */
    padding: 20px;
    background-color: #ffe; /* Light background */
}

.signup-section {
    background-color: #345; /* White background for the form */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.signup-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff; /* Dark blue for contrast */
    border-bottom: 2px solid #ffe;
}

/* Signup Form Styling */
.signup-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.signup-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
}

.signup-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.signup-form input:focus {
    border-color: #345; /* Dark blue border on focus */
    outline: none;
}

.signup-button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF; /* Blue button */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Log In Link */
.login-link {
    margin-top: 20px;
    font-size: 14px;
    color: #c0c2c9;
}

.login-link a {
    color: #007BFF; /* Blue link */
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling for the Contact Info Section */
.contact-info {
    text-align: center; /* Center-aligns the content */
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    max-width: 800px; /* Constrains the width of the section */
}

/* Styling for the Profile Photo */
.profile-photo {
    border-radius: 50%; /* Makes the photo circular */
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Section Header Styling */
.contact-info h2 {
    color: #345; /* Dark blue for contrast */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Paragraph Styling */
.contact-info p {
    text-align: center;
    color: #666; /* Dark gray text for general paragraphs */
    font-size: 16px;
    margin-bottom: 20px;
}

/* Contact Widgets Container */
.contact-widgets {
    display: flex;                /* Enables Flexbox layout */
    justify-content: center;      /* Centers the widgets horizontally */
    align-items: center;          /* Aligns widgets vertically */
    flex-wrap: wrap;              /* Allows wrapping on smaller screens */
    gap: 20px;                    /* Adds spacing between widgets */
    margin-top: 20px;             /* Spacing above the widget container */
}

/* Individual Widget Styling */
.widget {
    width: 150px;                 /* Fixed width for uniform size */
    height: 200px;                /* Fixed height for uniform size */
    background-color: #345;       /* Dark background for the widget */
    padding: 20px;                /* Adds inner spacing */
    border-radius: 8px;           /* Rounded corners for a modern look */
    text-align: center;           /* Centers text within the widget */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    display: flex;                /* Enables Flexbox for inner alignment */
    flex-direction: column;       /* Aligns icon and text vertically */
    align-items: center;          /* Centers content horizontally */
    justify-content: center;      /* Centers content vertically */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

/* Icon Styling */
.widget i {
    font-size: 50px;              /* Large icon size */
    margin-bottom: 10px;          /* Space between icon and text */
    color: #fff !important;       /* Default white color for icons */
    transition: color 0.3s ease;  /* Smooth hover transition */
}

/* Text Styling */
.widget p {
    margin: 0;                    /* Removes default paragraph margins */
    color: #fff !important;       /* Default white color for text */
    font-size: 16px;              /* Ensure consistent font size */
    transition: color 0.3s ease;  /* Smooth transition for hover effect */
}

/* Link Styling Inside Widgets */
.widget a {
    text-decoration: none;        /* Removes underline for links */
    color: inherit;               /* Ensures the text inherits white or hover color */
    display: block;               /* Makes the entire block clickable */
}

/* Hover Effect for Widgets */
.widget:hover {
    background-color: #567;       /* Slightly lighter background on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Hover Effects for Specific Platforms */
.contact-widgets .widget:nth-child(1):hover i,
.contact-widgets .widget:nth-child(1):hover p { /* LinkedIn */
    color: #0077b5 !important; /* LinkedIn Blue */
}

.contact-widgets .widget:nth-child(2):hover i,
.contact-widgets .widget:nth-child(2):hover p { /* Email */
    color: #c71610 !important; /* Email Red */
}

.contact-widgets .widget:nth-child(3):hover i,
.contact-widgets .widget:nth-child(3):hover p { /* Instagram */
    color: #e1306c !important; /* Instagram Pink */
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Freelance Section Styling */
.freelance-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.freelance-card {
    background-color: #345;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 20px;
}

.freelance-card img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

.freelance-content {
    flex: 1;
}

.freelance-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #fff;
    border-bottom: 2px solid #ffe; /* Underline effect */
}

.freelance-content p {
    margin: 0 0 10px 0;
    color: #c0c2c9;
}

.freelance-content .rate {
    font-weight: bold;
    color: #85bb65;
}

.freelance-card .book-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: auto;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none; /* Remove underline from link */
    display: inline-block; /* Ensure the link behaves like a button */
}

.freelance-card .book-button:hover {
    background-color: #0056b3;
}

/* Responsive Design for Freelance Cards */
@media (max-width: 768px) {
    .freelance-card {
        flex-direction: column;
        text-align: center;
    }

    .freelance-card img {
        margin-bottom: 15px;
    }

    .freelance-card button {
        margin-left: 0;
        margin-top: 15px;
    }
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
    /* Header adjustments */
    .welcome-logo-container {
        flex-direction: column;
        text-align: center;
    }

    header h1 {
        padding-right: 0;
        margin-bottom: 10px;
    }

    /* Navigation adjustments */
    nav ul {
        flex-direction: column;
        align-items: center;
    }

        nav ul li {
            margin: 5px 0;
        }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        text-align: center;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Login container */
    .login-container {
        margin: 10px auto;
    }

    /* Main content adjustments */
    main {
        padding: 15px;
        margin: 10px;
    }

    /* Project cards */
    .project-card {
        flex: 1 1 100%;
    }

    /* Freelance cards */
    .freelance-card {
        flex-direction: column;
        text-align: center;
    }

        .freelance-card img {
            margin-bottom: 15px;
        }

        .freelance-card .book-button {
            margin-left: 0;
            margin-top: 15px;
        }

    /* Contact widgets */
    .contact-widgets {
        flex-direction: column;
        align-items: center;
    }

    .widget {
        width: 100%;
        margin-bottom: 15px;
    }

    /* Form adjustments */
    .order-form, .login-form, .signup-form {
        padding: 15px;
    }

    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
    }

    .footer-icons-left {
        margin-bottom: 15px;
        justify-content: center;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    /* Further reduce padding and margins */
    header, main, footer {
        padding: 10px;
    }

    /* Make text slightly larger for readability */
    body {
        font-size: 16px;
    }

    /* Adjust form inputs */
    input, select, textarea, button {
        font-size: 16px; /* Prevent zooming on focus in mobile browsers */
    }
}

/* Add this for dropdown toggle functionality on mobile */
.dropdown > a::after {
    content: ' ▾';
}

.dropdown.active > a::after {
    content: ' ▴';
}

/* Order Form Styling */
.order-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-form .form-group {
    margin-bottom: 20px;
}

.order-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #345;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    border-color: #345;
    outline: none;
}

.order-form textarea {
    resize: vertical; /* Allow vertical resizing */
}

.submit-button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* Image Container Styling */
.image-container {
    margin-top: 20px; /* Space above the image */
    text-align: center; /* Center the image and caption */
}

.image-container h3 {
    font-size: 24px; /* Larger font size for the heading */
    color: #345; /* Dark blue for contrast */
    margin-bottom: 10px; /* Space below the heading */
}

.image-container img {
    border-radius: 8px; /* Rounded corners for the image */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
}

.image-caption {
    margin-top: 10px; /* Space above the caption */
    font-size: 14px; /* Smaller font size for the caption */
    color: #666; /* Dark gray for the caption */
}

/* Video Container Styling */
.video-container {
    margin-top: 20px; /* Space above the video */
    text-align: center; /* Center the video and caption */
}

.video-container h3 {
    font-size: 24px; /* Larger font size for the heading */
    color: #345; /* Dark blue for contrast */
    margin-bottom: 10px; /* Space below the heading */
}

.video-container video {
    border-radius: 8px; /* Rounded corners for the video */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.video-caption {
    margin-top: 10px; /* Space above the caption */
    font-size: 14px; /* Smaller font size for the caption */
    color: #666; /* Dark gray for the caption */
}

/* Page Container */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the container takes up at least the full viewport height */
}

/* Main Content */
main {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background-color: #ffe;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 60vh; /* Ensure the main section has a minimum height */
}

/* Footer Styling */
footer {
    background-color: #345; /* Dark background for the footer */
    color: #fff; /* White text color */
    text-align: center;
    padding: 20px 0;
    border-radius: 8px 8px 0 0; /* Rounded corners only at the top */
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow at the top */
    margin-top: auto; /* Push the footer to the bottom */
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Space between left and right content */
    align-items: center; /* Vertically center the content */
    max-width: 1200px; /* Constrain the width */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Add padding for better spacing */
}

.footer-icons-left {
    display: flex;
    gap: 15px; /* Adds spacing between icons */
}

.footer-icons-left a {
    color: #fff; /* White color for the icons */
    text-decoration: none; /* Remove underline */
    font-size: 18px; /* Icon size */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.footer-icons-left a:hover {
    color: #c0c2c9; /* Slightly lighter color on hover */
}

footer p {
    margin: 0; /* Remove default margin */
    font-size: 14px; /* Standard readable text size */
    font-weight: 400; /* Normal font weight */
}

/* LinkedIn Icon */
footer .linkedin-icon a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease; /* Smooth transition for hover */
}

footer .linkedin-icon a:hover {
    color: #0077b5; /* LinkedIn blue */
}

/* Email Icon */
footer .email-icon a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

footer .email-icon a:hover {
    color: #c71610; /* Email red */
}

/* Phone Icon */
footer .phone-icon a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

footer .phone-icon a:hover {
    color: #2dba4e; /* Phone green */
}

/* Instagram Icon */
footer .instagram-icon a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

footer .instagram-icon a:hover {
    color: #e1306c; /* Instagram pink */
}


