/* Font Faces */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2');
}

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

::-webkit-scrollbar-track {
    background: #333;
}

::-webkit-scrollbar-thumb {
    background: #e88e2e;
}

body {
    font-family: 'Poppins', sans-serif;
}

.line {
    display: block;
    height: 4px;
    width: 60px;
    background-color: #fe7c34;
    transition: width .5s;
}

.section-title:hover .line {
    width: 150px;
}

a {
    text-decoration: none;
}

a:hover {
    color: #000;
}

li {
    list-style: none;
}

hr {
    color: #fff;
}

h1,
h2,
h3,
h4 {
    text-transform: capitalize;
}

.tb-effect,
.lt-effect,
.lt-effect-1,
.tb-effect-1 {
    position: relative;
    z-index: 5;
    border-radius: 2px;
}

.tb-effect::after,
.lt-effect::after,
.lt-effect-1::after,
.tb-effect-1::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.tb-effect-1::after {
    height: 0;
    background-color: #17283d;
    color: #fff;
    transition: height .5s;
    border-radius: 2px;
}

.tb-effect::after {
    height: 0;
    background-color: #fe7c34;
    color: #fff;
    transition: height .5s;
    border-radius: 2px;
}

.tb-effect-1:hover::after {
    height: 100%;
    border-radius: 2px;
}

.tb-effect-1:hover {
    color: #fff;
    border-radius: 2px;
}

.tb-effect:hover::after {
    height: 100%;
    border-radius: 2px;
}

.tb-effect:hover {
    color: #03a22b;
    border-radius: 2px;
}

.lt-effect {
    width: 110px;
}

.lt-effect::after {
    width: 1%;
    background-color: #FF7F11;
    color: #0e2c72;
    transition: width .5s;
}

.lt-effect:hover::after {
    width: 110%;
    color: #fff;
}

.lt-effect-1::after {
    width: 1%;
    background-color: #fe7c34;
    color: #17283d;
    transition: width .5s;
}

.lt-effect-1:hover::after {
    width: 100%;
    color: #fff;
}

.button-hover,
.button-hover-1 {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.button-hover:after,
.button-hover-1:after {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    top: 0%;
    left: 50%;
    opacity: .4;
    transform: translate(-50%, -50%) scale(0, 0);
    transition: transform .5s ease 0s;
    z-index: 0;
    color: #fff;
}

.button-hover:hover:after,
.button-hover-1:hover:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1, 1);
    transition: transform .5s ease 0s;
}

.button-hover {
    background-color: #1a2737;
}

.button-hover:after {
    background-color: #3185e8;
}

.btn {
    position: relative;
    text-align: center;
    z-index: 1;
    font-size: 19px;
    background: #1a2737;
    cursor: pointer;
    color: #fff;
    padding: 8px 40px;
    font-weight: 500;
}

.btn:hover {
    color: #fff;
}

.heading-with-slash {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 28px;
    color: #122d40;
}

.heading-with-slash .slash {
    font-size: 26px;
    font-weight: bold;
    color: #00dd7f;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.heading-with-slash:hover .slash {
    transform: translateY(-3px) rotate(-8deg);
}



