@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    --color-red-primary: #dc2626;
    /* Primary red */
    --color-red-dark: #b91c1c;
    /* Darker red for hover */
    --color-red-light: #fecaca;
    /* Light red for accents */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-dark: #1f2937;
    --color-gray-medium: #6b7280;
    --color-gray-light: #f3f4f6;

    /* Typography scale */
    --fs-base: 1rem;   /* paragraphs, list items */
    --fs-h1: 2.3rem;   /* main headings */
    --fs-h2: 1.25rem;  /* sub-headings */
    --fs-h3: 1.1rem;   /* small headings */
}

html {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Global typography */
body, p, li {
    font-size: var(--fs-base);
    line-height: 1.6;
}

h1 {
    font-size: var(--fs-h1);
    line-height: 1.2;
}

h2 {
    font-size: var(--fs-h2);
    line-height: 1.3;
}

h3 {
    font-size: var(--fs-h3);
    line-height: 1.35;
}

/* Ensure interactive controls use the same font everywhere */
button,
input,
select,
textarea {
  font-family: inherit;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: rgb(255, 255, 255);
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Modify these media query rules */

@media screen and (max-width: 768px) {
    /* Uniformly scale down typography via variables */
    :root {
        --fs-h1: 2rem;
        --fs-h2: 1.125rem;
        --fs-h3: 1rem;
        --fs-base: 1rem;
    }

    .header-section {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0;
        padding: 20px;
        box-sizing: border-box;
    }
    .header-section-div1 {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .middle-section div img {
        width: 100%;
        margin-left: 0;
        max-width: none;
    }
    .values {
        width: 100%;
        padding: 0 15px;
        margin: 0;
        box-sizing: border-box;
    }
    .about-us-section {
        width: 100%;
        margin: 0;
        padding: 15px;
        box-sizing: border-box;
    }
    .partnerships-platform {
        width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    /* Optional: small further reduction for h1 only */
    :root {
        --fs-h1: 1.8rem;
    }

    .header-section {
        padding: 15px;
    }
}

.top-header {
    position: sticky;
    top: 0%;
    background-color: #0f003a;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .top-header {
        display: none;
        font-size: 10px;
    }
}

/*Header*/

.nav-bar-container {
    position: sticky;
    top: 0%;
    display: flex;
    align-items: center;
    max-height: 50px;
    justify-content: space-between;
    padding: 10px 20px;
    background: linear-gradient(90deg, #ffffff 0%, #ffd0d0 190%);
    color: white;
    font-weight: bold;
    z-index: 1000;
    /* Ensures it stays above other elements */
}

#companyLogo {
    max-height: 70px;
}

/* burger menu and phone icon */

.menu-and-phone {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Space between the burger menu and phone icon */
}

/* Burger Menu */

.burger-menu {
    display: none;
    /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
}

.burger-menu .bar {
    width: 25px;
    height: 6px;
    background-color: rgb(0, 0, 0);
    margin: 2px 0;
    transition: 0.3s;
}

/* Phone Contact burger menu */

.phone-contact {
    display: none;
    /* Hidden by default */
}

.phone-icon {
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin-top: auto;
}

/* Show Burger Menu and Phone Icon on Small Screens */

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    .phone-contact {
        display: flex;
    }
}

/* Close Button for Mobile Nav */

.close-button {
    display: none;
    position: absolute;
    text-align: center;
    top: 20px;
    right: 20px;
    font-size: 14px;
    color: rgb(255, 0, 0);
    cursor: pointer;
    z-index: 1001;
}

.close-button :hover {
    background-color: #ffc107;
}

@media (max-width: 768px) {
    .close-button {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -75%;
        width: 75%;
        height: 100%;
        background-color: #ff0000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        z-index: 999;
        font-weight: bold;
    }
    .nav-links.active {
        right: 0;
    }
}

/* Nav Links */

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links ul li {
    margin: 0 15px;
}

.nav-links ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: 0.3s;
}

.nav-links ul li a:hover {
    background-color: #eb0707;
    /* Hover background color */
    color: white;
    padding: 26px 15px;
    /* Increase padding for a bigger hover area */
    border-radius: 5px;
}

.nav-links ul li a.active {
    background-color: #eb0707;
    /* Hover background color */
    color: white;
    padding: 6px 15px;
    /* Increase padding for a bigger hover area */
    border-radius: 5px;
}

/*Contact us btn*/

.navigation-btn button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: #ff0000;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
}

