/* VARIABLES */
:root{
--theme-color: #ed9328;
--light-bg-color: #ed93281c;
--text-color: #0f172a;
--bg-color: #f8fafc;
--card-bg-color: #ffffff;
--border-color: rgba(15,23,42,0.06);
--shadow-color: rgba(15,23,42,0.08);  
}
  
body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* CUSTOM STYLESHEET */

a,a:hover{
    text-decoration: none !important;
}

.section-padding{
    padding: 60px 0;
}

@media (max-width: 575.98px){
    .section-padding {
        padding: 40px 0;
    }
}

@media (min-width: 576px) and (max-width: 767.98px){
    .section-padding {
        padding: 60px 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px){
    .section-padding {
        padding: 80px 0;
    }
}

@media (min-width: 1025px){
    .section-padding {
        padding: 120px 0;
    }
}
.text-theme{
    color: var(--theme-color);
}
.light-bg{
    background: var(--light-bg-color);
}
.cs-btn {
    background: var(--theme-color);
    border: 0;
    border-radius: 35px;
    padding: 15px 20px;
    color: var(--card-bg-color);
}

.form-control,.form-select{
    border-radius: 20px !important;
    padding: 10px 15px;
}

.form-control:focus, .form-select:focus{
    border-color: var(--theme-color);
    box-shadow: 0 0 0 0.2rem rgba(237, 147, 40, 0.15);
}

/* Banner / hero styles */

.hero-banner{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 750px;
    color: #fff;
}
.hero-banner h1 { letter-spacing: 1px; }


.hero-banner .lead { opacity: .95; }
.hero-cta .btn-primary{ background-color: #0d6efd; border: none; }

.navbar-nav .nav-link.active{
    color: var(--theme-color);
}

@media (max-width: 767.98px){
    .hero-banner{ 
        height: 500px;
        padding: 3rem 0; 
        text-align: center; 
    }
    .hero-banner h1 { font-size: 1.8rem; }
    .hero-banner .lead { font-size: 1rem; }
}

@media (min-width: 768px) and (max-width: 1024px){
    .hero-banner{ height: 550px; }
    .hero-banner h1 { font-size: 2.5rem; }
}

@media (min-width: 1025px){
    .hero-banner h1 { font-size: 3rem; }
}


/* Publish cards */
.publish-card{
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.publish-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.publish-icon{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Why Choose Us cards */
.choose-card{
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
}
.choose-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(16,24,40,0.08);
}

.choose-icon{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: #fef4e9;
}

/* small screens tweak */
@media (max-width: 575.98px){
    .publish-icon{ width:56px; height:56px; font-size:24px; }
    .publish-card{ padding: 1rem; }
    .choose-icon{ width:56px; height:56px; font-size:22px; }
    .choose-card{ padding: 1rem; }
}

@media (min-width: 576px) and (max-width: 768px){
    .publish-card, .choose-card { padding: 1.2rem; }
}

@media (min-width: 769px){
    .section-padding { padding: 120px 0; }
}

/* Testimonials */
.testimonial-quote{
    color: #111827;
    margin-bottom: .75rem;
}
.testimonial-author{
    color: #0f172a;
}
.carousel-indicators{
    bottom: -30px;
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.carousel-indicators .active {
    background-color: var(--theme-color);
    width: 14px;
    height: 14px;
}
.carousel-indicators [data-bs-target] {
    background-color: var(--theme-color);
}
.carousel-inner .carousel-item {
    padding: 1.5rem 0;
}

/* Contact styles */

.contact-form .form-control:focus{
    box-shadow: 0 0 0 0.15rem rgba(13,110,253,0.12);
    border-color: var(--theme-color);
}

@media (max-width: 767.98px){
    .contact-card, .contact-form{ padding: 1rem; }
}

@media (min-width: 768px){
    .contact-card, .contact-form{ padding: 1.5rem; }
}

/* Footer styles */
.site-footer{
    background: var(--theme-color);
    color: var(--card-bg-color);
}
.site-footer .footer-nav a{
    color: #475569;
    text-decoration: none;
}
.site-footer .footer-nav a:hover{
    color: #0d6efd;
    text-decoration: underline;
}
.site-footer .social-icons a{
    color: #475569;
    text-decoration: none;
}
.site-footer hr{
    border-color: rgba(15,23,42,0.06);
}
@media (max-width: 575.98px){
    .site-footer{ text-align: center; }
    .site-footer .d-flex{ flex-direction: column!important; gap: .5rem; }
}

/* Info card (three-column highlights) */
.info-card{
    transition: transform .15s ease, box-shadow .15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.info-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(16,24,40,0.06);
}
.info-card .display-6{
    font-size: 2.2rem;
}

@media (max-width: 575.98px){
    .info-card{ padding: 1rem; }
}

@media (min-width: 576px) and (max-width: 768px){
    .info-card{ padding: 1.2rem; }
}

@media (min-width: 769px){
    .info-card{ padding: 1.5rem; }
}

/* TESTIMONMIAL CSS */
.test-hero{ background: linear-gradient(rgba(3,7,18,0.6), rgba(3,7,18,0.6)), url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1650&q=80') center/cover no-repeat; color:#fff; padding:5.5rem 0; }
.about-hero{ background: linear-gradient(rgba(4,20,34,0.55), rgba(4,20,34,0.55)), url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&w=1650&q=80') center/cover no-repeat; color:#fff; padding:6rem 0; }
.contact-hero{ background: linear-gradient(rgba(4,20,34,0.6), rgba(4,20,34,0.6)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1650&q=80') center/cover no-repeat; color:#fff; padding:5.5rem 0; }

@media (max-width: 767.98px){
    .test-hero, .about-hero, .contact-hero {
        padding: 3rem 0;
        height: auto;
        min-height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .test-hero h1, .about-hero h1, .contact-hero h1 { font-size: 2rem; }
    .test-hero .lead, .about-hero .lead, .contact-hero .lead { font-size: 0.95rem; }
}

@media (min-width: 768px) and (max-width: 1024px){
    .test-hero, .about-hero, .contact-hero {
        padding: 4rem 0;
        min-height: 450px;
        display: flex;
        align-items: center;
    }
    .test-hero h1, .about-hero h1, .contact-hero h1 { font-size: 2.5rem; }
}

/* COMPREHENSIVE TABLET & DESKTOP RESPONSIVENESS */

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px){
    .container { max-width: 720px; }
    .section-padding { padding: 80px 0; }
    h1, .display-5, .h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .btn { padding: 0.5rem 1.2rem; font-size: 0.95rem; }
    .row { margin-bottom: 2rem; }
}

/* Desktop (1025px+) */
@media (min-width: 1025px){
    .container { max-width: 1140px; }
    .section-padding { padding: 120px 0; }
    h1, .display-5, .h1 { font-size: 3rem; }
    h2 { font-size: 1.75rem; }
    .btn { padding: 0.6rem 1.5rem; }
}

/* Large desktop (1400px+) */
@media (min-width: 1400px){
    .container { max-width: 1320px; }
}

/* Utility: Ensure images scale properly */
img { max-width: 100%; height: auto; display: block; }

/* Utility: Better spacing for nested containers */
.row > div { margin-bottom: 1rem; }

@media (min-width: 992px){
    .row > div { margin-bottom: 0; }
}

/* Utility: Ensure navbar and footer work well on all sizes */
.navbar { padding: 0.75rem 0; }
.navbar-brand { font-size: 1.3rem; }

@media (min-width: 768px){
    .navbar { padding: 1rem 0; }
    .navbar-brand { font-size: 1.5rem; }
}

/* Utility: Carousel responsive */
.carousel { margin: 1.5rem 0; }

@media (min-width: 768px){
    .carousel { margin: 2rem 0; }
}

/* Utility: Forms responsive */
.form-group, .form-label { margin-bottom: 0.5rem; }

@media (max-width: 767.98px){
    .form-group, .form-label { margin-bottom: 0.8rem; }
    .form-control, .form-select { padding: 0.8rem 1rem; }
}

/* Utility: Text scaling */
.lead { font-size: 1.15rem; }

@media (max-width: 767.98px){
    .lead { font-size: 1rem; }
}

@media (min-width: 1200px){
    .lead { font-size: 1.35rem; }
}