/* ============================================
   Sitapur Landing Page - External CSS
   Colors matching the specified variables
============================================ */

:root {
    --primary: #192A3A;
    --secondary: #323A61;
    --accent: #A31A1E;
    --white: #ffffff;
    --black: #000000;
    --overlay-default: rgba(27, 23, 20, 0.20);
    --overlay-hover: rgba(27, 23, 20, 0.62);
    --text-light: #ffffff;
    --card-radius: 16px;
    --zoom-scale: 1.07;
    --hover-speed: 0.45s;
    --gray-bg: #F5F7FA;
    --border-light: #E8ECF0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



h1, h2, h3, h4, .heading-font {
  
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Page Title */
.page-title {
    background: linear-gradient(135deg, #F0F4F8 0%, #E8EDF2 100%);
    padding: 3rem 0;
    margin-bottom: 1rem;
    text-align: center;
}

.page-title .title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

@media (max-width: 768px) {
    .page-title .title {
        font-size: 1.8rem;
    }
}

/* Cards and Containers */
.border {
    border-color: var(--border-light) !important;
}

.rounded, .rounded-3 {
    border-radius: var(--card-radius) !important;
}

.shadow-sm {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
}

.shadow-sm:hover {
    transform: translateY(-6px) scale(var(--zoom-scale));
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15) !important;
    transition: all var(--hover-speed) cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border-color: var(--accent) !important;
}

/* Why Consult Items */
.why-consult-sitapur .d-flex {
    transition: all var(--hover-speed);
    padding: 0.5rem 0;
    border-radius: 12px;
}

.why-consult-sitapur .d-flex:hover {
    transform: translateX(8px);
    background: rgba(163, 26, 30, 0.05);
}

.why-consult-sitapur span {
    font-weight: 500;
    color: var(--primary);
}

/* Accordion Styling */
.accordion-button {
    font-weight: 600;
    color: var(--primary);
    background: transparent;
}

.accordion-button:not(.collapsed) {
    color: var(--accent);
    background: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-icon {
    font-weight: bold;
    color: var(--accent);
}

/* Section Headings */
.fw-bold {
    color: var(--primary);
}

.text-primary-custom {
    color: var(--accent);
}

/* Buttons */
.btn-dark {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    transition: all var(--hover-speed) ease;
}

.btn-dark:hover {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    transform: translateY(-2px);
}

/* Contact Info Box */
.rounded-3.text-white {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

/* CTA Section */
section:last-child {
    background: linear-gradient(90deg, var(--primary), var(--secondary)) !important;
}

/* Images */
.img-fluid {
    max-width: 100%;
    height: auto;
    transition: all var(--hover-speed);
}

.img-fluid:hover {
    transform: scale(1.02);
}

/* List Items */
ul.ps-0 li {
    list-style: none;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

ul.ps-0 li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .border.rounded.p-5 {
        padding: 1.5rem !important;
        margin: 1rem !important;
    }
    
    .fs-2 {
        font-size: 1rem !important;
    }
    
    .p-4.fs-2 {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 576px) {
    .page-title .title {
        font-size: 1.5rem;
    }
    
    h2.fw-bold {
        font-size: 1.5rem;
    }
    
    .d-flex.align-items-start.gap-3 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.border.rounded {
    animation: fadeInUp 0.6s ease-out;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #F0F4F8 0%, #E8EDF2 100%);
    padding: 3rem 0;
    margin-bottom: 1rem;
    border-radius: 0 0 2rem 2rem;
}

.hero-badge {
    background: rgba(163, 26, 30, 0.12);
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.4rem 1.2rem;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 1.2rem;
}

.hero-section .title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero-section .title {
        font-size: 1.8rem;
    }
}

 .btn-primary-custom {
        background: var(--accent);
        color: var(--white);
        padding: 1rem 2rem;
        font-size:20px;
        
        border-radius: 50px;
        font-weight: 600;
        transition: all var(--hover-speed) ease;
        border: none;
        box-shadow: 0 4px 12px rgba(163, 26, 30, 0.25);
    }

    .btn-primary-custom:hover {
        background: var(--secondary);
        color:white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(50, 58, 97, 0.3);
    }

  .btn-outline-custom {
        background: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
        font-size:18px;
        padding: 1rem 1.8rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all var(--hover-speed) ease;
    }

    .btn-outline-custom:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
    }

.shadow-lg {
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15) !important;
}

@media (max-width: 768px){
    .btn-outline-custom{
        margin-top: 10px;
    }
}

@media (max-width: 768px){
    section{
        margin-top: 20px;
    }
}
@media (max-width:768px){
    .why-consult-sitapur{
         margin-top: 20px;   
    }
}