/* ==========================
   ROOT COLORS
========================== */
:root {
    --bg-light: #ffffff;
    --section-bg: #f4f4f4;
    --navbar-footer: #000000;
    --text-dark: #111111;
    --text-light: #ffffff;
    --primary: #6c757d;
    --shadow: rgba(0,0,0,0.15);
}

/* ==========================
   GLOBAL RESET
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    padding-top: 80px; /* navbar fix */
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================
   SECTIONS
========================== */
section {
    padding: 90px 0;
}

.bg-light {
    background: var(--section-bg) !important;
}

/* ==========================
   HEADINGS
========================== */
h1,h2,h3,h4,h5 {
    font-weight: 800;
    color: var(--text-dark);
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* ==========================
   NAVBAR
========================== */
.navbar {
    background: var(--navbar-footer);
    height: 80px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}
.navbar-brand img {
    height: 100px;  
    width: 100px;     /* pehle 50px tha, ab 80px */
    object-fit:contain;
    transition: all 0.3s ease;
}


.navbar-nav .nav-link {
    color: var(--text-light);
    margin-left: 20px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

/* ==========================
   HERO / BANNER
========================== */
.banner-img{
    height:500px;
    object-fit:cover;
}
.hero-content{
    max-width:700px;
    padding:50px 45px;

    background:rgba(0,0,0,0.55);
    border-left:6px solid #fca311;
    border-radius:15px;

    text-align:left;
    animation:fadeUp 0.9s ease forwards;
}
.hero-content h1{
    color:#fff;
    font-size:3rem;
    font-weight:900;
    line-height:1.2;
}

.hero-content p{
    color:#e5e5e5;
    font-size:1.1rem;
    margin-top:15px;
}
.hero-actions{
    margin-top:25px;
}

.hero-actions .btn{
    padding:12px 30px;
    font-weight:700;
    border-radius:50px;
    margin-right:12px;
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* SERVICES PAGE HEADER */
.services-header {
    background: #f8f9fa;
    padding: 110px 0 70px;
}

.services-header h1 {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.services-header p {
    max-width: 900px;
    margin: auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #495057;
}

/* SERVICES LIST */
.services-list {
    padding: 80px 0;
}

.service-content {
    max-width: 1000px;
    margin: 40px auto 0;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}
.service-detail {
    background: #ffffff;
}

.service-box {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 16px;
    border-left: 5px solid #6c757d;
}

.service-box h2 {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6c757d;
    font-weight: bold;
}

.service-list.highlight li::before {
    color: #000;
}

/* ==========================
   CARDS
========================== */
.service-card,
.portfolio-box,
.pricing-card {
    background: var(--section-bg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 12px 35px var(--shadow);
    transition: 0.35s ease;
    height: 100%;
}

.service-card:hover,
.portfolio-box:hover,
.pricing-card:hover {
    transform: translateY(-8px);
}

.service-img,
.portfolio-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.35s;
}

.service-card:hover .service-img,
.portfolio-box:hover .portfolio-img {
    transform: scale(1.05);
}

/* ==========================
   BUTTONS (Minimal)
========================== */
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--text-dark);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--text-light);
}

/* ==========================
   PRICING UNIQUE LOOK
========================== */
/* .pricing-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pricing-card h2 {
    font-size: 2.5rem;
    margin-top: 20px;
    color: var(--primary);
} */
 /* ==========================
   PRICING – PREMIUM STYLE
========================== */
.pricing-section {
    background: #ffffff;
    padding: 100px 0;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-box {
    background: #999ea1;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 45px 35px;
    height: 100%;
    transition: 0.35s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.plan-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #495057;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width:768px){
    .section-title {
        font-size: 2.1rem;
    }
    .price {
        font-size: 2.2rem;
    }
}

/* ==========================
   CONTACT PAGE
========================== */
/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
}

.contact-card {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    animation: fadeUp 0.7s ease;
}

.contact-card h2 {
    font-weight: 800;
    margin-bottom: 5px;
}

.contact-card .form-control {
    border-radius: 12px;
    border: 1px solid #ced4da;
    padding: 18px 15px;
    font-size: 0.95rem;
}

.contact-card .form-control:focus {
    border-color: #000;
    box-shadow: none;
}

.contact-card button {
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-card button:hover {
    background: #333;
}

/* animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==========================
   THEME ALERT (LOGIN REQUIRED)
========================== */
.alert.alert{
    background: #6c757d;          /* grey background */
    color: #ffffff;               /* white text */
    border: none;
    border-radius: 12px;
    padding: 18px 25px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* FORCE LOGIN LINK – FINAL */
.alert.alert-theme a.login-link,
.alert-theme a.login-link,
a.login-link {
    color: #000000 !important;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #000000;
    text-underline-offset: 4px;
}





/* ==========================
   FOOTER
========================== */
/* ==========================
   FOOTER
========================== */
.site-footer {
    background: #000000;
    color: #e5e5e5;
    padding: 70px 0 30px;
}

.footer-title {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #6c757d;
    display: block;
    margin-top: 8px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cccccc;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #6c757d;
    transform: translateY(-4px);
}

.footer-line {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    color: #aaaaaa;
}

/* Responsive */
@media(max-width:768px){
    .site-footer {
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 992px) {
    .carousel-caption h1 { font-size: 2.4rem; }
    .service-img, .portfolio-img { height: 250px; }
}

@media (max-width: 576px) {
    .carousel-caption {
        padding: 30px;
    }
    .carousel-caption h1 { font-size: 2rem; }
    .service-img, .portfolio-img { height: 200px; }
}
@media(max-width:768px){
    .hero-content{
        text-align:center;
        padding:30px;
    }

    .hero-content h1{
        font-size:2.2rem;
    }
}
