/* =============================
   RESET & BODY
============================= */
body {
    margin: 0;
}

/* =============================
   HEADER
============================= */
.header {
    position: relative;
    z-index: 9999;
}

/* Container */
.container {
    width: 90%;          /* Creates left-right space */
    margin: auto;        /* Keeps it centered */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 75px;
    width: auto;
}

/* Menu */
.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    font-family: Arial, sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

.menu > li {
    position: relative;
    cursor: pointer;
    padding: 10px 5px;
}

/* Submenu */
.submenu {
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    width: 180px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 99999; /* ensures submenu is above slider */
}

.submenu li {
    padding: 10px 20px;
    cursor: pointer;
}

/* Sub-submenu */
.submenu .more {
    position: relative;
}

.subsubmenu {
    position: absolute;
    top: 0;
    left: 180px;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    width: 170px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 99999;
}

/* Hover Logic */
.menu > li:hover .submenu {
    display: block;
}

.submenu li:hover .subsubmenu {
    display: block;
}

/* Menu Hover Effects */
.menu > li:hover {
    color: #0056c7;
    transition: 0.3s;
}

.submenu li:hover {
    background: #f0f4ff;
    color: #0056c7;
    transition: 0.3s;
}

.subsubmenu li:hover {
    background: #eef3ff;
    color: #0056c7;
    transition: 0.3s;
}

/* =============================
   BANNER / SLIDER
============================= */
.banner-section {
    width: 100%;
    height: 80vh;
    position: relative;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    animation: fadeSlide 15s infinite;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 25px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #e05500;
}

/* Fade Animation */
@keyframes fadeSlide {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    30%  { opacity: 1; }
    40%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Slide Timings */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }


/* =============================
   TICKER SECTION
============================= */
.ticker-section {
    padding: 40px 0;
    background: #007BFF;
    text-align: center;
}

.ticker-heading-box {
    margin-bottom: 25px;
}

.ticker-title {
    font-size: 35px;
    margin: 0;
    font-weight: bold;
    color: white;
}

.ticker-subtitle {
    font-size: 24px;
    margin-top: 8px;
    color: white;
}

.ticker-container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    padding: 15px 0;
}

.ticker-track {
    display: inline-block;
    animation: slide 18s linear infinite;
}

.ticker-track span {
    display: inline-block;
    background: #ffffff;
    padding: 15px 30px;
    margin: 0 18px;
    border-radius: 25px;
    font-size: 20px;
    border: 1px solid #bbb;
    font-weight: 500;
}

@keyframes slide {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* =============================
   WHY US SECTION
============================= */


.why-us {
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
}

.main-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* --- All 6 boxes in one row, no wrapping --- */
.why-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: nowrap;   /* force 1 line */
    width: 100%;
}

.why-box {
    width: 230px; /* fixed width to fit all 6 in one line */
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: 0.3s ease;
}

.why-box:hover {
    transform: translateY(-5px);
}

.why-box button {
    padding: 8px 16px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.why-box button:hover {
    background: #0056c7;
}

.icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 15px;
}

.why-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.why-box p {
    color: #666;
    font-size: 15px;
}

/* ============================= */
/* WHY US SECTION - MOBILE FIX    */
/* ============================= */
@media (max-width: 992px) {
    .why-row {
        flex-wrap: wrap;        /* allow wrapping */
        gap: 20px;
    }

    .why-box {
        width: calc(50% - 20px); /* 2 boxes per row */
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .why-box {
        width: 100%;             /* 1 box per row on small screens */
        margin-bottom: 15px;
    }
}


/* =============================
   FOOTER
============================= */
.footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 120px;
    text-align: left;
    flex-wrap: wrap;
}

.footer-block h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-block ul {
    list-style: none;
    padding: 0;
}

.footer-block ul li {
    margin-bottom: 8px;
}

.footer-block ul li a {
    color: #ddd;
    text-decoration: none;
}

.footer-block ul li a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #666;
}

.copy {
    font-size: 15px;
    color: #bbb;
}



