/* Fix mobile menu */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block !important;
    background: none;
    border: 2px solid #ddd;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .main-navigation {
    position: fixed !important;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .main-navigation.active {
    display: block !important;
  }
  
  body.menu-open {
    overflow: hidden;
  }
}
 //  Below CTA GET FREE TEM 
/* ==========================================================================
   SMALL CTA BOX ABOVE FOOTER
   Add this to your style.css file
   ========================================================================== */

/* CTA Box Section */
.cta-box-section {
    padding: 60px 0 40px;
    background: #f5f7fa;
}

/* CTA Box - Choose ONE layout option below */

/* OPTION 1: LEFT ALIGNED (Default) */
.cta-box {
    max-width: 500px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* OPTION 2: CENTER ALIGNED (Uncomment to use) */
/*
.cta-box {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
*/

/* CTA Box Content */
.cta-box-content {
    text-align: center;
}

.cta-box-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.btn-cta-small {
    display: inline-block;
    padding: 14px 30px;
    background: #ffffff;
    color: #1a2332;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-small:hover {
    background: #1a2332;
    color: #ffffff;
    border-color: #1a2332;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

/* Main Footer */
.site-footer {
    background: #1a2332;
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
}

/* Footer Widgets */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    color: #b8c5d6;
}

.footer-column h2,
.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffa500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-column p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 10px 0;
    color: #b8c5d6;
    font-size: 14px;
}

.footer-contact a {
    color: #ffa500;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffb733;
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .cta-box-section {
        padding: 40px 20px;
    }
    
    .cta-box {
        max-width: 100%;
        padding: 30px 25px;
    }
    
    .cta-box-title {
        font-size: 19px;
    }
    
    .btn-cta-small {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .site-footer {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 480px) {
    .cta-box {
        padding: 25px 20px;
    }
    
    .cta-box-title {
        font-size: 17px;
    }
    
    .btn-cta-small {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* ==========================================================================
   PAGE STRUCTURE
   ========================================================================== */

#page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

body {
    overflow-x: hidden;
}

/* ==========================================================================
   SIZE VARIATIONS (Optional - Choose ONE)
   ========================================================================== */

/* EXTRA SMALL CTA BOX (Uncomment to use) */
/*
.cta-box {
    max-width: 350px;
    padding: 25px 30px;
}

.cta-box-title {
    font-size: 18px;
}

.btn-cta-small {
    padding: 10px 20px;
    font-size: 14px;
}
*/

/* MEDIUM CTA BOX (Uncomment to use) */
/*
.cta-box {
    max-width: 600px;
    padding: 40px 50px;
}

.cta-box-title {
    font-size: 24px;
}

.btn-cta-small {
    padding: 16px 35px;
    font-size: 17px;
}
*/

/* LARGE CTA BOX (Uncomment to use) */
/*
.cta-box {
    max-width: 800px;
    padding: 50px 60px;
}

.cta-box-title {
    font-size: 28px;
}

.btn-cta-small {
    padding: 18px 40px;
    font-size: 18px;
}
*/
 // Below is footer style 
/* ==========================================================================
   SMALL CTA BOX ABOVE FOOTER
   Add this to your style.css file
   ========================================================================== */

/* CTA Box Section */
.cta-box-section {
    padding: 60px 0 40px;
    background: #f5f7fa;
}

/* CTA Box - Choose ONE layout option below */

/* OPTION 1: LEFT ALIGNED (Default) */
.cta-box {
    max-width: 500px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* OPTION 2: CENTER ALIGNED (Uncomment to use) */
/*
.cta-box {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
*/

/* CTA Box Content */
.cta-box-content {
    text-align: center;
}

.cta-box-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.btn-cta-small {
    display: inline-block;
    padding: 14px 30px;
    background: #ffffff;
    color: #1a2332;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-small:hover {
    background: #1a2332;
    color: #ffffff;
    border-color: #1a2332;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

/* Main Footer */
.site-footer {
    background: #1a2332;
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
}

/* Footer Widgets */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    color: #b8c5d6;
}

.footer-column h2,
.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffa500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-column p {
    color: #b8c5d6;
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER BOTTOM - COMPANY DETAILS
   ========================================================================== */

.footer-bottom {
    border-top: 2px solid rgba(255, 165, 0, 0.3);
    padding-top: 30px;
    text-align: center;
}

/* Company Information */
.company-info {
    margin-bottom: 20px;
}

.company-info .copyright {
    color: #ffffff;
    font-size: 15px;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.company-info strong {
    color: #ffa500;
    font-weight: 700;
}

/* Contact Details */
.contact-details {
    margin-top: 15px;
}

.contact-details p {
    margin: 8px 0;
    color: #b8c5d6;
    font-size: 14px;
    line-height: 1.8;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 8px;
}

.contact-icon {
    font-size: 16px;
}

.contact-text {
    color: #b8c5d6;
}

.contact-details a {
    color: #ffa500;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ffb733;
    text-decoration: underline;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    font-weight: 300;
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 992px) {
    .contact-item {
        margin: 0 5px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .cta-box-section {
        padding: 40px 20px;
    }
    
    .cta-box {
        max-width: 100%;
        padding: 30px 25px;
    }
    
    .cta-box-title {
        font-size: 19px;
    }
    
    .btn-cta-small {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .site-footer {
        padding: 40px 20px 25px;
    }
    
    .footer-bottom {
        padding-top: 25px;
    }
    
    /* Stack contact details vertically on mobile */
    .contact-details p {
        margin: 12px 0;
        font-size: 13px;
    }
    
    .contact-item {
        display: block;
        margin: 8px 0;
    }
    
    .separator {
        display: none; /* Hide separators on mobile */
    }
}

@media (max-width: 480px) {
    .cta-box {
        padding: 25px 20px;
    }
    
    .cta-box-title {
        font-size: 17px;
    }
    
    .btn-cta-small {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .company-info .copyright {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .contact-details p {
        font-size: 12px;
    }
    
    .contact-icon {
        font-size: 14px;
    }
}

/* ==========================================================================
   PAGE STRUCTURE
   ========================================================================== */

#page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

body {
    overflow-x: hidden;
}

/* ==========================================================================
   ALTERNATIVE LAYOUT - TWO COLUMN FOOTER BOTTOM (Optional)
   Uncomment to use side-by-side layout on desktop
   ========================================================================== */

/*
@media (min-width: 992px) {
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .company-info {
        text-align: left;
    }
    
    .contact-details {
        text-align: right;
    }
}
*/

/// Footer styel 
/* Force menu to fit within screen */
.main-navigation {
    width: 100% !important;
    max-width: calc(100vw - 250px) !important;
    overflow: hidden !important;
}

.main-navigation ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-navigation ul li a {
    padding: 8px 8px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
}

/* Push entire header content left */
.site-header .header-inner,
.site-header .site-branding-container,
.site-header > div {
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin: 0 !important;
}

/* Hide sub-menus, show on hover */
.main-navigation ul ul {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    min-width: 180px !important;
    z-index: 99999 !important;
    padding: 5px 0 !important;
    flex-direction: column !important;
}

.main-navigation ul li:hover > ul {
    display: block !important;
}

.main-navigation ul ul li {
    display: block !important;
    width: 100% !important;
}

.main-navigation ul ul li a {
    padding: 8px 16px !important;
    color: #333 !important;
    display: block !important;
}

.main-navigation ul ul li a:hover {
    background: #f0f4ff !important;
}

.main-navigation ul li {
    position: relative !important;
}

body {
    overflow-x: hidden !important;
}
   

 