



/* ——— Global Styles ——— */
@import url('../bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
   --adm-sorath-color: #1e40af;
   --adm-sorath-color-dark: #1e3a8a;
   --adm-sorath-color-soft: rgba(30, 64, 175, 0.08);
    --adm-sorath-secondary: #0f172a;
    --adm-sorath-secondary-soft: rgba(15, 23, 42, 0.06);
    --adm-sorath-accent: #0369a1;
    --adm-sorath-surface: #f1f5f9;
    --adm-sorath-card: #ffffff;
    --adm-sorath-border: #e2e8f0;
    --adm-sorath-text: #1e293b;
    --adm-sorath-muted: #64748b;
    --adm-sorath-danger: #b91c1c;
    --adm-sorath-danger-soft: #fef2f2;
    --adm-sorath-success: #15803d;
    --adm-sorath-radius: 14px;
    --adm-sorath-radius-sm: 10px;
    --adm-sorath-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --adm-sorath-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --adm-primary-sorath-font: 'Poppins', sans-serif;
}

body, h1, h2, h3, h4, h5, h6, p, label, a, button,small, div {
    font-family: var(--adm-primary-sorath-font);
}


body.menu-open {
    overflow: hidden;
}

.content {
    min-height: 40vh;
}

.navbar-brand .logo {
    width: 160px;

}

/* Header — hamburger */
.hamburger {
    width: 25px;
    height: 2px;
    background: #fff;
    display: block;
    position: relative;
    transition: 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: "";
    width: 25px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.navbar-toggler.active .hamburger {
    background: transparent;
}

.navbar-toggler.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile menu (sidebar) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: min(280px, 88vw);
    height: 100%;
    background: #fff;
    z-index: 1050;
    padding: 80px 24px 24px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.mobile-menu.active {
    transform: translateX(0);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1040;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Only show hamburger on smaller screens */
@media (min-width: 992px) {
    .mobile-menu,
    .menu-overlay {
        display: none  ;
    }
}

/* ——— Sticky Header (transparent at top) ——— */
.site-header {
    background: transparent  ;
    box-shadow: none ;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
    z-index: 2000;
    margin-bottom: -72px;
}


.site-header .nav-link {
    color: rgba(255, 255, 255, 0.95) ;
}

.site-header .navbar-brand {
    color: rgba(255, 255, 255, 0.95) ;
}

.site-header.is-scrolled {
    background: #fff ;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) ;
}

.site-header.is-scrolled .nav-link {
    color: #111  ;
}

.site-header.is-scrolled .hamburger,
.site-header.is-scrolled .hamburger::before,
.site-header.is-scrolled .hamburger::after {
    background: #000;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

/* ——— Footer ——— */
.site-footer {
    background: #fff;
    color: #111;
    padding-top: 4rem;
    padding-bottom: 0;
}

.site-footer__brand-link img{
    width: 260px;
}

.site-footer__top {
    max-width: 640px;
    margin: 0 auto 3.5rem;
    padding: 0 1rem;
}

.site-footer__brand {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.1;
}

.site-footer__lead {
    font-size: 0.95rem;
    color: #9a9a9a;
    line-height: 1.65;
    max-width: 520px;
}

.site-footer__social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.site-footer__social-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.site-footer__middle {
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e8e8;
}

.site-footer__heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: #111;
}

.site-footer__links li {
    margin-bottom: 0.65rem;
}

.site-footer__links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: #111;
}

.site-footer__projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 280px;
}

.site-footer__project-thumb {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f0f0f0;
}

.site-footer__project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.site-footer__project-thumb:hover img {
    transform: scale(1.05);
}

.site-footer__bottom {
    padding: 1.25rem 0;
    margin-top: 0;
}

.site-footer__meta {
    font-size: 0.8rem;
    color: #9a9a9a;
}

@media (max-width: 767.98px) {
    .site-footer__projects {
        max-width: 100%;
    }
}

/* breadcrumb */
.breadcrumb-section {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.breadcrumb-content h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;
}

.breadcrumb-content p {
    margin-top: 10px;
    font-size: 16px;
}

/* gallery tab */

.filter-btn {
    border: none;
    background: #eee;
    padding: 8px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 20px;
}

.filter-btn.active {
    background: #000;
    color: #fff;
}

.gallery-item img {
    transition: 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}


/* about us section */

.sorath-section {
    background: #f8f8f8;
}

.sorath-content-box {
    background: #fff;
    padding: 40px;
    position: relative;
    margin-left: -100px;
    z-index: 2;
}

.sorath-small-title {
    color: #c89b5e;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sorath-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.sorath-desc {
    color: #666;
}

.sorath-watch-video {
    position: absolute;
    bottom: -30px;
    left: 30px;
    background: #fff;
    padding: 10px 20px;
}

.sorath-play-btn {
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sorath-counter-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.sorath-counter-text {
    color: #777;
}

/* Responsive */
@media(max-width:991px){
    .sorath-content-box {
        margin-left: 0;
        margin-top: 30px;
    }

    .sorath-watch-video {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
    }
}


/* services section */

.sorath-services {
    background: #f8f8f8;
}

.sorath-services-intro h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.sorath-services-intro p {
    color: #666;
}

/* Card Style */
.sorath-service-card {
    background: #fff;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.sorath-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sorath-icon img {
    width: 40px;
    margin-bottom: 15px;
}

.sorath-service-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.sorath-service-card p {
    color: #777;
}

/* Image Card */
.sorath-service-img {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.sorath-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.sorath-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: 0.3s;
}

.sorath-service-img:hover .sorath-overlay {
    opacity: 1;
}

.sorath-overlay h4 {
    font-weight: 600;
}

.sorath-overlay p {
    font-size: 14px;
}

/* Responsive */
@media(max-width:991px){
    .sorath-services-intro {
        margin-bottom: 20px;
    }
}