.navigation-btn button:hover {
    background-color: #ffc107;
}

/* Mobile Burger menu Small Screens */

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -75%;
        width: 75%;
        height: 100%;
        background-color: #d3d3d3d3;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        z-index: 999;
    }
    /* Hover effect for nav links burger menu*/
    .nav-links ul li a:hover {
        padding: 8px 4px;
        /* bigger hover area */
        gap: 4px;
    }
    .nav-links ul {
        flex-direction: column;
    }
    .nav-links ul li {
        margin: 15px 0;
    }
    .nav-links.active {
        right: 0;
    }
}

.header-section {
    animation: fadeInUp 1s ease forwards;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 90vh;
    margin: 0px 0px;
    padding-bottom: 30px;
    padding-left: 30px;
    background-color: #ffffff;
    background-image: linear-gradient(180deg, #db1010 0%, #000000ea 100%);
}

.explore-text {
    font-weight: bold;
    font-size: 40px;
    height: 150px;
    /* Adjust based on your needs */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #ff9900, #ff3300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    hyphens: auto;
}

.explore-text span {
    background: linear-gradient(to bottom, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    text-align: left;
    /* or */
    text-align: justify-all;
}

.explore-text span.active {
    opacity: 1;
    transform: translateY(0);
    text-align: left;
    /* or */
    text-align: justify-all;
}

.explore-text span.inactive {
    opacity: 0;
    transform: translateY(-20px);
}

.header-section-div1 {
    position: relative !important;
}

.header-section-div1 p {
    color: white;
    font-size: inherit; /* unify with global paragraph size */
    text-align: left;
}

/*lets talk*/

.header-section-div1 button {
    background-color: red;
    color: white;
    width: 18%;
    padding: 10px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.readMoreBtn {
    background-color: rgb(0, 0, 0);
    color: white;
    width: 18%;
    padding: 12px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.readMoreBtn:hover {
    background: linear-gradient(to bottom, #ff9900, #ff3300);
    cursor: pointer;
    width: 20%;
}

/*lets talk*/

.header-section-div1 button:hover {
    background-color: #ffffff;
    color: #000000;
}

.header-section.active {
    transform: translateX(-100%);
}

.header-section-div2 img {
    height: 500px;
    width: 500px;
    margin-left: 80px;
}

.container {
    margin: 0 auto;
    position: relative;
}

.container-1 {
    margin: 0 auto;
    position: relative;
    height: 74vh;
}

h1 {
    /* keep visual accent, size is controlled by global h1 above */
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-gray-dark);
    width: none;
}

h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ff3e3e;
    margin-top: 12px;
    width: none;
}

/* Offerings */

.container-1 {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 0;
    height: auto;
    /* Changed from fixed height to auto for better responsiveness */
}

.offerings {
    display: flex;
    justify-content: flex-start;
    /* Changed from space-between to match the alignment */
    gap: 40px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.offerings-menu {
    width: 25%;
}

.offerings-grid {
    width: 65%;
    /* Adjusted width */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    background: linear-gradient(135deg, var(--color-red-primary) 0%, var(--color-black) 100%);
    padding: 40px;
    border-radius: 15px;
    margin-right: 20px;
    /* Added margin for consistency */
}

.menu-item {
    background-color: var(--color-gray-dark);
    color: var(--color-white);
    padding: 16px 20px;
    margin-bottom: 12px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem; /* keep nav/menu unique size */
    transition: all 0.3s;
    height: 50px;
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-item.active {
    background-color: var(--color-red-dark);
    color: white;
    font-weight: 600;
}

.menu-item:not(.active) {
    color: var(--color-gray-light);
}

.menu-item:hover:not(.active) {
    background-color: var(--color-red-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.offering-card {
    width: 100%;
    height: auto;
    background-color: var(--color-gray-dark);
    padding: 15px 10px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    display: none;
}

.offering-card.active {
    display: flex;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.offering-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
    background-color: var(--color-red-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offering-title {
    font-size: var(--fs-h2); /* unify all h2 titles */
    margin: 0;
    font-weight: 600;
    color: var(--color-white);
}

.offering-card a {
    text-decoration: none;
    color: inherit;
}

@media (min-width: 720px) and (max-width: 1024px) {
    /* .nav-bar-container {
    color: white;
  }*/
    .middle-section h1 {
        display: flex;
        justify-content: center;
        margin: 40px auto;
        margin-bottom: 0;
    }
    .middle-section div {
        display: flex;
        justify-content: center;
        margin: 40px auto;
        margin-bottom: 0;
    }
    .header-section {
        grid-template-columns: 1fr;
        width: 95%;
    }
    .header-section-div2 {
        display: flex;
        justify-content: center;
        /* Center horizontally */
        align-items: center;
        /* Center vertically */
        height: 100%;
        /* Ensure the parent div has a height if you want to center vertically */
    }
    .header-section-div2 img {
        height: 500px;
        width: 500px;
    }
    .menu-item {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .offerings-grid {
        width: 90% !important;
        justify-content: center;
        /* Center horizontally */
        align-items: center;
        margin: 2px auto;
    }
    .offerings {
        display: grid;
        grid-template-columns: 1fr;
    }
    .offerings-menu {
        gap: 20px;
        margin: 2px 25px;
        width: 100%;
    }
    .about-us-section {
        grid-template-columns: 1fr !important;
    }
    .values {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    .image-set {
        width: 0% !important;
    }
    .background-shape-2 {
        display: none;
    }
}

/* Responsive Styles */

@media (max-width: 768px) {
    /* .nav-bar-container {
    color: white;
  }*/
    .offering-card {
        width: 90%;
    }
    .menu-item {
        padding: 10px 20px;
        font-size: 1rem;
        text-align: center;
    }
    .offerings-grid {
        width: 90% !important;
    }
    .offerings {
        display: grid;
        grid-template-columns: 1fr;
    }
    .offerings-menu {
        gap: 20px;
        margin: 2px auto;
        /* Changed from margin: 2px 25px */
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .readMoreBtn:hover {
        background: linear-gradient(to bottom, #ff9900, #ff3300);
        cursor: pointer;
        width: 45%;
        padding: 13px 13px;
    }
}

@media (max-width: 480px) {
    .offerings-grid {
        width: 75% !important;
        margin: 0 auto;
        /* Add this */
    }
    .offering-card {
        width: 100%;
        margin: 0 auto;
        /* Add this */
    }
    .offerings {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        /* Add this */
        width: 100%;
        /* Add this */
        margin: 0;
        /* Add this */
        padding: 0;
        /* Add this */
    }
    .menu-item {
        width: 100%;
        /* Make sure menu items take full width */
        margin: 0;
        /* Remove any margins */
    }
    .offerings-menu {
        gap: 20px;
        margin: 0 auto;
        width: 75%;
        /* Keep this width */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
}

/* Middle Section */

.middle-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    /* Centers the section */
    padding: 0 20px;
    /* Adds consistent padding */
}

.middle-section h1 {
    position: relative;
    max-width: 1200px;
}

.middle-section div {
    position: relative;
    display: flex;
    justify-content: flex-start;
    /* Aligns content to the left */
    align-items: center;
    width: 100%;
}

/* Image styling */

.middle-section div img {
    position: relative;
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 5%;
    opacity: 1;
    display: block;
    margin-left: 20px;
    /* Aligns with the heading by matching h1's margin-left */
    max-width: 90%;
    /* Matches h1's width */
}

/* Overlay */

/* Text styling on top of overlay */

.middle-section div p {
    position: absolute;
    z-index: 2;
    /* Ensure it's above the overlay */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--fs-base);
    font-weight: bold;
    width: 80%;
    text-align: center;
    color: white;
    background-color: transparent;
    /* Or remove this if no box is needed */
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.culture {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .middle-section div p {
        position: absolute;
        z-index: 2;
        top: 50% !important;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: var(--fs-base);
        font-weight: bold;
        width: 80%;
        text-align: b;
        padding: 20px;
        margin: 0;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
}

/* General Styles */

.next-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: #000000;
}

.next-section div {
    max-width: 1000px;
    /* Restricts content width for better readability */
    margin: auto;
}

.next-section img {
    width: 100%;
    /* Makes the image responsive */
    height: auto;
    /* Maintains the aspect ratio */
    max-width: 600px;
    /* Ensures the image doesn't get too large */
    border-radius: 10px;
    /* Adds rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Adds a subtle shadow effect */
}

/* Responsive Design */

@media (max-width: 768px) {
    .next-section h1 {
        font-size: inherit; /* keep equal sizes */
    }
    .next-section img {
        max-width: 100%;
        /* Ensures the image fits smaller screens */
    }
}

@media (max-width: 480px) {
    .next-section h1 {
        font-size: inherit; /* keep equal sizes */
    }
}

/*About us*/

.about-us-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 98%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px 20px;
    background-color: #ffffff;
    color: #000000;
    text-align: left;
    box-sizing: border-box;
}

.about-us-section-sub-div1 {
    position: relative;
}

.about-us-section-sub-div1 button {
    color: white;
    border: none;
    background-color: red;
    height: 40px;
    width: 120px;
    border-radius: 4px;
    padding: 3px 8px;
    margin: 20px 0;
}

/* mobile responsive */

@media (max-width: 768px) {
    .about-us-section {
        padding: 20px 15px;
        margin: 15px auto;
        width: 100%;
    }
    .about-us-section-sub-div1 {
        padding: 0 10px;
    }
    .about-us-section-sub-div1 p {
        font-size: inherit; /* equalize */
        line-height: 1.6;
        margin-bottom: 15px;
        color: #333333;
        text-align: left;
    }
    .about-us-section-sub-div1 h2 {
        font-size: inherit; /* equalize via h2 rule */
        margin-bottom: 20px;
        color: #000000;
    }
    .about-us-section-sub-div1 button {
        width: 140px;
        height: 45px;
        font-size: inherit;
        margin: 20px auto;
        display: block;
    }
    .about-us-section-sub-div2 {
        margin: 0;
        padding: 15px !important;
        width: 100%;
    }
    .about-us-section-sub-div2 p {
        font-size: inherit; /* equalize */
        line-height: 1.6;
        margin-bottom: 15px;
        color: #333333;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 15px 10px;
    }
    .about-us-section-sub-div1 p {
        font-size: inherit; /* equalize */
        line-height: 1.5;
    }
    .about-us-section-sub-div1 h2 {
        font-size: inherit; /* equalize */
    }
    .about-us-section-sub-div1 button {
        width: 130px;
        height: 40px;
        font-size: inherit;
    }
    .about-us-section-sub-div2 p {
        font-size: inherit; /* equalize */
        line-height: 1.5;
    }
}

.values {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-block-end: 20px;
    /* Matches other sections' alignment */
    width: 95%;
}

.culture-heading {
    display: block;
    font-size: var(--fs-h1);
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-gray-dark);
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.culture-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ff3e3e;
    margin-top: 12px;
}

.values div h3 {
    color: white;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
    font-size: var(--fs-h3); /* equalize */
}

.values div p {
    color: gray;
    font-size: var(--fs-base); /* equalize */
}

.values div img {
    display: block;
    width: 9%;
}

.values div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

/* Mobile styles for values section */

@media (max-width: 768px) {
    .values {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        width: 100%;
    }
    .values div {
        padding: 20px 15px;
        margin: 0;
        flex-direction: column;
    }
    .values div h3 {
        font-size: inherit; /* keep equal */
        margin-bottom: 10px;
    }
    .values div p {
        font-size: inherit; /* keep equal */
        line-height: 1.5;
        padding: 0 10px;
        margin: 10px 0;
        color: black;
    }
    .values div img {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .values {
        padding: 0 10px;
    }
    .values div {
        padding: 15px;
    }
    .values div h3 {
        font-size: inherit; /* keep equal */
    }
    .values div p {
        font-size: inherit; /* keep equal */
        padding: 0 5px;
    }
    .values div img {
        width: 40px;
        height: 40px;
    }
}

/*Partnerships & Platforms background */

.partnerships-platform {
    height: 180px;
    width: 100%;
    margin: 60px 0;
}

/*Partnerships & Platforms */

.partnerships-platform h3 {
    text-align: center;
    margin: 10px auto;
    color: rgb(0, 0, 0);
    padding: 20px 0;
}

.scrolling-container {
    width: 100%;
    /* Adjust as needed */
    overflow: hidden;
    /* Hide the overflow */
    position: relative;
    /* Required for absolute positioning of the content */
}

.partners {
    display: flex;
    /* Display items in a row */
    width: 200%;
    /* Twice the width of the container to accommodate both image sets */
    animation: scroll-left 50s linear infinite;
    /* Animation for scrolling effect */
}

.image-set {
    display: flex;
    /* Align images in a row */
    width: 50%;
    /* Each image set takes up half of the parent width */
}

.image-set div {
    display: flex;
    /* Align items in a row */
    margin-right: 60px;
    /* Space between images */
    /* Adjust margin-right value for desired spacing */
}

a {
    text-decoration: none;
    /* Removes the underline */
    color: inherit;
    /* Inherits text color from parent element */
}

.image-set img {
    max-height: 70px;
    /* Adjust height as needed */
    max-width: 150px;
    /* Adjust width as needed */
    vertical-align: middle;
    /* Align images vertically */
    display: flex;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
        /* Start position */
    }
    100% {
        transform: translateX(-50%);
        /* Move to the end position */
    }
}

footer {
    background-color: #000000;
    /* Soft gray for a modern, clean look */
    color: #ffffff;
    /* Dark gray for text */
    padding: 20px;
    max-width: 100%;
    font-family: inherit; /* Use Montserrat via html */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    /* Responsive grid */
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    /* Light border for subtle separation */
}

footer h3 {
    font-size: var(--fs-h3); /* equalize footer headings */
    font-weight: 600;
    margin-bottom: 10px;
    color: #007bff;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    /* Remove extra spacing */
}

footer ul li {
    padding: 6px 0;
    font-size: var(--fs-base); /* equalize */
    line-height: 1.5;
    color: #ffffff;
    transition: color 0.3s ease;
}

footer ul li:first-child {
    font-weight: 700;
    font-size: var(--fs-base); /* equalize */
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: var(--fs-base); /* equalize */
    color: #ffffff;
}

footer #img-size {
    height: auto;
    width: 70px;
    /* Adjust as needed */
    display: inline-block;
    /* Aligns neatly */
}

.footer-bottom p {
    margin: 5px 0;
    color: #ff9500;
    /* Neutral gray for balance */
}

/* Add hover effects for links */

footer a {
    color: inherit;
    /* Keeps consistent colors */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff;
    /* Modern blue for links */
}

/* Responsive Styles */

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    footer h3 {
        font-size: inherit; /* keep equal */
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        font-size: inherit; /* keep equal */
    }
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
}

.social-media img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-media img:hover {
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .navigation-btn button:hover {
        color: white;
        border: none;
        background: linear-gradient(to bottom, #ff9900, #ff3300);
        cursor: pointer;
        width: 140px;
    }
    body {
        width: 100%;
    }
    nav {
        height: 80px;
    }
    .header-section {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0 auto;
    }
    .header-section-div1 button {
        width: 40%;
    }
    .header-section-div2 img {
        display: none;
    }
    .middle-section div img {
        width: 100% !important;
    }
}

.services {
    background-image: url("background.jpg");
    /* Path to your image */
    background-size: cover;
    /* Adjusts image size to cover the entire page */
    background-position: center;
    /* Centers the background image */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    margin: 0;
    height: 100vh;
    /* Ensures the background covers the entire viewport */
}