.faq-section { background-color: #122d40; border-radius: 1rem; }
.accordion-button { box-shadow: none; transition: background .3s ease; }
.accordion-button:not(.collapsed) { color: #ffc107; }
.accordion-button::after { transition: transform .3s ease; }
.accordion-button:not(.collapsed)::after { transform: rotate(-180deg); }









/* Top bar */
.top-bar {
    background-color: #1c3e56;
    padding: 5px 0;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #e2e2e2;
}

.top-bar a {
    color: #e2e2e2;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #fff;
}

.social-icons a {
    color: #333;
    margin-left: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #0ca684;
    transform: scale(1.2);
}

.yp-icon {
    width: 30px;
    height: 30px;
    background: #1c3e56;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    border-radius: 8px;
    position: relative;
}

.yp-line {
    width: 60%;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

/* Navbar */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0ca684;
}

.navbar-brand span {
    font-weight: bold;
    color: #0ca684;
}

.nav-icons a {
    color: #000;
    font-size: 18px;
    margin-left: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-icons a:hover {
    color: #0ca684;
    transform: scale(1.1);
}

/* Hero Section */
.hero-wrapper {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg-left {
    background-color: #122d40;
    height: 100%;
    min-height: 300px;
}

.hero-bg-right {
    background: url('../garagedoor/garage-doors-commercial.webp') center center / cover no-repeat;
    height: 100%;
    min-height: 300px;
}
.hero-bg-right1 {
    background: url('../garagedoor/location-irving.webp') center center / cover no-repeat;
    height: 100%;
    min-height: 300px;
}
.hero-bg-right2 {
    background: url('../garagedoor/garage-door-commercial.webp') center center / cover no-repeat;
    height: 100%;
    min-height: 300px;
}
.hero-bg-right3 {
    background: url('../garagedoor/residential-garage-door-services.webp') center center / cover no-repeat;
    height: 100%;
    min-height: 300px;
}
.hero-bg-right4 {
    background: url('../garagedoor/garage-door-installation-service.webp') center center / cover no-repeat;
    height: 100%;
    min-height: 300px;
}
.hero-bg-right5 {
    background: url('../garagedoor/emergency-garage-door.webp') center center / cover no-repeat;
    height: 100%;
    min-height: 300px;
}
.hero-bg-right6 {
    background: url('../garagedoor/spring-garage-door.webp') center center / cover no-repeat;
    height: 100%;
    min-height: 300px;
}
.hero-bg-right7 {
    background: url('../garagedoor/opener-garage-door.webp') center center / cover no-repeat;
    height: 100%;
    min-height: 300px;
}
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-right: 10px solid #0ca684;
    transition: 0.3s ease-in-out;
}

.hero-overlay h1 {
    font-size: 32px;
    color: #122d40;
    font-weight: bold;
}

.hero-highlight {
    color: #0ca684;
    font-weight: bold;
    font-size: 42px;
}

.hero-overlay p {
    color: #333;
    margin-top: 15px;
    font-size: 1rem;
}

.btn-custom {
    background-color: #0ca684;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #0cbf6b;
}

.btn-custom a {
    color: white;
    text-decoration: none;
}

.btn-custom a:hover {
    color: black;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .hero-wrapper {
        height: auto;
    }

    .hero-bg-left,
    .hero-bg-right {
        height: 50vh;
    }

    .hero-overlay {
        position: static;
        transform: none;
        padding: 30px 20px;
        margin-top: -20px;
        border-right: 5px solid #0ca684;
        box-shadow: none;
    }

    .hero-overlay h1 {
        font-size: 24px;
    }

    .hero-highlight {
        font-size: 30px;
    }

    .hero-overlay p {
        font-size: 0.95rem;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-overlay {
        left: 50%;
        max-width: 500px;
        padding: 30px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-highlight {
        font-size: 36px;
    }
}

/* services */
.services-section {
    padding: 60px 15px;
    background-color: #fff;
}

.service-box {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

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

.service-icon {
    width: 100px;
    height: 100px;
    border: 2px solid #0ca684;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #0ca684;
    margin: 0 auto 20px;
    transition: transform 0.5s ease;
}

.service-box:hover .service-icon {
    transform: rotate(360deg);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #122d40;
}

.service-desc {
    color: #555;
    font-size: 15px;
}

/* Insulated Garage Doors */
.history-section {
    background: #122d40;
    color: white;
    padding: 60px 0;
}

.history-img {
    position: relative;
    overflow: hidden;
}

.history-img img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}

.stats-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #0ca684;
    color: white;
    padding: 20px;
    text-align: center;
    width: 150px;
    z-index: 3;
}

.stats-box i {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}

.stats-box h3 {
    margin: 0;
    font-weight: bold;
}

.stats-box span {
    font-size: 14px;
}

.history-content h6 {
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 10px;
}

.history-content h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.history-content p {
    color: #fff;
    font-size: 15px;
}

/* Move carousel controls below text */
.carousel-controls {
    margin-top: 20px;
    text-align: left;
}

.carousel-controls button {
    background: none;
    border: none;
}

.carousel-controls .carousel-control-prev-icon,
.carousel-controls .carousel-control-next-icon {
    background-color: #ff6600;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-size: 60% 60%;
}

/* garage / The Safety Inspections */
.garage-section {
    background: url('../garagedoor/garage-door-bg.webp') center center / cover no-repeat;
    color: #fff;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    background-size: 100% 100%;
}

.garage-bg {
    background-color: #122d40e8;
    padding: 80px 0;
}

.garage-section .highlight {
    color: #0ca684;
}

.garage-section .underline {
    text-decoration: underline;
    font-weight: bold;
}

.garage-section .image-box {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-left: 6px solid #0ca684;
}

.garage-section .image-box:hover {
    transform: translateY(-5px);
}

.garage-section .read-btn {
    background-color: #0ca684;
    color: white;
    font-weight: 600;
    border: none;
    padding: 8px 20px;
    transition: 0.3s;
}

.garage-section .read-btn:hover {
    background-color: #0cbf6b;
}

@media (max-width: 991px) {
    .garage-section .text-end {
        text-align: start !important;
    }
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: #fff;
}

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.video-box img {
    width: 100%;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #122d40;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.video-play-btn:hover {
    background-color: #0cbf6b;
    transform: translate(-50%, -50%) scale(1.05);
}

.video-play-btn i {
    background: #122d40;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.shadow-title {
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.07);
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 0;
    white-space: nowrap;
}

.why-heading {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 32px;
}

.why-heading span {
    color: #0ca684;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item i {
    color: #0cbf6b;
    background: #fff3e0;
    border-radius: 50%;
    padding: 8px;
    font-size: 14px;
    margin-right: 10px;
}

.btn-read {
    background: #0ca684;
    color: white;
    padding: 10px 30px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.btn-read:hover {
    background: #122d40;
}

/* What Our Clients Say? */
.section-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0ca684;
}

.section-subtitle {
    color: #888;
    font-size: 0.9rem;
}

.title-line {
    border-left: 4px solid #122d40;
    padding-left: 10px;
}

.client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.testimonial-box {
    background-color: #122d40;
    color: #fff;
    padding: 20px;
    position: relative;
    border-radius: 3px;
}

.testimonial-box::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -20px;
    border-width: 10px;
    border-style: solid;
    border-color: #122d40 transparent transparent transparent;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.review-name {
    font-weight: bold;
}

.review-job {
    font-size: 0.85rem;
    color: #888;
}

/* Garage Door Troubleshooting */
.garage-section {
    min-height: 350px;
}

.bg-left {
    min-height: 350px;
    background-color: #122d40;
}

.bg-right {
    background-color: #f0f0f0;
    min-height: 350px;
    background: url('../garagedoor/garage-door-troubleshooting.webp') center center / cover no-repeat;
    position: relative;
}

.garage-box {
    position: absolute;
    right: -160px;
    top: 50%;
    transform: translateY(-50%);
    background: #0ca684;
    padding: 30px;
    width: 660px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.garage-box h2 {
    font-weight: bold;
    color: #122d40;
    font-size: 1.75rem;
}

.garage-box p {
    color: #122d40;
    font-size: 0.95rem;
}

.garage-box small {
    font-size: 0.75rem;
    color: #888;
}

.btn-learn {
    background-color: #2c2f59;
    color: #fff;
    border: none;
    padding: 10px 22px;
    margin-top: 15px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-learn:hover {
    background-color: #e4936b;
    color: #fff;
}

@media (max-width: 992px) {
    .garage-box {
        position: static;
        transform: none;
        width: 100%;
        margin: 30px 0;
    }

    .bg-left,
    .bg-right {
        min-height: 300px;
    }
}

@media (max-width: 992px) {
    .overlay-box {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
        right: auto;
    }
}

.garage-stats {
    margin: 40px 0;
}

.garage-stat h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.garage-stat p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.garage-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.garage-title span {
    color: #0ca684;
}

.gallery-wrapper {
    background-color: #1a1209;
    padding: 40px 0;
    margin: 60px auto;
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    margin-top: -60px;
    z-index: 2;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.gallery-col-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-center {
    height: 100%;
    display: flex;
    align-items: center;
}

.gallery-center img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

@media (max-width: 991.98px) {
    .gallery-grid {
        flex-direction: column !important;
    }

    .gallery-col-vertical {
        flex-direction: row;
        gap: 15px;
    }

    .gallery-center {
        margin: 20px 0;
    }
}

/* Animated Arrow */
.arrow-down {
    position: absolute;
    top: 44px;
    right: 108px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #ff5e00;
    animation: arrow-bounce 1s infinite;
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* steps-section */
.steps-section {
    padding: 80px 0 100px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    background: url('../garagedoor/bg.webp') center center / cover no-repeat;
}

.steps-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    color: #0ca684;
}

.subtitle {
    position: absolute;
    right: 139px;
    top: 44px;
    font-size: 0.85rem;
    color: #0ca684;
    font-weight: 600;
    border-bottom: 2px solid #0ca684;
    padding-bottom: 2px;
}

.step-icon {
    font-size: 40px;
    color: #122d40;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.step-box:hover .step-icon {
    transform: scale(1.1);
    color: #0ca684;
}

.step-title {
    font-weight: bold;
    font-size: 1rem;
}

.step-desc {
    font-size: 0.9rem;
    color: #333;
    min-height: 60px;
}

.step-label {
    font-size: 0.8rem;
    color: #0ca684;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.step-label::before {
    content: "";
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: #0ca684;
    border-radius: 50%;
    z-index: 3;
}

.steps-line {
    position: absolute;
    height: 2px;
    background-color: #ddd;
    width: 80%;
    left: 10%;
    top: calc(100% - 100px);
    z-index: 1;
}

@media (max-width: 767.98px) {
    .steps-section h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    .subtitle {
        position: static;
        text-align: center;
        margin-top: 10px;
        display: block;
    }

    .steps-line {
        display: none;
    }

    .step-desc {
        min-height: auto;
    }

    .step-label {
        margin-top: 40px;
    }
}

/* Section Wrapper */
.garage-hero-section {
    background-color: #1c1c35;
    padding: 0;
}

.garage-img-col {
    height: 100%;
    min-height: 400px;
}

.garage-img {
    height: 100%;
    min-height: 400px;
    background: url('https://via.placeholder.com/600x400?text=Garage+Door') center center/cover no-repeat;
}

.garage-text-col {
    background-color: #e6e6e6;
    padding: 60px 40px;
}

.garage-content-box {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-in-out;
    border-left: 10px solid #0ca684;
}

.garage-content-box h2 {
    color: #1c1c35;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.garage-content-box p {
    color: #333;
    font-size: 16px;
    margin-bottom: 25px;
}

.garage-btn {
    background-color: #0ca684;
    color: white;
    padding: 12px 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.garage-btn:hover {
    background-color: #0cbf6b;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .garage-text-col,
    .garage-img-col {
        min-height: 300px;
    }

    .garage-content-box {
        padding: 25px;
    }
}

.service-btn {

    width: 152px;
    margin: 7px;
    font-size: 15px;
    padding: 10px;
    cursor: text;
    margin-top: 0;


}

.btn1 {

    color: #fff;
    font-size: 12px;
    border-radius: 0;
    float: left;
    border: 3px solid #0b1c28;
    border-radius: 7px;
    text-align: center;
    background-color: #0ca684;

}

.btn1 a {
    color: #fff;
}

.btn1:hover {
    background-color: #122d40;
    color: #fff;
}

/* service */
.garage-service-list {
    list-style: none;
    padding-left: 0;
}

.garage-service-list li {
    background: #ffffff;
    border-left: 4px solid #0ca684;
    padding: 10px 15px;
    margin-bottom: 10px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    font-weight: 500;
    color: #333;
}

.garage-service-list li:hover {
    background-color: #f4fdfc;
    transform: translateX(5px);
    color: #0ca684;
    border-left-color: #0cbf6b;
}

.promo-section {
    background-color: #122d40;
    padding: 80px 0;
    position: relative;
}

.promo-img {
    max-width: 100%;
    height: auto;
    border: 5px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.promo-box {
    background-color: #122d40;
    padding: 30px;
    color: white;
}

.promo-title {
    font-weight: 700;
    font-size: 38px;
    color: #0ca684;
}

.promo-button {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid white;
    transition: 0.3s;
}

.promo-button:hover {
    color: #ffc107;
    border-bottom-color: #ffc107;
}

.section-label {
    font-size: 16px;
    color: #fff;
    margin-top: 30px;
    display: inline-block;
    border-bottom: 2px solid #fff;
}

.left-box {
    margin-left: -33px;
}

.right-box {
    margin-left: -313px;
}

/* Form */
.form {
    margin-top: -100px;
    margin-bottom: 100px;
    background-color: #0ca684;
}

form label {
    opacity: 0;
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0
}

.spam {
    display: none;
}

input {
    width: 23%;
    float: left;
    margin-right: 2%;
    height: 1px;
    margin-top: 0%;
    padding: 2%;
    border-bottom: #1c9ebd 3px solid;
    color: #1a2737;
    font-size: 14px;
    box-shadow: 3px 1px 8px #0000005e;
}

textarea.form-control {
    width: 73%;
    float: left;
    margin-right: 2%;
    height: 85px;
    margin-top: 2%;
    padding: 1%;
    border-bottom: #fff 3px solid;
    color: #42648b;
    font-size: 14px;
    box-shadow: 3px 1px 8px #0000005e;
}

.submit {
    width: 22%;
    float: left;
    height: 50px;
    margin-top: 3%;
    padding: 1%;
    background-color: #0d2235;
    color: #fff;
    font-size: 17px;
    margin-right: 3%;
    box-shadow: 3px 1px 8px #0000005e;
}

/* Main Footer Background */
footer {
    background-color: #0d2235;
    color: #fff;
}

.footer-col {
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #ffffff42;
}

.footer-col:hover {
    transform: translateY(-5px);
}

.footer-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00dd7f;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00dd7f;
}

.footer-bottom {
    padding: 15px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}



@media (max-width: 992px) {
    .right-box {
        margin-left: 0;
    }
}