/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

:root {
    --mainColor: #f36727;
    --primary-color: #f36727;
    --secounderyColor: #4a6fa5;
    --secondary-color: #4a6fa5;
    --paragraphColor: #1a1a2e;
    --accent-color: #1a1a2e;
    --white: #f8f9fa;
    --light: #d3d8e0;
    --black: #000000;
    --dark: #1a1a2e;
    --fontSize: 16px;
    --transition: .5s;
}

body {
    padding: 0;
    margin: 0;
    color: #1a1a2e;
}
p{
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
li{
    list-style-type: none !important;
}
.text-light{
    color: var(--white);
}
.bg-primary{
    background-color: var(--primary-color);
    color: var(--white);
}
.bg-secondary{
    background-color: var(--secondary-color);
    color: var(--white);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5{
    font-family: 'Playfair Display', Times New Roman, serif;
    font-weight: 700;
    color: #f36727;
}

a {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    color: var(--blackColor);
    text-decoration: none;
    outline: 0 !important;
}
a.btn, button{
    width: max-content;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--secondary-color) !important;
}
a:hover {
    color: var(--mainColor);
    text-decoration: none;
}

:focus {
    outline: 0 !important;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    color: var(--paragraphColor);
    margin-bottom: 15px;
    line-height: 1.5;
}

p:last-child {
    margin-bottom: 0;
}

.ptb-100 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pt-100 {
    padding-top: 3rem;
}

.pb-100 {
    padding-bottom: 3rem;
}

.ptb-70 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.pt-70 {
    padding-top: 2.5rem;
}

.pb-70 {
    padding-bottom: 2.5rem;
}

.pr-line {
    height: 1px;
    max-width: 100%;
    background-color: #e2e3e4;
}

/*default-btn*/
.default-btn {
    background-color: var(--mainColor);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    padding: 12px 20px;
    color: var(--whiteColor);
    display: inline-block;
    border-radius: 5px;
    position: relative;
    border: none;
    font-size: var(--fontSize);
    font-weight: 300;
    font-size: 18px;
}

.submitBtn {
    background: var(--mainColor);
}

.btn-primary {
    background: var(--mainColor);
    border: 0;
}
.text-primary {
    --bs-text-opacity: 1;
    color: var(--primary-color) !important;
}

.default-btn:hover {
    background-color: var(--mainColor);
    color: var(--whiteColor);
    box-shadow: 0px 0px 0px 2.5px var(--whiteColor) inset, 0px 0px 0px 3px var(--mainColor);
}

.primery-black {
    background-color: var(--blackColor) !important;
}

.primery-black:hover {
    background-color: var(--blackColor) !important;
    box-shadow: 0px 0px 0px 2.5px var(--whiteColor) inset, 0px 0px 0px 3px var(--blackColor);
}

/* Custom Navbar Styling */
.navbar {
    transition: all 0.3s ease;
}

a.nav-link {
    color: #000;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    /*font-weight: 500;*/
    padding: 10px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #f36727 !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.dropdown-item {
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #1a1a2e;
}

.mega-menu {
    background-color: #fff;
    border-radius: 8px;
}

.mega-menu .product-link:hover h6 {
    color: #f36727 !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        background-color: #1a1a2e;
        padding: 10px;
        border-radius: 8px;
    }

    .navbar-nav .nav-link {
        color: #fff !important;
        padding: 8px 15px;
    }

    .navbar-nav .dropdown-menu {
        background-color: #222;
        border: none;
    }

    .navbar-nav .dropdown-item {
        color: #fff;
    }

    .navbar-nav .dropdown-item:hover {
        background-color: #333;
        color: #f36727;
    }
}
    /* Banner and Tab Styling */
    .banner-section {
        position: relative;
    }

    .banner-bg {
        transition: transform 0.3s ease;
    }

   /* .banner-section:hover .banner-bg {
        transform: scale(1.05);
    }*/

    .banner-content h1 {
        letter-spacing: 2px;
        line-height: 1.2;
    }
/* Footer Styling */
.footer-section {
    font-family: 'Georgia', serif;
    /* Classic serif font */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.footer-title {
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-section a:hover {
    color: #f36727 !important;
    text-decoration: underline;
}

.social-links a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f36727;
}

.list-unstyled li {
    transition: color 0.3s ease;
}

.list-unstyled li a {
    display: inline-block;
    padding: 2px 0;
}

.footer-section .py-3 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .footer-section .col-lg-4,
    .footer-section .col-lg-2,
    .footer-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .social-links a {
        margin: 0 10px;
    }
}
/* Topbar Styling */
.topbar {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.topbar .contact-info span {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.topbar .contact-info span:hover {
    color: #f36727;
}

.topbar .bi {
    font-size: 1rem;
    margin-right: 0.3rem;
}

.topbar a.text-white:hover {
    color: #f36727 !important;
}

.topbar .mobile-contact a {
    text-decoration: none;
    font-weight: 500;
    font-family: math;
}

.topbar .mobile-contact .btn-success {
    background-color: #25D366 !important; /* WhatsApp Green */
    border-color: #25D366;
    padding: 0.4rem 0.6rem;
}

.topbar .mobile-contact .btn-success:hover {
    background-color: #1DA851 !important;
    border-color: #1DA851;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .topbar .contact-info,
    .topbar .text-end {
        display: none;
    }

    .topbar .mobile-contact {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

  /* Banner Section Styling */
.banner-section {
    position: relative;
    z-index: 1;
}

.banner-bg {
    background-size: cover;
    height: calc(100vh - 130px);
    background-position: center;
    transition: transform 0.3s ease;
}
/*
.banner-section:hover .banner-bg {
    transform: scale(1.05);
}*/

.banner-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.banner-content h1 {
    letter-spacing: 2px;
    line-height: 1.2;
}

.banner-content .lead {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Responsive Adjustments */
@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content .lead {
        font-size: 1.1rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .date-time {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
}

@media (max-width: 767px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content .lead {
        font-size: 1rem;
    }

}
/* Timeline Styling */
.timeline-section {
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    width: 2px;
    background: #f36727;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    width: 45%;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: 55%;
}

.timeline-item:nth-child(odd) {
    margin-right: 55%;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #f36727;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 4px;
    left: 0;
    transform: translateX(50%);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: auto;
    right: 12px;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-text {
    font-family: 'Roboto', sans-serif;
    color: #4a6fa5;
    line-height: 1.6;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

ul.timelineul li {
    list-style-type: none;
    margin: 12px 0;
    font-size: 20px;
    color: var(--black);
}

button.navbar-toggler {
    background: #fff;
    background: #000;
    box-shadow: 0 0 2px -1px #000;
}

/* blogs  */
.blog-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .section-title {
            margin-bottom: 20px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 20px;
            position: relative;
        }


        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .blog-image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-date {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .blog-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .blog-title a:hover {
            color: var(--primary-color);
        }

        .blog-description {
            color: var(--paragraphColor);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .read-more {
            color: var(--secondary-color);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: var(--primary-color);
            gap: 12px;
        }

        .read-more i {
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .blog-section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .blog-image {
                height: 200px;
            }
        }