/* Reset & Base */
body {
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', Raleway, Merriweather, sans-serif;
    color: #ff3333;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-6 {
    width: 50%;
}

.col-lg-3 {
    width: 25%;
}

.col-lg-6 {
    width: 50%;
}

.col-md-12 {
    width: 100%;
}

/* Padding Classes */
.pt_40 {
    padding-top: 40px;
}

.pb_70 {
    padding-bottom: 70px;
}

.mt_30 {
    margin-top: 30px;
}

.mt_50 {
    margin-top: 50px;
}

/* Counter Section */
.counter-page {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.counter-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ffd700;
}

.counter {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.counter-item h4 {
    font-size: 18px;
    margin: 0;
}

/* Feature Section */
.about-area {
    padding: 60px 0;
    background: #f8f8f8;
}

.main-headline h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.main-headline h1 span {
    color: #0056b3;
}

.main-headline p {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: auto;
    color: #555;
}

/* Image + Video Section */
.about-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.video-section-home .video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    font-size: 30px;
    color: #333;
    transition: background-color 0.3s;
}

.video-section-home .video-button:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Accordion Styles */
.feature-accordion {
    margin-top: 30px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    background-color: #fff;
}

.faq-button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
}

.faq-button:hover {
    background-color: #f0f0f0;
}

.faq-body {
    padding: 15px 20px;
    font-size: 15px;
    line-height: 1.6;
}

/* Utility */
.ov_hd {
    justify-content: center;
}

/* Animations (using wow.js or similar) */
.wow {
    visibility: hidden;
}

.wow.fadeInDown {
    animation: fadeInDown 0.8s ease forwards;
}

.wow.fadeInLeft {
    animation: fadeInLeft 0.8s ease forwards;
}

.wow.fadeInRight {
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .col-lg-3, .col-lg-6 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-headline h1 {
        font-size: 28px;
    }

    .video-section-home .video-button {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 24px;
    }
}



/* ===============================
   Subscribe Area
================================== */
.subscribe-area {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.subscribe-form {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
}

.subscribe-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.subscribe-form .form-label {
    font-weight: 600;
    color: #fff;
    display: block;
    text-align: left;
}

.subscribe-form .form-control {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 16px;
}

.subscribe-form .btn-primary {
    padding: 12px 30px;
    border-radius: 5px;
    background-color: #0056b3;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-form .btn-primary:hover {
    background-color: #003c7e;
}

/* ===============================
   Brand Area
================================== */
.brand-area {
    padding: 50px 0;
    background-color: #f7f7f7;
}

.brand-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.brand-carousel a {
    display: inline-block;
    flex-shrink: 0;
    width: 150px;
}

.brand-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-item img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ===============================
   Footer Area
================================== */
.main-footer {
    background-color: #1b1b1b;
    color: #d1d1d1;
    font-size: 15px;
    position: relative;
    top: 200px;
}

.top-footer {
    padding: 50px 0;
}

.footer-address .lost {
    list-style: none;
    padding: 0;
}

.footer-address li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-address i {
    font-size: 20px;
    color: #ffd700;
    margin-right: 15px;
}

.footer-address h5 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #fff;
}

.footer-address p {
    margin: 0;
    font-size: 15px;
    color: #ccc;
}

/* Footer Widget Area */
.footer-area {
    padding: 50px 0;
    background-size: cover;
    background-position: center;
}

.footer-item {
    margin-bottom: 30px;
}

.footer-item h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-item .lost {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item .lost li {
    margin-bottom: 10px;
}

.footer-item .lost li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-item .lost li a:hover {
    color: #ffd700;
}

.footer-item .sm_fbtn {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #ffd700;
    text-decoration: none;
}

.footer-item .sm_fbtn:hover {
    text-decoration: underline;
}

/* Recent Posts */
.footer-recent-item {
    display: flex;
    margin-bottom: 20px;
}

.footer-recent-photo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
}

.footer-recent-text {
    flex: 1;
}

.footer-recent-text a {
    color: #ccc;
    font-size: 14px;
    display: block;
    text-decoration: none;
}

.footer-recent-text a:hover {
    color: #ffd700;
}

.footer-post-date {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

/* Copyright Area */
.footer-copyrignt {
    padding: 20px 0;
    background-color: #111;
    font-size: 14px;
}

.copyright-text p {
    margin: 0;
}

.footer-social {
    text-align: right;
}

.footer-social a {
    color: #ccc;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-social {
        text-align: center;
        margin-top: 15px;
    }

    .copyright-text {
        text-align: center;
        margin-bottom: 10px;
    }

    .brand-carousel {
        flex-wrap: nowrap;
    }

    .subscribe-form {
        padding: 30px 20px;
    }
}

