/* Incentit Custom Styles - Bootstrap-free */

/* CSS Variables */
:root {
    --primary-color: #788895;
    --secondary-color: #f06e3e;
    --text-color: #727272;
    --heading-color: #788895;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray: #7E8299;
    --gray-dark: #3F4254;
    --gray-full-dark: #525252;
    
    --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto Condensed', sans-serif;
    
    --container-width: 1140px;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--heading-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.main {
    min-height: 60vh;
}

/* Position Utilities */
.position-relative { position: relative; }
.position-fixed { position: fixed; }
.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.z-9 { z-index: 9; }
 
/* Header & Navigation */
.header {
    position: relative;
    z-index: 9;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0px 8px 28px -6px rgba(27, 80, 104, 0.06), 0px 18px 88px -4px rgba(27, 80, 104, 0.08);
}

.navbar-expand-lg {
    flex-wrap: wrap;
}

.navbar-transparent {
    background-color: transparent;
}

.navbar-dark {
    color: var(--white);
}

.navbar-brand {
    display: inline-block;
    padding: 0.25rem 0;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-brand-dark {
    display: block;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-full-dark);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link .inner-text {
    position: relative;
}

.nav-link .menu-active {
    color: var(--secondary-color);
}

/* Navbar light theme */
.navbar-light .nav-link {
    color: #333 !important;
}

.navbar-light .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--gray-full-dark) !important;
}

.navbar-light .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler:hover,
.navbar-light .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown styles */
.dropdown-item:active {
    background-color: var(--secondary-color);
}

/* Mobile Navigation Toggle */
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: box-shadow 0.15s ease-in-out;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* Header Custom Elements */
.desk-ph {
    display: none; 
    width: 100%;
} 

.mobile-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.mobile-icon .log {
    display: inline-flex;
}

.mobile-icon .phone {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.mobile-icon .phone:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none; 
    padding: 0.6rem 1.25rem;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 0.3rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(120, 136, 149, 0.25);
}

.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #667788;
    border-color: #667788;
}

.btn-secondary {
    color: var(--white);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #e05d2d;
    border-color: #e05d2d;
}

/* Headroom (Scroll Effects) */
.headroom {
    will-change: transform;
    transition: transform 200ms linear, background-color 300ms ease;
}

.headroom--pinned {
    transform: translateY(0%);
}

.headroom--unpinned {
    transform: translateY(-100%);
}

.headroom--not-top {
    background-color: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--gray-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer a {
    color: var(--white);
}

.footer a:hover {
    color: var(--secondary-color);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    display: block;
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray-dark);
    background-color: var(--white);
    border: 1px solid #E4E6EF;
    border-radius: 0.3rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input:focus,
textarea:focus,
select:focus {
    outline: 0;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(120, 136, 149, 0.25);
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
 
.fixed-top {
    top: auto;
}
.bg-gradient-primary {
    background: linear-gradient(85deg, rgba(0, 0, 0, 0.8) 30%, rgba(120, 136, 149, 0.9) 100%) !important;
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* Tablet and below (max-width: 768px) */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* Desktop and below (max-width: 991px) */
@media (max-width: 991px) {
    .d-lg-none {
        display: block !important;
    }
    
    .navbar-collapse {
        display: none;
    }
    
    .navbar-collapse.show {
        display: block;
    }
}

/* Desktop and above (min-width: 992px) */
@media (min-width: 992px) {
    .d-lg-none {
        display: block;
    }
    
    .navbar-expand-lg {
        flex-wrap: nowrap;
    }
    
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-direction: column;
        flex-basis: auto;
    }
    
    .navbar-nav {
        flex-direction: row;
    }
    
    .desk-ph {
        display: flex;
        align-items: center;
        margin-right: 1rem;
    }
    
    .d-lg-none {
        display: none !important;
    }
}

/* ============================================
   HERO BANNER
   ============================================ */

.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    text-align: center;
    margin-top: 70px;
}

.hero-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
}

