
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #fb8c00;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

/* ================================
   CONTAINER
   ================================ */
.body-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* ================================
   SECTIONS
   ================================ */
.body-section section {
    padding: 60px 0;
}

.section-space {
    padding: 60px 0;
}

.bg-light {
    background: #f8f9fa;
}

.bg-secondary {
    background: #f0f0f0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* ================================
   HERO BANNER
   ================================ */
.hero-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-banner h1 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

.hero-banner .subtitle {
    font-size: 19px;
    margin-bottom: 30px;
}

/* Simple Hero (without background) */
.connect {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    color: #fff;
}

.connect-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-filled {
    background: #fb8c00;
    color: #fff;
    height: 50px;
}

.btn-filled:hover {
    background: #e67e00;
    opacity: 1;
}

.btn-custom2 {
    background: #fff;
    color: #667eea;
    padding: 14px 35px;
    font-size: 18px;
}

.btn-custom2:hover {
    background: #f0f0f0;
    opacity: 1;
}

/* ================================
   HEADINGS
   ================================ */
h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    margin-top: 0;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

h5 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.text-diffrent {
    color: #fb8c00;
}

.text-diffrent2 {
    color: #667eea;
}

.divider {
    width: 60px;
    height: 3px;
    background: #fb8c00;
    margin: 15px 0 20px;
}

/* ================================
   TWO COLUMN LAYOUT
   ================================ */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-md-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    padding: 0 15px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.my-auto {
    align-self: center;
}

/* ================================
   CONTENT SECTIONS
   ================================ */
.content-block {
    padding: 60px 0;
}

.content-block p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-block strong {
    font-weight: 600;
    color: #000;
}

.content-block ul {
    list-style: none;
    margin: 20px 0;
}

.content-block ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-block ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #fb8c00;
    font-size: 14px;
}

/* ================================
   CARDS GRID
   ================================ */
.cards-grid {
    padding: 40px 0;
}

.credit {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}

.credit:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.credit .img-absolute {
    margin-bottom: 20px;
}

.credit .img-absolute img {
    max-width: 80px;
    margin: 0 auto;
}

.credit h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.credit a {
    color: #fb8c00;
    font-size: 14px;
    font-weight: 500;
}

/* ================================
   IMAGE PLACEHOLDER
   ================================ */
.image-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    border-radius: 5px;
}

/* ================================
   BANNER WITH OVERLAY
   ================================ */
.banner-overlay {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 20px;
}

.banner-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-overlay .container,
.banner-overlay .row {
    position: relative;
    z-index: 2;
}

.banner-overlay h4 {
    color: #fff;
    margin-bottom: 15px;
}

.banner-overlay p {
    color: #fff;
    line-height: 1.7;
}

.banner-overlay .divider {
    background: #fff;
}

/* ================================
   TWO COLUMN BOXES
   ================================ */
.two-col-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

/* ================================
   QUOTE BOX
   ================================ */
.team-box {
    background: #667eea;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
}

.team-box p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.quote-icon {
    font-size: 24px;
    opacity: 0.5;
    margin: 0 10px;
}

/* ================================
   RATING SECTION
   ================================ */
.star {
    padding: 40px 0;
    background: #f8f9fa;
}

.rating-box {
    text-align: center;
    padding: 30px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 24px;
    color: #ffc107;
}

.rating-info {
    font-size: 16px;
    color: #666;
}

.rating-info strong {
    font-size: 20px;
    color: #333;
}

/* ================================
   DISCLAIMER
   ================================ */
.disclaimer-text {
    background: #f0f0f0;
    padding: 30px 0;
}

.disclaimer-text p {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer-text strong {
    color: #333;
}

/* ================================
   UTILITIES
   ================================ */
.mb0 { margin-bottom: 0; }
.mb16 { margin-bottom: 16px; }
.mb20 { margin-bottom: 20px; }
.mb40 { margin-bottom: 40px; }
.pt0 { padding-top: 0; }
.pb0 { padding-bottom: 0; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 991px) {
    .col-md-3,
    .col-md-4,
    .col-md-6,
    .col-md-8,
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-banner h1 {
        font-size: 32px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .connect-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .hero-banner {
        min-height: 300px;
        padding: 60px 20px;
    }
    
    .hero-banner h1 {
        font-size: 26px;
    }
    
    .two-col-box {
        padding: 25px;
    }
}
.container.grid-xl{
    max-width: 100%;
}
.header-fixed #body-wrapper{
    padding-left: 0;
    padding-right: 0;
}
#body-wrapper .container{
    padding: 2rem 1rem 2rem;
}
body .bg-gray{
    background-color: #002e5a!important;
}
#footer{
    color: #fff;
}
h5{
    color: #fb8c00;
    font-size: 20px;
}
#footer h5, p{
    text-align: left;
}
#footer ul li{
    list-style: none;
    text-align: left;
}