/* =========================
   ROOT COLORS
========================= */
:root{
    --primary-color: #FA5C5C;
    --secondary-color: #FD8A6B;
    --background-color: #FEC288;
    --text-color: #2c2c2c;
    --light-bg: #fff7ef;
}

/* =========================
   GLOBAL
========================= */
body{
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-color);
    background: #ffffff;
}

a{
    text-decoration: none;
    color: white;
}

.section-title{
    font-weight: 700;
    color: var(--primary-color);
}

/* =========================
   TOP BAR
========================= */
.top-bar{
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
}

.top-bar i{
    margin-right: 6px;
}

/* =========================
   NAVBAR
========================= */
.container{
    background-color:var(--primary-color);
}
.custom-navbar{
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.navbar-brand1 a{
   
    color: #fff;
    
}

.custom-navbar .nav-link{
    color: #fff;
    font-weight: 500;
    margin-left: 15px;
}

.custom-navbar .nav-link:hover{
    color: var(--primary-color);
}

/* =========================
   HERO SECTION
========================= */
.hero-section{
    background: linear-gradient(120deg,var(--background-color),var(--secondary-color));
    padding: 80px 0;
}

.hero-badge{
    background: #fff;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
}

.hero-title{
    font-size: 42px;
    font-weight: 800;
    color: #222;
}

.hero-title span{
    color: var(--primary-color);
}

.hero-desc{
    font-size: 16px;
    opacity: 0.9;
}

.hero-img-wrapper img{
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* =========================
   BUTTONS
========================= */
.btn-primary{
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover{
    background: #e94a4a;
}

.btn-outline-primary{
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover{
    background: var(--primary-color);
    color: #fff;
}

/* =========================
   ABOUT / PROFILE
========================= */
.about-img{
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* =========================
   SERVICES
========================= */
.services-section{
    background: var(--light-bg);
}

.service-card{
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card:hover{
    transform: translateY(-8px);
}

.service-img{
    margin-top: 25px;
}

.service-link{
    color: var(--primary-color);
    font-weight: 600;
}

/* =========================
   CONTACT
========================= */
.contact-info-box,
.contact-form-box{
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.contact-item{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item .icon{
    color: var(--primary-color);
    font-size: 20px;
}

/* =========================
   FOOTER
========================= */
.footer-section{
    background: #1f1f1f;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-title{
    color: #fff;
    margin-bottom: 15px;
}

.footer-links li{
    list-style: none;
    margin-bottom: 8px;
}

.footer-links a{
    color: #ccc;
}

.footer-links a:hover{
    color: var(--secondary-color);
}

.footer-bottom{
    background: #111;
    color: #aaa;
    padding: 12px;
    margin-top: 40px;
}

/* profile  */
/* Page Header */
.page-header{
    background: linear-gradient(90deg,var(--primary-color),var(--secondary-color));
    color:#fff;
    padding:70px 0;
}

/* Section Title */
.section-title{
    color: var(--primary-color);
    font-weight:700;
}

/* Info Box */
.info-box{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* Director Card */
.director-card{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}
.director-card:hover{
    transform:translateY(-5px);
}
.director-img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
}

/* Service Card */
.service-card{
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}
.service-card:hover{
    transform:translateY(-8px);
}
.service-img{
    display:block;
    margin:20px auto 0;
}
.service-link{
    text-decoration:none;
    color:var(--primary-color);
    font-weight:600;
}

/* Document Card */
.doc-card{
    background:#fff;
    padding:20px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    cursor:pointer;
    transition:0.3s;
}
.doc-card:hover{
    background:var(--background-color);
}
.doc-card i{
    font-size:40px;
    color:var(--primary-color);
}

/* PDF Viewer */
.pdf-viewer{
    display:none;
    margin-top:30px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
.pdf-header{
    background:var(--primary-color);
    color:#fff;
    padding:10px 15px;
    display:flex;
    justify-content:space-between;
}
.pdf-viewer iframe{
    width:100%;
    height:500px;
}

/* Address Section */
.address-card{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}
.icon-box{
    font-size:40px;
    color:var(--primary-color);
}
.contact-info a{
    color:var(--primary-color);
    text-decoration:none;
}

/* services */
 /* Header */
    

        /* Service Card */
        .service-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-body {
            padding: 25px;
            text-align: center;
        }

        .service-body h5 {
            font-weight: 700;
            color: var(--primary-color);
        }

        .service-body p {
            font-size: 15px;
            margin: 15px 0;
        }

        .service-body a {
            text-decoration: none;
            font-weight: 600;
            color: #fff;
            background: var(--primary-color);
            padding: 10px 22px;
            border-radius: 30px;
            display: inline-block;
        }

        .service-body a:hover {
            background: #e94b4b;
        }

        /* contact */
        
        /* Contact Card */
        .contact-card {
            background: #fff;
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-control {
            border-radius: 12px;
            padding: 12px;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        .btn-submit {
            background: var(--primary-color);
            color: #fff;
            padding: 12px 35px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
        }

        .btn-submit:hover {
            background: #e94b4b;
        }

        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        /* detials page  */
        /* Hero Section */
.detail-hero{
    position:relative;
}

.detail-hero img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:0 0 40px 40px;
}

.detail-hero .overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    border-radius:0 0 40px 40px;
}

.detail-hero .content{
    position:absolute;
    bottom:50px;
    left:60px;
    color:#fff;
}

.section-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.icon-list li{
    margin-bottom:10px;
}

.icon-list i{
    color:var(--primary-color);
    margin-right:8px;
}

/* CTA */
.cta-section{
    background:var(--background-color);
    padding:50px 0;
    border-radius:30px;
}

.btn-custom{
    background:var(--primary-color);
    color:#fff;
    padding:12px 30px;
    border-radius:30px;
    border:none;
}
.btn-custom:hover{
    background:#e94b4b;
}


/* --- OWNER CARD STYLES --- */
        .owner-card {
            background: #fff;
            width: 350px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: 0.3s;
            position: relative;
            border-bottom: 5px solid var(--primary-color);
        }

        .owner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(250, 92, 92, 0.2); /* Reddish shadow on hover */
        }

        /* Colored Header */
        .card-header-bg {
            height: 120px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        /* Owner Image */
        .owner-img-container {
            width: 130px;
            height: 130px;
            margin: -65px auto 15px; /* Pull image up */
            border-radius: 50%;
            padding: 5px;
            background: #fff; /* White border effect */
            position: relative;
        }

        .owner-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

        /* Content */
        .card-body {
            padding: 0 25px 30px;
        }

        .owner-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 5px;
        }

        .owner-role {
            font-size: 0.9rem;
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .info-item i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.1rem;
        }

        /* Social Icons (Optional) */
        .social-links {
            margin-top: 20px;
        }
        .social-links a {
            display: inline-flex;
            width: 35px;
            height: 35px;
            background: #f4f4f4;
            color: var(--text-color);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin: 0 5px;
            transition: 0.3s;
        }
        .social-links a:hover {
            background: var(--primary-color);
            color: #fff;
        }
/* review */

/* =========================
   RESPONSIVE – TABLET
========================= */
@media (max-width: 991px){
    .hero-title{
        font-size: 34px;
    }

    .navbar-nav{
        background: #fff;
        padding: 15px;
        border-radius: 10px;
    }
}

/* =========================
   RESPONSIVE – MOBILE
========================= */
@media (max-width: 576px){
    .hero-section{
        text-align: center;
        padding: 60px 15px;
    }

    .hero-title{
        font-size: 28px;
    }

    .hero-desc{
        font-size: 15px;
    }

    .contact-item{
        flex-direction: column;
    }

    .top-bar{
        font-size: 12px;
        text-align: center;
    }
}