.hero-banner p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(240, 110, 62, 0.3);
    color: var(--white);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    border: 2px solid var(--white);
    transition: transform 0.2s, background 0.2s;
}

.hero-cta-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

 
.feature_card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
}
/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 80px 20px;
    background: var(--white);
}

.features-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--heading-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

.section-padding{
    padding: 90px 0 ;
}

.inner-banner-section{
    padding: 100px 0 ;
    margin-top: 130px;
}
.box{ 
    border-radius: 10px;
    background-color: #fff;
    padding: 20px 14px;
    border: 1px solid #e2e2e2;
    margin-bottom: 35px;
}
.phone-no{
    font-size: 1.535rem;
    font-weight: 400;
}
#which-program{
    .box{
        h3{
            font-size: 1.234rem; 
            font-weight: 400;
        }
    }
    .icon-shape{
        height: 110px; 
        
    }
}
/* ============================================
   DEVELOPMENT NOTICE
   ============================================ */

.dev-notice-section {
    padding: 40px 20px;
    background: var(--gray-light);
}

.dev-notice-box {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dev-notice-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.dev-notice-box p {
    color: var(--gray);
    margin-bottom: 10px;
}

.dev-notice-box ol {
    color: var(--gray);
    line-height: 1.8;
    margin-left: 20px;
}

.dev-notice-box code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE - HERO & FEATURES
   ============================================ */

@media (max-width: 768px) {
    .hero-banner {
        padding: 100px 20px 60px;
        margin-top: 60px;
    }
    
    .hero-content-wrap {
        padding: 50px 20px;
    }
    
    .hero-banner h1 {
        font-size: 32px;
    }
    
    .hero-banner p {
        font-size: 18px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .features-section {
        padding: 60px 20px;
    }
    
    .features-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .dev-notice-box {
        padding: 30px 20px;
    }
}

/* Mobile Menu Animation */
/* Only apply mobile menu styles on mobile devices */
@media (max-width: 991px) {
  .mobile-menu {
    max-height: 0 !important;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: top;
    transform: translateY(-10px);
    opacity: 0;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-top: 0;
    display: block !important;
    box-shadow: none;
  }

  .mobile-menu.show {
    max-height: 500px !important;
    transform: translateY(0);
    opacity: 1; 
    padding: 24px;
    border-radius: 4px;
    margin-top: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }

  .mobile-menu.collapsing {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
}

/* Desktop - ensure menu is always visible */
@media (min-width: 992px) {
  .mobile-menu {
    display: flex !important;
    max-height: none !important;
    opacity: 1 !important;
    transform: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin-top: 0 !important;
    overflow: visible !important;
  }
}

.contact-box{
    min-height: 157px; 
}

/* Fix for navbar visibility */
.navbar-nav {
    display: flex !important;
}

 

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }
}

#heroBannerCarousel { 
    overflow: hidden;
}

#heroBannerCarousel .carousel-inner,
#heroBannerCarousel .carousel-item,
#heroBannerCarousel .hero-slide {
    min-height: 620px;
}

#heroBannerCarousel .carousel-item {
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: opacity;
}

#heroBannerCarousel .carousel-item.active,
#heroBannerCarousel .carousel-item-next.carousel-item-left,
#heroBannerCarousel .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

#heroBannerCarousel .active.carousel-item-right,
#heroBannerCarousel .active.carousel-item-left {
    opacity: 0;
}

#heroBannerCarousel .carousel-item-next,
#heroBannerCarousel .carousel-item-prev,
#heroBannerCarousel .carousel-item.active,
#heroBannerCarousel .carousel-item-left,
#heroBannerCarousel .carousel-item-right {
    transform: translate3d(0, 0, 0);
}

#heroBannerCarousel .hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
}

#heroBannerCarousel .hero-slide .container {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 70px 0 30px;
    margin-top: 70px;
}

