       
       @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
       @import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates: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 {
            --primary: #A7362F;
            --secondary: #F6E5CF;
            --accent: #DB9D87;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
           font-family: "Josefin Sans", sans-serif;
        }
        
        .font-serif {
           font-family: "Josefin Sans", sans-serif;
        }
        
        /* Header Styles */
        .header-bg {
            /* backdrop-filter: blur(10px); */
            border-bottom: 1px solid rgba(246, 229, 207, 0.15);
            background: #A7362F;
        }
        /* Top Header Styles */
        .top-header {
            background: #8B2E25;
            padding: 8px 0;
            font-size: 13px;
            color: #F6E5CF;
        }

        .top-header a {
            color: #F6E5CF;
            text-decoration: none;
            transition: color 0.3s;
        }

        .top-header a:hover {
            color: var(--accent);
        }

        .top-header-content {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-header-left {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .top-header-right {
            display: flex;
            gap: 1rem;
        }

        .social-icon-top {
            color: #F6E5CF;
            font-size: 14px;
            transition: color 0.3s;
        }

        .social-icon-top:hover {
            color: var(--accent);
        }

        /* Main Header */
        .header-bg {
            background: #ffffff;
            border-bottom: 1px solid rgba(246, 229, 207, 0.15);
            height: 70px;
        }

        .header-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 1rem;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Logo */
        .logo-container {
            flex-shrink: 0;
        }

        .logo-container img {
            height: 66px;
            width: auto;
        }

        /* Navigation */
        .nav-center {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-link {
            position: relative;
            color: #ab362f;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            text-decoration: none;
            font-weight: 800;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--accent);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Dropdown */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-top: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: #F6E5CF;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(246, 229, 207, 0.1);
            font-size: 13px;
            font-weight: 400;
        }

        .dropdown-menu a:last-child {
            border-bottom: none;
        }

        .dropdown-menu a:hover {
            background-color: rgba(167, 54, 47, 0.2);
            color: var(--accent);
            padding-left: 24px;
        }

        /* Book Now Button */
        .book-btn {
            background: linear-gradient(135deg, #ff7600 0%, #872d24 100%);
            color: #ffffff;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .book-btn:hover {

            transform: translateY(-2px);
            background: #d68a4a;
            color: #ab362f;
        }

        /* Mobile Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 25px;
            height: 2.5px;
            background-color: #8b2e25!important;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 9998;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: var(--primary);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 9999;
            overflow-y: auto;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(246, 229, 207, 0.2);
        }

        .mobile-menu-header img {
            height: 45px;
        }

        .close-btn {
            background: none;
            border: none;
            color: #F6E5CF;
            font-size: 32px;
            cursor: pointer;
            padding: 0;
            line-height: 1;
        }

        .mobile-nav {
            padding: 1rem;
        }

        .mobile-nav-link {
            display: block;
            padding: 1rem;
            color: #F6E5CF;
            text-decoration: none;
            border-bottom: 1px solid rgba(246, 229, 207, 0.2);
            font-weight: 500;
            transition: all 0.3s;
        }

        .mobile-nav-link:hover {
            color: var(--accent);
            padding-left: 1.5rem;
        }

        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            color: #F6E5CF;
            border-bottom: 1px solid rgba(246, 229, 207, 0.2);
            cursor: pointer;
            font-weight: 500;
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(0, 0, 0, 0.2);
        }

        .mobile-dropdown-content.active {
            max-height: 500px;
        }

        .mobile-dropdown-content a {
            display: block;
            padding: 0.75rem 1rem 0.75rem 2rem;
            color: rgba(246, 229, 207, 0.9);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .mobile-dropdown-content a:hover {
            color: var(--accent);
            padding-left: 2.5rem;
        }

        /* Mobile Contact Info */
        .mobile-contact-info {
            padding: 1.5rem;
            border-top: 1px solid rgba(246, 229, 207, 0.2);
            margin-top: 1rem;
        }

        .mobile-contact-info h4 {
            color: #F6E5CF;
            font-size: 16px;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: rgba(246, 229, 207, 0.9);
            font-size: 13px;
        }

        .mobile-contact-item i {
            color: var(--accent);
            font-size: 16px;
        }

        .mobile-social-icons {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .mobile-social-icon {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #F6E5CF;
            text-decoration: none;
            transition: all 0.3s;
        }

        .mobile-social-icon:hover {
            background: var(--accent);
            color: white;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .top-header {
                display: none;
            }

            .nav-center {
                display: none;
            }

            .book-btn-desktop {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .header-container {
                justify-content: space-between;
            }

            .logo-container {
                margin: 0;
            }
        }

        @media (min-width: 1025px) {
            .hamburger {
                display: none;
            }
        }
        /* Navigation Links */
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Logo Styles */
        .logo-container {
            text-align: center;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 5px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }
        
        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            letter-spacing: 0.35em;
            color: #F6E5CF;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-radius: 0px;
            margin-top: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        
        .dropdown-menu a {
            display: block;
            padding: 14px 24px;
            color: #F6E5CF;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(246, 229, 207, 0.1);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        
        .dropdown-menu a:last-child {
            border-bottom: none;
        }
        
        .dropdown-menu a:hover {
            background-color: rgba(167, 54, 47, 0.2);
            color: var(--accent);
            padding-left: 28px;
        }
        
        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: var(--primary);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 9999;
            overflow-y: auto;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 9998;
        }
        
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Slider Styles */
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }
        
        .slider-wrapper {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .slide {
            min-width: 100%;
            position: relative;
            height: 550px;
        }
        
        @media (min-width: 768px) {
            .slide {
                height: 650px;
            }
        }
        
        @media (min-width: 1024px) {
            .slide {
                height: 750px;
            }
        }
        
        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgb(0 0 0 / 70%), rgb(0 0 0 / 70%));
        }
        
        .slide-content {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 30px;
        }
        
        .slide-subtitle {
            font-family: "Montserrat Alternates", sans-serif;
            font-size: 28px !important;
            font-weight: 400;
            font-style: italic;
            color: #ffa150;
            margin-bottom: 20px;
            border-bottom: 2px solid #ffa150;
        }
        
        .slide-title {
            font-family: "Josefin Sans", sans-serif;
            font-size: 50px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 30px;
            line-height: 1.3;
        }
        
        .slide-quote {
            font-size: 80px;
            color: var(--accent);
            line-height: 0.5;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .slide-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            color: #5A5A5A;
            font-weight: 500;
            text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
        }
        
        @media (min-width: 768px) {
            .slide-subtitle {
                font-size: 30px;
            }
            .slide-title {
                font-size: 40px;
            }
            .slide-text {
                font-size: 26px;
            }
        }
        
        @media (min-width: 1024px) {
            #hamburger{
                display: none;
            }
            .slide-subtitle {
                font-size: 30px;
            }
            .slide-title {
                font-size: 50px;
            }
            .slide-text {
                font-size: 28px;
            }
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            background-color: rgb(255 255 255);
            color: #a7362f;
            border: 2px solid rgba(246, 229, 207, 0.3);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 28px;
            border-radius: 50%;
            backdrop-filter: blur(5px);
        }

        .btn-danger{
            color: #ffa150;
            border: 2px solid #ffa150;
            padding: 6px 15px 6px 15px;
            border-radius: 4px;
        }
        
        .slider-nav:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-50%) scale(1.1);
            color: #ffffff;
        }
        
        .slider-nav.prev {
            left: 30px;
        }
        
        .slider-nav.next {
            right: 30px;
        }
        
        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 14px;
            z-index: 20;
        }
        
        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(246, 229, 207, 0.5);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .dot:hover {
            background-color: var(--accent);
            transform: scale(1.2);
        }
        
        .dot.active {
            background-color: var(--primary);
            width: 40px;
            border-radius: 8px;
            border-color: var(--primary);
        }
        
        /* Hamburger Menu */
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }
        
        .hamburger span {
            width: 28px;
            height: 3px;
            background-color: #F6E5CF;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }
        
        .mobile-dropdown-toggle {
            cursor: pointer;
        }
        
        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-dropdown-content.active {
            max-height: 500px;
        }
        
        .mobile-nav-link {
            color: #F6E5CF;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        

.section-bg-image 
{
    background-image: url(../main-bg.webp);
    background-repeat: repeat;
    background-size: 100px 100px;  
}

.section-overlay
{
   background-color: #ff9f50e3;
}
.primary-heading{
    color: rgb(139 46 37);
    font-size: 50px;
}
.primary-bg{
background: rgb(139 46 37);
}

.bg-overlay-primary{
    background-color: rgb(139 46 37 / 56%);
}

.about-text{
    color: #000000;
}
strong{
    color: #A7362F;
}
.om-symbol {
            font-size: 2rem;
            color: #d4534d;
        }
        
        .section-title {
            color: #d4534d;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        
        .section-subtitle {
            color: #666;
            text-align: center;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }
        
        .divider {
            width: 120px;
            height: 2px;
            background-color: #d4534d;
            margin: 1rem auto 2rem;
        }
        
        .course-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .course-image {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
        }
        
        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .days-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            width: 70px;
            height: 70px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }
        
        .days-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #d4534d;
            line-height: 1;
        }
        
        .days-text {
            font-size: 0.7rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .course-content {
            padding: 1.75rem;
        }
        
        .course-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: #d4534d;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }
        
        .course-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .course-details {
            border-top: 1px solid #f0f0f0;
            padding-top: 1.25rem;
        }
        
        .detail-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        
        .detail-row:last-child {
            margin-bottom: 0;
        }
        
        .detail-label {
            color: #333;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .detail-value {
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .price {
            color: #d4534d;
        }
        
        .level-badge {
            padding: 0.35rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .level-beginner {
            background-color: #ffe8e6;
            color: #d4534d;
        }
        
        .level-intermediate {
            background-color: #fff3e6;
            color: #ff8c42;
        }
        
        .level-advance {
            background-color: #ffe8e6;
            color: #d4534d;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .course-title {
                font-size: 1.15rem;
            }
        }
         .section-title {
            color: #d4534d;
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            color: #666;
            text-align: center;
            font-size: 1rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }
        
        .divider {
            width: 120px;
            height: 2px;
            background-color: #d4534d;
            margin: 1rem auto 3rem;
        }
        
        .content-section {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 4rem;
        }
        
        .grid-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        
        .text-side {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .image-side {
            position: relative;
            overflow: hidden;
        }
        
        .image-side img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .content-title {
            font-size: 2rem;
            font-weight: 700;
            color: #d4534d;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        
        .content-text {
            color: #555;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        
        .highlight-list {
            margin: 1.5rem 0;
        }
        
        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            color: #555;
        }
        
        .highlight-icon {
            color: #d4534d;
            font-size: 1.2rem;
            margin-top: 0.1rem;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #d4534d 0%, #ff9a95 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 83, 77, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 83, 77, 0.4);
        }
        
        .content-description {
            color: #555;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .feature-box {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .feature-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        
        .feature-title {
            font-weight: 700;
            color: #333;
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }
        
        .feature-text {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.5;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 300px;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 1.5rem;
        }
        
        .gallery-title {
            color: white;
            font-weight: 600;
            font-size: 1rem;
        }
        
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr !important;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 640px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }
         .section-title {
            font-size: 3.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .title-highlight {
            color: #d4534d;
        }
        
        .title-normal {
            color: #2d2d2d;
        }
        
        .divider {
            width: 140px;
            height: 3px;
            background-color: #d4534d;
            margin: 1.5rem auto 2.5rem;
        }
        
        .section-description {
            text-align: center;
            color: #666;
            line-height: 1.8;
            max-width: 950px;
            margin: 0 auto 4.5rem;
            font-size: 1rem;
        }
        
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 50px rgba(212, 83, 77, 0.25);
        }
        
        .blog-image-container {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }
        
        .blog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .blog-card:hover .blog-image {
            transform: scale(1.12);
        }
        
        .blog-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .blog-card:hover .blog-overlay {
            opacity: 1;
        }
        
        .blog-category {
            position: absolute;
            top: 25px;
            left: 25px;
            background: linear-gradient(135deg, #d4534d 0%, #ff7a6f 100%);
            color: white;
            padding: 0.6rem 1.4rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            box-shadow: 0 5px 15px rgba(212, 83, 77, 0.35);
            z-index: 2;
        }
        
        .blog-content {
            padding: 2.2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #2d2d2d;
            margin-bottom: 1.2rem;
            line-height: 1.4;
            transition: color 0.3s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .blog-card:hover .blog-title {
            color: #d4534d;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1.2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #999;
            font-size: 0.85rem;
        }
        
        .meta-icon {
            color: #d4534d;
            font-size: 0.95rem;
        }
        
        .blog-excerpt {
            color: #666;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            color: #d4534d;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.8rem 0;
        }
        
        .read-more-btn:hover {
            gap: 1rem;
            color: #b8342a;
        }
        
        .arrow-icon {
            transition: transform 0.3s ease;
            font-size: 1rem;
        }
        
        .read-more-btn:hover .arrow-icon {
            transform: translateX(5px);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }
        
        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 640px) {
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .blog-category {
                font-size: 0.7rem;
                padding: 0.5rem 1rem;
            }
        }
         .reviews-section {
            display: grid;
            grid-template-columns: 45% 55%;
            min-height: 700px;
            overflow: hidden;
        }
        
        .left-side {
            background: linear-gradient(135deg, #d4534d 0%, #ff9a95 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .silhouette-image {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }
        
        .reviews-title-box {
            background: white;
            padding: 3rem 3.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .title-client {
            font-size: 3.5rem;
            font-weight: 700;
            color: #d4534d;
            line-height: 1;
            display: inline;
            margin-right: 1rem;
        }
        
        .title-reviews {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2d2d2d;
            line-height: 1;
            display: inline;
        }
        
        .title-divider {
            width: 80px;
            height: 3px;
            background: #d4534d;
            margin: 1.5rem auto 0;
        }
        
        .right-side {
            background: #f8f8f8;
            position: relative;
            display: flex;
            align-items: center;
            padding: 3rem;
        }
        
        .testimonial-slider {
            width: 100%;
            position: relative;
        }
        
        .testimonial-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .quote-icon {
            position: absolute;
            top: -25px;
            right: 40px;
            width: 80px;
            height: 80px;
            background: #d4534d;
            border-radius: 0 0 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(212, 83, 77, 0.3);
        }
        
        .quote-icon i {
            color: white;
            font-size: 2rem;
        }
        
        .client-profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .client-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid #d4534d;
            object-fit: cover;
            margin-bottom: 1rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .client-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: #2d2d2d;
            margin-bottom: 0.3rem;
        }
        
        .client-location {
            font-size: 0.95rem;
            color: #d4534d;
            font-weight: 600;
        }
        
        .testimonial-text {
            color: #555;
            line-height: 1.9;
            font-size: 1rem;
            text-align: center;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }
        
        .control-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #d4534d;
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 83, 77, 0.3);
        }
        
        .control-btn:hover {
            background: #b8342a;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(212, 83, 77, 0.4);
        }
        
        .control-btn:active {
            transform: scale(0.95);
        }
        
        @media (max-width: 1024px) {
            .reviews-section {
                grid-template-columns: 1fr;
            }
            
            .left-side {
                min-height: 400px;
            }
            
            .title-client,
            .title-reviews {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 640px) {
            .reviews-title-box {
                padding: 2rem 2.5rem;
            }
            
            .title-client,
            .title-reviews {
                font-size: 2rem;
            }
            
            .testimonial-card {
                padding: 2.5rem 2rem;
            }
            
            .quote-icon {
                width: 60px;
                height: 60px;
                right: 25px;
            }
            
            .quote-icon i {
                font-size: 1.5rem;
            }
        }

        .footer-main {
            background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
            color: white;
            padding: 4rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer-main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1600&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }
        
        .footer-content {
            max-width: 1320px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo-section {
            padding-right: 2rem;
        }
        
        .footer-logo {
            width: 100px;
            height: auto;
            padding: 5px;
        }
        
        .footer-description {
            color: #ccc;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            background: white;
            color: #2d2d2d;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .social-icon:hover {
            background: #d4534d;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(212, 83, 77, 0.4);
        }
        
        .footer-section-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 0.75rem;
        }
        
        .footer-section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #d4534d;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: #d4534d;
            padding-left: 8px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: #ccc;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .contact-icon {
            color: #d4534d;
            font-size: 1.2rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }
        
        .certifications {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 2rem;
        }
        
        .cert-badge {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            padding: 0.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .cert-badge:hover {
            transform: scale(1.1);
        }
        
        .cert-badge img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
        }
        
        .copyright {
            color: #999;
            font-size: 0.9rem;
        }
        
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }
        }
        
        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-logo-section {
                padding-right: 0;
            }
            
            .certifications {
                justify-content: center;
            }
        }

        /* ===============================
   Floating Image Animation
================================ */
.floating-image {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ===============================
   Play Button Pulse Animation
================================ */
.play-button {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 rgba(167, 54, 47, 0.6);
  animation: pulse 2.5s infinite;
  cursor: pointer;
}

.play-button i {
  color: #A7362F;
  font-size: 22px;
  margin-left: 4px;
  z-index: 2;
}

/* Pulse Ring */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 54, 47, 0.6);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(167, 54, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(167, 54, 47, 0);
  }
}

/* Floating image */
.floating-image {
    border-radius: 50px;
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* Skill bars */
.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #A7362F;
  margin-bottom: 6px;
}

.skill-bar {
  width: 100%;
  height: 4px;
  background: #A7362F;
  border-radius: 10px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff7300, #A7362F);
  border-radius: 10px;
  animation: fillBar 2s ease forwards;
}

@keyframes fillBar {
  from { width: 0; }
}
/* ===== PREMIUM UNIFORM GALLERY ===== */

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap:22px;
}

/* Each image block */
.gallery-item{
  border-radius:18px;
  overflow:hidden;
}

/* FIXED HEIGHT IMAGE */
.gallery-item img{
  width:100%;
  height:300px;          /* 👈 HEIGHT FIX */
  object-fit:cover;      /* 👈 CROP SMARTLY */
  display:block;
  cursor:pointer;
  transition: transform .45s ease, box-shadow .45s ease;
}

/* Hover effect */
.gallery-item img:hover{
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Responsive height tuning */
@media(max-width:1024px){
  .gallery-item img{ height:300px; }
}

@media(max-width:768px){
  .gallery-item img{ height:300px; }
}

@media(max-width:480px){
  .gallery-item img{ height:250px; }
}

#hr-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.95);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999999;
}

#hr-lightbox img{
  max-width:92%;
  max-height:90%;
  border-radius:10px;
}

#hr-lightbox span{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}