#heroBannerCarousel .hero-content-wrap {
    max-width: 760px;
    transform: translateZ(0);
} 
 
#heroBannerCarousel .hero-content-wrap h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 1rem;
    min-height: 100px;
}

#heroBannerCarousel .hero-content-wrap .lead {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.6;
}

#heroBannerCarousel .hero-content-wrap .action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
}

#heroBannerCarousel .hero-content-wrap .action-btns .btn {
    margin: 0 !important;
}

#heroBannerCarousel .hero-content-wrap > div:first-child {
    font-size: 0.9rem !important;
}

#heroBannerCarousel .hero-content-wrap > div:last-child {
    font-size: 0.95rem !important;
    line-height: 1.5;
}

#heroBannerCarousel .carousel-control-prev,
#heroBannerCarousel .carousel-control-next {
    width: 7%;
}

#heroBannerCarousel .carousel-control-prev-icon,
#heroBannerCarousel .carousel-control-next-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%; 
    background-size: 60% 60%;
}

#heroBannerCarousel .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M10.5 1.5L4.5 8l6 6.5' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}

#heroBannerCarousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M5.5 1.5L11.5 8l-6 6.5' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
 

#heroBannerCarousel .carousel-indicators {
    margin-bottom: 1.5rem;
}

#heroBannerCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #788895;
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 1;
}

#heroBannerCarousel .carousel-indicators button.active {
    background-color: #f06e3e;
    border-color: #f06e3e;
}

@media (max-width: 1199.98px) {
    #heroBannerCarousel .carousel-inner,
    #heroBannerCarousel .carousel-item,
    #heroBannerCarousel .hero-slide,
    #heroBannerCarousel .hero-slide .container {
        min-height: 580px;
    }

    #heroBannerCarousel .hero-slide .container {
        padding: 115px 0 95px;
    }
}

@media (max-width: 991.98px) {
    #heroBannerCarousel .carousel-inner,
    #heroBannerCarousel .carousel-item,
    #heroBannerCarousel .hero-slide,
    #heroBannerCarousel .hero-slide .container {
        min-height: 540px;
    }

    #heroBannerCarousel .hero-slide .container {
        padding: 100px 0 85px;
    }

    #heroBannerCarousel .carousel-control-prev,
    #heroBannerCarousel .carousel-control-next {
        width: 10%;
    }
}

@media (max-width: 767.98px) {
    #heroBannerCarousel .carousel-inner,
    #heroBannerCarousel .carousel-item,
    #heroBannerCarousel .hero-slide,
    #heroBannerCarousel .hero-slide .container {
        min-height: 500px;
    }

    #heroBannerCarousel .hero-slide .container {
        padding: 86px 0 72px;
    }

    #heroBannerCarousel .hero-content-wrap h1,
    #heroBannerCarousel .hero-content-wrap h2 {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
        line-height: 1.2;
    }

    #heroBannerCarousel .hero-content-wrap .lead {
        font-size: 1rem;
        line-height: 1.5;
    }

    #heroBannerCarousel .hero-content-wrap .action-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    #heroBannerCarousel .hero-content-wrap .action-btns .btn {
        width: 100%;
        max-width: 260px;
    }

    #heroBannerCarousel .carousel-control-prev,
    #heroBannerCarousel .carousel-control-next {
        display: none;
    }

    .inner-banner-section {
        margin-top: 80px;
    }
}

@media (max-width: 575.98px) {
    #heroBannerCarousel .hero-slide .container {
        min-height: 470px;
        padding: 74px 0 62px;
    }

    #heroBannerCarousel .hero-content-wrap > div:first-child,
    #heroBannerCarousel .hero-content-wrap > div:last-child {
        font-size: 0.85rem !important;
    }

    #heroBannerCarousel .carousel-indicators {
        margin-bottom: 0.8rem;
    }
    .feature_card h5{
       font-size: 1.1rem;
    }
}

:not(.btn-check)+.btn:active {
  color: var(--bs-white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}


