/* ==============================
   MODERN SLATE & AMBER DESIGN
   Construction Industry Theme
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Slate & Amber Palette */
  --primary-gold: #ffd700;
  --gold-dark: #ffd700;
  --gold-light: #ffd700;
  --gold-muted: rgba(255, 180, 0, 0.5);
  
  --concrete-dark: #F7F9FB;
  --concrete-medium: #F7F9FB;
  --concrete-light: #F7F9FB;
  --concrete-lighter: #F7F9FB;
  
  --white: #FFFFFF;
  --off-white: #F7F9FB;
  --light-grey: #E9ECEF;
  --dark-grey: #0F0F0F;
  
  /* Solid Colors (flat design) */
  --primary-gradient: #ffd700;
  --secondary-gradient: #FFFFFF;
  --accent-gradient: #ffd700;
  --concrete-gradient: #FFFFFF;
  
  /* No Shadows (flat design) */
  --shadow-gold: none;
  --shadow-dark: none;
  --shadow-light: none;
  
  /* Text Colors */
  --text-primary: #0F0F0F;
  --text-secondary: #34424A;
  --text-dark: #0F0F0F;
  --text-gold: #ffd700;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--concrete-dark);
  min-height: 100vh;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* ==============================
   NAVIGATION STYLES
   ============================== */

/* Navbar Base Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background-color: #fff;
    height: 60px;
    z-index: 99999;
    transition: border-color 0.2s ease;
    /* flat: no blur */
    /* flat: no webkit blur */
    box-shadow: none;
    border-bottom: 1px solid #E9ECEF;
}

.navbar.shadow {
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img,
.navbar-logo {
    height: 60px;
    max-width: 180px;
    object-fit: contain;
    display: block;
    padding: 0;
    margin: 0;
    filter: none;
    transition: transform 0.3s ease;
}

.logo:hover img,
.navbar-logo:hover {
    transform: scale(1.05);
    filter: none;
}

.menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu .menu_item {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu .menu_item .list_items {
    position: relative;
}

.menu .menu_item .list_link {
    font-size: 0.9rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #0F0F0F;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
    cursor: pointer;
}

.menu .menu_item .list_link:hover,
.menu .menu_item .list_link.active {
    color: #ffd700;
    font-weight: 700;
    border-bottom: 2px solid #ffd700;
}

.menu .menu_item .list_link::after,
.menu .menu_item .list_link:hover::after,
.menu .menu_item .list_link.active::after {
    display: none;
}

/* Dropdown Menu */
.menu .menu_item .dropdown {
    position: relative;
}

.menu .menu_item .dropdown-menu {
    display: none;
    position: absolute;
    margin-top: 10px;
    background-color: #fff;
    padding: 10px 15px;
    min-width: 260px;
    box-shadow: none;
    z-index: 999;
    border-radius: 10px;
    font-size: .9rem !important;
}

.menu .menu_item .dropdown-menu .list_items .list_link {
    display: block;
    padding: 5px 15px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.9rem;
    line-height: 1.25rem;
    font-weight: 400;
    color: #0F0F0F;
    font-family: 'Rajdhani', sans-serif;
}

.menu .menu_item .dropdown-menu .list_items .list_link:hover {
    background-color: #eee;
}

.menu .menu_item .dropdown.open .dropdown-menu {
    display: block;
}

/* Right Side Items */
.right-items {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-select {
    position: relative;
    display: inline-block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 30px;
}

.language-select:hover,
.language-select:focus {
    border-color: #ffd700;
    box-shadow: none;
    outline: none;
}

.language-select option {
    padding: 8px;
    font-size: 0.9rem;
    background: #fff;
    color: #333;
}

.language-select option:hover {
    background: #f8f9fa;
}

.right-items .nav-cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    font-size: 0.7rem;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-items .btn-login {
    padding: 7px 20px;
    background-color: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ffd700;
    font-weight: 500;
    transition: all 0.3s ease;
}

.right-items .btn-login:hover {
    background-color: transparent;
    color: #000;
    border-color: #ffd700;
}

/* Custom Language Dropdown */
.custom-lang-dropdown {
    position: relative;
}

.custom-lang-dropdown #langBtn {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 6px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.custom-lang-dropdown #langBtn:hover {
    border-color: #ffd700;
    background: #fffbe6;
}

.custom-lang-dropdown .lang-options {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: none;
    min-width: 60px;
    z-index: 9999;
    padding: 6px 0;
}

.custom-lang-dropdown .lang-options.show,
.custom-lang-dropdown.open .lang-options {
    display: block;
}

.custom-lang-dropdown .lang-options button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 8px 18px;
    text-align: left;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
}

.custom-lang-dropdown .lang-options button:hover {
    background: #f5f5f5;
}

/* Hamburger Menu */
.hamburger-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Sidebar Mobile Menu */
.sidebar {
    position: fixed;
    top: 60px;
    left: -350px;
    width: 350px;
    height: 100%;
    background-color: #fff;
    color: #333;
    transition: left 0.3s ease-in-out;
    padding: 20px;
    z-index: 2000;
    box-shadow: none;
}

.sidebar.active {
    left: 0 !important;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar ul li a:hover {
    background-color: #f5f5f5;
    color: #ffd700;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ==============================
   NAVBAR RESPONSIVE STYLES
   ============================== */

/* Large screens (2880px - 3000px) */
@media (min-width: 2880px) and (max-width: 3000px) {
    .navbar {
        height: 110px !important;
        padding: 0 3rem !important;
    }

    .logo img,
    .navbar-logo {
        height: 110px !important;
        max-width: 220px !important;
    }

    .menu .menu_item .list_link {
        font-size: 2.5rem !important;
        padding: 5px 15px !important;
    }

    .menu .menu_item .dropdown-menu {
        margin-top: 25px !important;
        padding: 13px 17px !important;
        min-width: 265px !important;
    }

    .menu .menu_item .dropdown-menu .list_items .list_link {
        padding: 25px 10px !important;
        font-size: 2.5rem !important;
    }

    .nav-cart-icon svg {
        height: 3em !important;
        width: 3em !important;
    }

    .cart-badge {
        top: -20px;
        font-size: 1.4rem !important;
        width: 30px !important;
        height: 30px !important;
    }

    .right-items .btn-login {
        padding: 15px 40px !important;
        font-size: 1.7rem !important;
    }

    .custom-lang-dropdown {
        font-size: 1.7rem !important;
        min-width: 120px !important;
    }

    .custom-lang-dropdown button#langBtn {
        font-size: 1.7rem !important;
    }
}

/* Large screens (2560px - 2879px) */
@media (min-width: 2560px) and (max-width: 2879px) {
    .navbar {
        height: 100px !important;
        padding: 0 3rem !important;
    }

    .logo img,
    .navbar-logo {
        height: 100px !important;
        max-width: 210px !important;
    }

    .menu .menu_item .list_link {
        font-size: 2rem !important;
        padding: 5px 10px !important;
    }

    .menu .menu_item .dropdown-menu {
        margin-top: 17px !important;
        padding: 13px 17px !important;
        min-width: 260px !important;
    }

    .menu .menu_item .dropdown-menu .list_items .list_link {
        padding: 12px 10px !important;
        font-size: 2rem !important;
    }

    .nav-cart-icon svg {
        height: 2.7em !important;
        width: 2.7em !important;
    }

    .cart-badge {
        top: -15px;
        font-size: 1.4rem !important;
        width: 25px !important;
        height: 25px !important;
    }

    .right-items .btn-login {
        padding: 15px 40px !important;
        font-size: 1.6rem !important;
    }

    .custom-lang-dropdown {
        font-size: 1.5rem !important;
        min-width: 120px !important;
    }

    .custom-lang-dropdown button#langBtn {
        font-size: 1.5rem !important;
    }
}

/* Large screens (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .navbar {
        height: 80px !important;
        padding: 0 3rem !important;
    }

    .logo img,
    .navbar-logo {
        height: 80px !important;
        max-width: 200px !important;
    }

    .menu .menu_item .list_link {
        font-size: 1.4rem !important;
        padding: 5px 6px !important;
    }

    .menu .menu_item .dropdown-menu {
        margin-top: 18px !important;
        padding: 13px 17px !important;
        min-width: 270px !important;
    }

    .menu .menu_item .dropdown-menu .list_items .list_link {
        padding: 12px 10px !important;
        font-size: 1.4rem !important;
    }

    .nav-cart-icon svg {
        height: 2.3em !important;
        width: 2.3em !important;
    }

    .cart-badge {
        top: -11px;
        font-size: 1rem !important;
        width: 19px !important;
        height: 19px !important;
    }

    .right-items .btn-login {
        padding: 9px 20px !important;
        font-size: 1.3rem !important;
    }

    .custom-lang-dropdown {
        font-size: 1.3rem !important;
        min-width: 90px !important;
    }

    .custom-lang-dropdown button#langBtn {
        font-size: 1.3rem !important;
    }
}

/* Large screens (1600px - 1919px) */
@media (min-width: 1600px) and (max-width: 1919px) {
    .navbar {
        height: 70px !important;
        padding: 0 3rem !important;
    }

    .logo img,
    .navbar-logo {
        height: 70px !important;
        max-width: 190px !important;
    }

    .menu .menu_item .list_link {
        font-size: 1.3rem !important;
        padding: 5px 5px !important;
    }

    .menu .menu_item .dropdown-menu {
        margin-top: 15px !important;
        padding: 13px 17px !important;
        min-width: 260px !important;
    }

    .menu .menu_item .dropdown-menu .list_items .list_link {
        padding: 12px 10px !important;
        font-size: 1.3rem !important;
    }

    .nav-cart-icon svg {
        height: 2.2em !important;
        width: 2.2em !important;
    }

    .cart-badge {
        top: -10px;
        font-size: .9rem !important;
        width: 18px !important;
        height: 18px !important;
    }

    .right-items .btn-login {
        padding: 8px 20px !important;
        font-size: 1.2rem !important;
    }

    .custom-lang-dropdown {
        font-size: 1.2rem !important;
        min-width: 85px !important;
    }

    .custom-lang-dropdown button#langBtn {
        font-size: 1.2rem !important;
    }
}

/* Medium-Large screens (1440px - 1599px) */
@media (min-width: 1440px) and (max-width: 1599px) {
    .navbar {
        height: 65px !important;
        padding: 0 1rem !important;
    }

    .logo img,
    .navbar-logo {
        height: 65px !important;
        max-width: 185px !important;
    }

    .menu .menu_item .list_link {
        font-size: 1rem !important;
        padding: 5px 2px !important;
    }

    .menu .menu_item .dropdown-menu {
        margin-top: 13px !important;
        padding: 12px 17px !important;
        min-width: 260px !important;
    }

    .menu .menu_item .dropdown-menu .list_items .list_link {
        padding: 5px 10px !important;
        font-size: 1rem !important;
    }

    .nav-cart-icon svg {
        height: 2.1em !important;
        width: 2.1em !important;
    }

    .cart-badge {
        top: -9px;
        font-size: .8rem !important;
        width: 17px !important;
        height: 17px !important;
    }

    .right-items .btn-login {
        padding: 7px 20px !important;
        font-size: 1.1rem !important;
    }

    .custom-lang-dropdown {
        font-size: 1.1rem !important;
        min-width: 80px !important;
    }

    .custom-lang-dropdown button#langBtn {
        font-size: 1.1rem !important;
    }
}

/* Medium screens (1366px - 1439px) */
@media (min-width: 1366px) and (max-width: 1439px) {
    .navbar {
        height: 60px !important;
        padding: 0 1rem !important;
    }

    .logo img,
    .navbar-logo {
        height: 60px !important;
        max-width: 180px !important;
    }

    .menu .menu_item .list_link {
        font-size: .9rem !important;
        padding: 5px 0px !important;
    }

    .menu .menu_item .dropdown-menu {
        margin-top: 10px !important;
        padding: 10px 15px !important;
        min-width: 260px !important;
        font-size: .9rem !important;
    }

    .nav-cart-icon svg {
        height: 2em !important;
        width: 2em !important;
    }

    .cart-badge {
        top: -8px;
        font-size: .7rem !important;
        width: 16px !important;
        height: 16px !important;
    }

    .right-items .btn-login {
        padding: 7px 20px !important;
        font-size: 1rem !important;
    }

    .custom-lang-dropdown {
        font-size: 1rem !important;
        min-width: 80px !important;
    }

    .custom-lang-dropdown button#langBtn {
        font-size: 1rem !important;
    }
}

/* Small-Medium screens (1024px - 1280px) */
@media (min-width: 1024px) and (max-width: 1280px) {
    .navbar {
        height: 50px !important;
        padding: 0 .5rem !important;
    }

    .logo img,
    .navbar-logo {
        height: 50px !important;
        max-width: 170px !important;
    }

    .menu .menu_item .dropdown-menu {
        margin-top: 10px !important;
        padding: 8px 15px !important;
        min-width: 260px !important;
    }

    .menu .menu_item .dropdown-menu .list_items .list_link {
        padding: 5px 10px !important;
        font-size: 1rem !important;
    }

    .nav-cart-icon svg {
        height: 2em !important;
        width: 2em !important;
    }

    .menu .menu_item {
        gap: 15px !important;
    }

    .menu .menu_item .list_link {
        font-size: .8rem !important;
        padding: 5px 0px !important;
    }

    .nav-cart-icon svg {
        height: 1.8em !important;
        width: 1.8em !important;
    }

    .cart-badge {
        top: -8px;
        font-size: .8rem !important;
        width: 15px !important;
        height: 15px !important;
    }

    .right-items .btn-login {
        padding: 5px 20px !important;
        font-size: .9rem !important;
    }

    .custom-lang-dropdown {
        font-size: .8rem !important;
        min-width: 80px !important;
    }

    .custom-lang-dropdown button#langBtn {
        font-size: .8rem !important;
    }
}

/* Tablet screens (768px - 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    .navbar {
        height: 70px !important;
    }

    .logo img,
    .navbar-logo {
        height: 70px !important;
        max-width: 190px !important;
    }

    .hamburger {
        display: block !important;
    }

    .menu {
        display: none !important;
    }

    .right-side {
        display: block !important;
    }

    .nav-cart-icon {
        display: block !important;
    }

    .sidebar {
        top: 70px;
        left: -350px;
        width: 350px;
    }

    .sidebar ul li a {
        font-size: 1.1rem !important;
        padding: 7px 10px !important;
    }

    .right-items {
        gap: 10px;
    }

    .nav-cart-icon a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-lang-dropdown {
        margin-right: 5px;
    }

    .nav-cart-icon svg {
        height: 1.8em;
        width: 1.8em;
    }

    .cart-badge {
        top: -11px;
        right: -8px;
        font-size: 0.8rem;
        width: 18px;
        height: 18px;
    }

    .right-items .btn-login {
        display: none !important;
    }

    .sidebar .btn-login {
        display: block !important;
        width: 100% !important;
        font-size: 1.2rem !important;
    }
}

/* Mobile screens (577px - 767px) */
@media (min-width: 577px) and (max-width: 767px) {
    .navbar {
        height: 70px !important;
    }

    .logo img,
    .navbar-logo {
        height: 70px !important;
        max-width: 190px !important;
    }

    .hamburger {
        display: block !important;
    }

    .menu {
        display: none !important;
    }

    .right-side {
        display: block !important;
    }

    .nav-cart-icon {
        display: block !important;
    }

    .sidebar {
        top: 70px;
        left: -350px;
        width: 350px;
    }

    .sidebar ul li a {
        font-size: 1.1rem !important;
        padding: 7px 10px !important;
    }

    .right-items {
        gap: 10px;
    }

    .nav-cart-icon a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-lang-dropdown {
        margin-right: 5px;
    }

    .nav-cart-icon svg {
        height: 1.8em;
        width: 1.8em;
    }

    .cart-badge {
        top: -11px;
        right: -8px;
        font-size: 0.8rem;
        width: 18px;
        height: 18px;
    }

    .right-items .btn-login {
        display: none !important;
    }

    .sidebar .btn-login {
        display: block !important;
        width: 100% !important;
        font-size: 1.2rem !important;
    }
}

/* Small mobile screens (376px - 576px) */
@media (min-width: 376px) and (max-width: 576px) {
    .navbar {
        height: 60px !important;
    }

    .logo img,
    .navbar-logo {
        height: 60px !important;
        max-width: 180px !important;
    }

    .hamburger {
        display: block !important;
    }

    .menu {
        display: none !important;
    }

    .right-side {
        display: block !important;
    }

    .nav-cart-icon {
        display: block !important;
    }

    .sidebar {
        top: 60px;
        left: -320px;
        width: 320px;
    }

    .sidebar ul li a {
        font-size: 1rem !important;
        padding: 7px 10px !important;
    }

    .right-items {
        gap: 10px;
    }

    .nav-cart-icon a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-lang-dropdown {
        margin-right: 5px;
    }

    .nav-cart-icon svg {
        height: 1.8em;
        width: 1.8em;
    }

    .cart-badge {
        top: -11px;
        right: -8px;
        font-size: 0.8rem;
        width: 18px;
        height: 18px;
    }

    .right-items .btn-login {
        display: none !important;
    }

    .sidebar .btn-login {
        display: block !important;
        width: 100% !important;
        font-size: 1.2rem !important;
    }
}

/* Extra small mobile screens (320px - 375px) */
@media (min-width: 320px) and (max-width: 375px) {
    .navbar {
        height: 60px !important;
    }

    .logo img,
    .navbar-logo {
        height: 60px !important;
        max-width: 180px !important;
    }

    .hamburger {
        display: block !important;
    }

    .menu {
        display: none !important;
    }

    .right-side {
        display: block !important;
    }

    .nav-cart-icon {
        display: block !important;
    }

    .sidebar {
        top: 60px;
        left: -320px;
        width: 320px;
    }

    .sidebar ul li a {
        font-size: 1rem !important;
        padding: 7px 10px !important;
    }

    .right-items {
        gap: 10px;
    }

    .nav-cart-icon a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-lang-dropdown {
        margin-right: 5px;
    }

    .nav-cart-icon svg {
        height: 1.8em;
        width: 1.8em;
    }

    .cart-badge {
        top: -11px;
        right: -8px;
        font-size: 0.8rem;
        width: 18px;
        height: 18px;
    }

    .right-items .btn-login {
        display: none !important;
    }

    .sidebar .btn-login {
        display: block !important;
        width: 100% !important;
        font-size: 1.2rem !important;
    }
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: none;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
  box-shadow: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-gold) !important;
  text-shadow: none;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 100%;
}

/* ==============================
   HERO SECTION
   ============================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  /* flat */
  overflow: hidden;
}

.hero-section::before {
  display: none;
}

.hero-bg-overlay {
  display: none;
}

.main_hero {
  position: relative;
  z-index: 3;
  padding: 60px 40px;
  background: transparent;
  /* flat: no blur */
  border-radius: 20px;
  box-shadow: none;
  /* duplicate removed */
  transform: translateY(20px);
  opacity: 0;
  animation: heroFadeIn 1s ease forwards 0.5s;
}

@keyframes heroFadeIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-heading {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  font-family: 'Rajdhani', sans-serif;
  color: #ffd700;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* goldGlow animation removed for flat design */

.hero-text {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #34424A;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-shadow: none;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: #ffd700 !important;
  color: var(--text-dark) !important;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  display: none;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: none;
  color: var(--text-dark) !important;
}

.hero-btn .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.hero-btn:hover .icon-circle {
  transform: rotate(360deg) scale(1.1);
  background: #FFFFFF;
}

/* Feature List */

.hero-btn:hover::before {
  left: 100%;
}

.icon-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-btn:hover .icon-circle {
  transform: rotate(360deg);
  background: #FFFFFF;
}

/* ==============================
   SERVICES SECTION
   ============================== */

.services-section {
  padding: 60px 20px 40px;
  background: #FAFBFC;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent;
  pointer-events: none;
}

.services-section .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: rgba(255, 180, 0, 0.06);
  z-index: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  background: none;
  padding: 0;
  bottom: auto;
  right: auto;
}

.text-overlay {
  position: relative;
  z-index: 2;
}

.text-overlay h5 {
  font-size: 0.85rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 16px;
  background: transparent;
  border-radius: 20px;
}

.below-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.below-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #0F0F0F;
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.3;
}

/* Project Button - Cool Style */
.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #ffd700;
  background-size: 200% 200%;
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-btn::before {
  display: none;
}

.project-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: none;
  background-position: 100% 0;
  color: #000;
  text-decoration: none;
}

.project-btn:hover::before {
  left: 100%;
}

.project-btn:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: none;
}

.project-btn i {
  transition: transform 0.3s ease;
}

.project-btn:hover i {
  transform: translateX(5px);
}

/* Show Gallery Container */
.show_gallery {
  text-align: center;
  margin-top: 2rem;
}

/* Service Cards */
.main-services {
  padding: 60px 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.main-services .container-fluid {
  position: relative;
}

.slider-wrapper {
  position: relative;
  margin: 0 80px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 25px;
  padding: 30px 10px;
  animation: smoothScroll 30s linear infinite;
  width: max-content;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes smoothScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slider-card {
  flex: 0 0 320px;
  width: 320px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.slider-card:hover {
  transform: translateY(-5px);
}

.service_card {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 35px 25px 30px;
  background: #FFFFFF;
  /* flat: no blur */
  /* flat: no webkit blur */
  border-radius: 16px;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: none;
  border: 1px solid #F0F0F0;
}

.service_card::before {
  display: none;
}

.service_card::after {
  display: none;
}

.service_card:hover {
  transform: translateY(-4px);
  border-color: #ffd700;
}

.service_card:hover::before {
  opacity: 0;
}

.service_card:hover::after {
  opacity: 1;
}

.service_card:nth-child(2n)::before {
  background: transparent;
}

.service_card:nth-child(3n)::before {
  background: transparent;
}

.service_card .card-body {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
}

.service_card:hover .card-body {
  transform: translateY(-5px);
}

.service_card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 10;
}

.service_card:hover img {
  transform: scale(1.08) translateY(-3px);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-shadow: none;
  transition: all 0.3s ease;
}

.service_card:hover .card-title {
  color: var(--primary-gold);
  text-shadow: none;
  transform: translateY(-3px);
}

.card-text {
  font-size: 1rem;
  color: #34424A;
  line-height: 1.6;
  text-shadow: none;
  transition: all 0.3s ease;
}

.service_card:hover .card-text {
  color: #0F0F0F;
}


.underline {
  width: 50px;
  height: 3px;
  background: #FFFFFF;
  margin: 10px auto;
  border-radius: 2px;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: none;
  color: #0F0F0F;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border: 1px solid #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #ffd700;
  color: #0F0F0F;
  transform: translateY(-50%) scale(1.05);
  box-shadow: none;
}

.previous-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

/* More Services Section */
.more_services {
  background: #FFFFFF;
  /* flat: no blur */
  border-radius: 20px;
  margin: 40px 20px 0;
  text-align: center;
}

.more_services h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-shadow: none;
}

.more_services h5 {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #6B7280;
  margin-bottom: 25px;
  text-shadow: none;
}

/* ==============================
   WHY CHOOSE US SECTION
   ============================== */

.why-choose-us {
  padding: 120px 0;
  background: #FFFFFF;
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

.why-choose-us .container {
  position: relative;
  z-index: 2;
}

.why-choose-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  text-shadow: none;
  margin-bottom: 60px;
}

.feature-list {
  background: #FFFFFF;
  /* flat: no blur */
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: none;
  /* duplicate removed */
  border: 1px solid #E9ECEF;
}

.feature-item {
  padding: 20px 0;
  padding-bottom: 15px; margin-bottom: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  background: transparent;
  border-radius: 10px;
  padding: 20px 15px;
}

.feature-icon {
  width: 50px;
  display: flex;
  justify-content: center;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-shadow: none;
}

.feature-text p {
  color: #34424A;
  margin: 0;
  line-height: 1.5;
  text-shadow: none;
}

/* ==============================
   PRODUCT SECTION
   ============================== */

.product_section {
  background: #F8F9FA;
}

.home-product-slider{
    margin-bottom: 30px;
}

.section-header {
  padding: 0px 20px 40px;
  position: relative;
  overflow: hidden;
  background: #FAFBFC;
}

.section-header .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: rgba(255, 180, 0, 0.06);
  z-index: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  background: none;
  padding: 0;
  bottom: auto;
  right: auto;
}

.product_banner_text {
  text-align: center;
  padding: 0 40px 20px;
}

.product_banner_text h4 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.product_banner {
  background: #ffd700;
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  margin: 60px 20px 0;
  position: relative;
  overflow: hidden;
}

.product_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.product_banner h4 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  text-shadow: none;
}

.product_banner .hero-btn {
  position: relative;
  z-index: 2;
}

.product_heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 60px;
  text-shadow: none;
}

/* Product Cards */
.product_slider_wrapper {
  margin: 0 80px;
}

.product_slider_track {
  gap: 30px;
  padding: 20px 0;
}

.product_card {
  flex: 0 0 280px;
  background: #FFFFFF;
  /* flat: no blur */
  border-radius: 20px;
  padding: 25px;
  box-shadow: none;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #E9ECEF;
}

.product_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: left 0.6s ease;
}

.product_card:hover {
  transform: translateY(-10px);
  box-shadow: none;
}

.product_card:hover::before {
  left: 100%;
}

.product_card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.product_card:hover img {
  transform: scale(1.05);
}

.product-body {
  text-align: center;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-shadow: none;
}

.product-subtitle {
  font-size: 0.95rem;
  color: #34424A;
  margin-bottom: 15px;
  text-shadow: none;
}

.price_cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: none;
}

.cart-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon:hover {
  transform: scale(1.1);
  box-shadow: none;
}

/* Product Slider Buttons */
.product_slider_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FFFFFF;
  /* flat: no blur */
  box-shadow: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border: 1px solid #E9ECEF;
}

.product_slider_btn:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

.product_previous_btn {
  left: 20px;
}

.product_next_btn {
  right: 20px;
}

/* ==============================
   PROJECT SECTION
   ============================== */

.project_section {
  background: #f1f3f5;
  position: relative;
}

.project_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

.project_section .container-fluid {
  position: relative;
  z-index: 2;
}

.project_card {
  background: #FFFFFF;
  /* flat: no blur */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.5s ease;
  position: relative;
  border: 1px solid #E9ECEF;
}

.project_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project_card:hover {
  transform: translateY(-6px);
  border-color: #ffd700;
}

.project_card:hover::before {
  opacity: 1;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.project_card:hover .image-wrapper img {
  transform: scale(1.1);
}

.project_card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 0;
}

.project_card .overlay .hero-btn {
  margin: 0;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}

.project_card:hover .overlay {
  opacity: 1;
}

.project_title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 25px;
  margin: 0;
  text-align: center;
  text-shadow: none;
}

.show_gallery {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-bottom: 30px
}

/* ==============================
   LOGO SECTION - Scrollable
   ============================== */

.logo-scroll-container {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: #F8F9FA;
}

.logo-scroll-wrapper {
  display: flex;
  animation: logoScroll 25s linear infinite;
  width: max-content;
}

.logo-scroll-wrapper:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-wrapper {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px 35px;
  box-shadow: none;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 100px;
  margin: 0 15px;
  border: 1px solid #E9ECEF;
  flex-shrink: 0;
}

.logo-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: none;
  border-color: #ffd700;
}

.logo-img {
  width: auto;
  height: 60px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
}

.logo-wrapper:hover .logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* ==============================
   FOOTER STYLES
   ============================== */

.footer {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding-top: 20px; margin-top: 20px;
  border-top: 1px solid #E9ECEF;
}

/* Footer Background Animation */
.footer-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element-2 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 10%;
  background: transparent;
  animation-delay: 2s;
}

.floating-element-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 80%;
  background: transparent;
  animation-delay: 4s;
}

/* Main Footer Content */
.footer-main {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
}

/* Footer Logo Section */
.footer-logo-section {
  position: relative;
}

.footer-logo-wrapper {
  display: inline-block;
  padding: 20px;
  background: #FFFFFF;
  /* flat: no blur */
  border-radius: 50%;
  box-shadow: none;
  transition: all 0.5s ease;
  margin-bottom: 20px;
  border: 1px solid #E9ECEF;
}

.footer-logo-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: none;
  background: #FFFFFF;
}

.footer_logo {
  max-width: 80px;
  height: auto;
  filter: none;
  transition: all 0.3s ease;
}

.footer-logo-wrapper:hover .footer_logo {
  transform: scale(1.1);
}

.brand-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.brand-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  text-shadow: none;
  margin: 0;
}

/* Footer Cards Row - Equal Heights */
.footer-cards-row {
  display: flex;
  flex-wrap: wrap;
}

.footer-card-col {
  display: flex;
}

/* Footer Cards */
.footer-card {
  padding: 30px 25px;
  margin-bottom: 20px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
}

.footer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: left 0.8s ease;
}

.footer-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
  /* duplicate removed */
}

.footer-card:hover::before {
  left: 100%;
}

/* Footer Card Headers */
.footer-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  position: relative;
}

.footer-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.footer-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.footer-card:hover .footer-icon {
  transform: rotate(360deg);
  box-shadow: none;
}

.footer-icon i {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.footer_title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  text-shadow: none;
}

/* Footer Card Body */
.footer-card-body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer_text {
  color: #34424A;
  line-height: 1.7;
  text-shadow: none;
  margin: 0;
  font-size: 1rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-shadow: none;
  position: relative;
  overflow: hidden;
}

.footer-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: left 0.3s ease;
  z-index: -1;
}

.footer-link:hover {
  color: #ffd700;
  transform: translateX(5px);
  background: transparent;
}

.footer-link:hover::before {
  left: 0;
}

.footer-link i {
  margin-right: 10px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.footer-link:hover i {
  color: #ffd700;
  transform: translateX(3px);
}

/* Contact Items */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  padding-bottom: 12px; margin-bottom: 12px;
  transition: all 0.3s ease;
}


.contact-item:hover {
  background: transparent;
  border-radius: 8px;
  padding: 12px 8px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-item:hover .contact-icon {
  background: #ffd700;
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-text {
  flex: 1;
}

.contact-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
}

.contact-link:hover {
  color: #ffd700;
  transform: translateX(2px);
}

/* Footer Bottom */
.footer-bottom {
  background: transparent;
  /* flat: no blur */
  padding-top: 20px; margin-top: 20px;
  padding: 25px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid #E9ECEF;
}

/* Footer Bottom Logo */
.footer-bottom-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-bottom-logo-img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: all 0.3s ease;
}

.footer-bottom-logo-img:hover {
  transform: scale(1.05);
}

.footer-bottom-tagline {
  font-size: 0.8rem;
  color: #ffd700;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.copyright-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-shadow: none;
}

/* Social Links */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  /* flat: no blur */
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #E9ECEF;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffd700;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: none;
  color: var(--text-dark);
}

.social-link:hover::before {
  opacity: 1;
}

/* Back to Top Button */
.back-to-top-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #FFFFFF;
  
  color: var(--text-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.back-to-top-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.back-to-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.back-to-top-btn:hover::before {
  opacity: 1;
}

.back-to-top-btn:active {
  transform: translateY(-1px);
}

/* ==============================
   FOOTER RESPONSIVE DESIGN
   ============================== */

@media (max-width: 768px) {
  .footer-main {
    padding: 60px 0 30px;
  }
  
  .footer-card {
    padding: 25px 20px;
    margin-bottom: 15px;
  }
  
  .footer-card-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  
  .footer-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  
  .footer_title {
    font-size: 1.2rem;
  }
  
  .brand-title {
    font-size: 2rem;
  }
  
  .brand-subtitle {
    font-size: 1rem;
  }
  
  .footer-social {
    justify-content: center;
    margin-top: 15px;
  }
  
  .copyright-text {
    text-align: center;
  }

  .footer-bottom .row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom-logo {
    order: -1;
    margin-bottom: 10px;
    flex-direction: column;
    gap: 5px;
  }

  .footer-bottom-logo-img {
    max-height: 32px;
  }

  .footer-bottom-tagline {
    font-size: 0.7rem;
  }
  
  .contact-item {
    padding: 10px 0;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }
  
  .floating-element {
    display: none;
  }
}

@media (max-width: 576px) {
  .footer-logo-wrapper {
    padding: 15px;
  }
  
  .footer_logo {
    max-width: 60px;
  }
  
  .footer-card {
    padding: 20px 15px;
  }
  
  .footer-card-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .footer-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .brand-title {
    font-size: 1.8rem;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .back-to-top-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ==============================
   ALERT BOX
   ============================== */

.alert-box {
  position: fixed;
  top: 100px;
  right: 20px;
  background: transparent;
  /* flat: no blur */
  box-shadow: none;
  border-radius: 15px;
  padding: 20px 25px;
  color: var(--text-primary);
  font-weight: 500;
  box-shadow: none;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 10000;
  max-width: 350px;
}

.alert-box.alert-show {
  transform: translateX(0);
  opacity: 1;
}

.alert-box.alert-success {
  background: #E0F8F3;
  padding-left: 20px;
}

.alert-box.alert-warning {
  background: transparent;
  padding-left: 20px;
}

.alert-box.alert-error {
  background: transparent;
  padding-left: 20px;
}

/* ==============================
   ANIMATIONS & EFFECTS
   ============================== */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.pulsing {
  animation: pulse 2s ease-in-out infinite;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */

@media (max-width: 1200px) {
  .slider-wrapper,
  .product_slider_wrapper {
    margin: 0 60px;
  }
  
  .slider-btn,
  .product_slider_btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .slider-wrapper,
  .product_slider_wrapper {
    margin: 0 40px;
  }
  
  .main_hero {
    padding: 40px 30px;
  }
  
  .services-section,
  .why-choose-us,
  .project_section {
    padding: 80px 0;
  }
  
  .slider-card {
    flex: 0 0 300px;
  }
  
  .product_card {
    flex: 0 0 250px;
  }

  /* Gallery Section Responsive */
  .gallery-section.qyp-gallery-section {
    padding: 80px 0;
  }

  .gallery-section.qyp-gallery-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
  }

  .qyp-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }

  .qyp-image-wrapper {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .slider-wrapper,
  .product_slider_wrapper {
    margin: 0 10px;
  }
  
  .slider-track {
    gap: 15px;
    padding: 20px 5px;
  }
  
  .slider-card {
    flex: 0 0 260px;
    width: 260px;
  }
  
  .product_card {
    flex: 0 0 220px;
  }
  
  .service_card {
    height: 340px;
    padding: 25px 20px;
  }
  
  .main_hero {
    padding: 30px 20px;
  }
  
  .feature-list {
    padding: 30px 20px;
  }
  
  .more_services {
    margin: 40px 10px 0;
    padding: 60px 20px;
  }

  /* Gallery Section Tablet */
  .gallery-section.qyp-gallery-section {
    padding: 60px 0;
  }

  .gallery-section.qyp-gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .qyp-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 15px;
  }

  .qyp-project-card:hover {
    transform: translateY(-10px) scale(1.01);
  }

  .qyp-image-wrapper {
    height: 240px;
  }

  .qyp-gallery-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .qyp-project-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  .slider-card {
    flex: 0 0 260px;
  }
  
  .product_card {
    flex: 0 0 200px;
  }
  
  .service_card {
    height: 350px;
    padding: 25px 15px;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .main_hero {
    padding: 25px 15px;
    margin: 0 10px;
  }
  
  .services-section,
  .why-choose-us,
  .project_section {
    padding: 60px 0;
  }
  

  /* Gallery Section Mobile */
  .gallery-section.qyp-gallery-section {
    padding: 50px 0;
  }

  .gallery-section.qyp-gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }

  .gallery-section.qyp-gallery-section h2::after {
    width: 80px;
    height: 4px;
  }

  .qyp-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .qyp-project-card {
    border-radius: 20px;
  }

  .qyp-project-card:hover {
    transform: translateY(-8px) scale(1);
  }

  .qyp-image-wrapper {
    height: 220px;
  }

  .qyp-gallery-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    gap: 10px;
  }

  .qyp-gallery-btn .icon-circle {
    width: 35px;
    height: 35px;
  }

  .qyp-project-body {
    padding: 20px 15px;
    min-height: 85px;
  }

  .qyp-project-title {
    font-size: 1.05rem;
    line-height: 1.4;
  }
}
  
  .product_banner {
    margin: 0 10px 40px;
    padding: 60px 20px;
  }
  
  .feature-item:hover {
    transform: none;
    padding: 20px 0;
    background: none;
  }
  
  .alert-box {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }
  
  .alert-box.alert-show {
    transform: translateY(0);
  }


/* ==============================
   UTILITY CLASSES
   ============================== */

.text-gradient {
  color: #ffd700;
}

.glass-card {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 20px;
}

.hover-float:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.hover-glow:hover {
  box-shadow: none;
  transition: border-color 0.2s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: #ffd700;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #FFFFFF;
}

/* ==============================
   SERVICES PAGE STYLES
   ============================== */

/* Services Section */
.our_services {
  padding: 120px 0 80px;
  background: #2C3E50;
  position: relative;
  overflow: hidden;
}

.our_services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.our_services .container-fluid {
  position: relative;
  z-index: 2;
}

/* Services Page - Our Services Section */
.our_services {
  padding: 100px 0 80px;
  background: #f1f3f5;
  position: relative;
  overflow: hidden;
}

.our_services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  animation: pulseGlow 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.service_heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  text-align: center;
  color: #0F0F0F;
  margin-bottom: 70px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
}

.service_heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #ffd700;
  border-radius: 10px;
  box-shadow: none;
}

/* Service Category Filter Buttons */
.service-cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 30px;
  max-width: 1450px;
  margin: 0 auto 25px;
}

.service-cat-btn {
  padding: 8px 22px;
  border: 2px solid #ffd700;
  background: transparent;
  color: #000000;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.service-cat-btn:hover {
  background: transparent;
}

.service-cat-btn.active {
  background: #ffd700;
  color: #0F0F0F;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  max-width: 1450px;
  margin: 0 auto;
}

.services-grid .service_card {
  background: #fff;
  border-radius: 16px;
  padding: 0 0 28px 0;
  box-shadow: none;
  border: 1px solid #F0F0F0;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.services-grid .service_card::before {
  display: none;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.services-grid .service_card::after {
  display: none;
}

.services-grid .service_card:hover {
  transform: translateY(-4px);
  border-color: #ffd700;
}

.services-grid .service_card:hover::before {
  display: none;
}

.services-grid .service_card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 0;
  position: relative;
  z-index: 2;
  filter: none;
  transition: all 0.35s ease;
  margin: 28px auto 20px;
}

.services-grid .service_card:hover img {
  transform: scale(1.15) translateY(-5px);
  filter: none;
}

.services-grid .card-body {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 20px;
  position: relative;
  z-index: 2;
}

.services-grid .card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0F0F0F;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.services-grid .service_card:hover .card-title {
  color: #ffd700;
  transform: translateY(-2px);
}

.services-grid .underline {
  width: 50px;
  height: 3px;
  background: #ffd700;
  margin: 8px auto 12px;
  border-radius: 2px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.services-grid .service_card:hover .underline {
  width: 80px;
  box-shadow: none;
}

.services-grid .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  text-shadow: none;
  margin-bottom: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-grid .show_project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 11px 0;
  margin-top: auto;
  background: #ffd700;
  color: #0F0F0F;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.services-grid .show_project::before {
  display: none;
}

.services-grid .show_project:hover::before {
  left: 100%;
}

.services-grid .service_card:hover .show_project {
  transform: translateY(-2px);
  box-shadow: none;
  background: #E68A00;
}

/* Gallery Section - Projects */
/* Gallery Section - Our Projects */
.gallery-section.qyp-gallery-section {
  padding: 120px 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.gallery-section.qyp-gallery-section::before {
  display: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-30px, -30px) rotate(5deg); }
  66% { transform: translate(30px, 30px) rotate(-5deg); }
}

.gallery-section.qyp-gallery-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  text-align: center;
  color: #0F0F0F;
  margin-bottom: 80px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.gallery-section.qyp-gallery-section h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: #ffd700;
  border-radius: 10px;
  box-shadow: none;
}

.qyp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}

.qyp-project-card {
  background: transparent;
  /* flat: no blur */
  /* flat: no webkit blur */
  border-radius: 25px;
  overflow: hidden;
  box-shadow: none;
  /* duplicate removed */
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.qyp-project-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: transparent;
  border-radius: 25px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.6s ease;
}

.qyp-project-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: none;
  /* duplicate removed */
}

.qyp-project-card:hover::before {
  opacity: 1;
}

.qyp-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #F8F9FA;
}

.qyp-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}

.qyp-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(0.85) contrast(1.1);
}

.qyp-project-card:hover .qyp-image-wrapper img {
  transform: scale(1.2) rotate(2deg);
  filter: brightness(1) contrast(1.2);
}

.qyp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  /* flat: no blur */
  /* flat: no webkit blur */
  z-index: 3;
}

.qyp-project-card:hover .qyp-overlay {
  opacity: 1;
}

.qyp-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: #ffd700!important;
  color: #000 !important;
  
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: none;
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.qyp-gallery-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: left 0.6s ease;
}

.qyp-gallery-btn:hover::before {
  left: 100%;
}

.qyp-project-card:hover .qyp-gallery-btn {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: 0.1s;
}

.qyp-gallery-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: none;
}

.qyp-gallery-btn .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.qyp-gallery-btn:hover .icon-circle {
  transform: rotate(360deg) scale(1.1);
  background: #FFFFFF;
  box-shadow: none;
}

.qyp-gallery-btn .icon-circle i {
  font-size: 1rem;
}

.qyp-project-body {
  padding: 30px 25px;
  background: #FFFFFF;
  position: relative;
  padding-top: 20px; margin-top: 20px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qyp-project-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.qyp-project-card:hover .qyp-project-body::before {
  width: 100%;
}

.qyp-project-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F0F0F;
  margin: 0;
  text-align: center;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.qyp-project-card:hover .qyp-project-title {
  color: #ffd700;
  transform: translateY(-2px);
}

/* Explore Services Section */
.explore_services_new {
  padding: 80px 20px;
  background: #3A4A5C;
  border-radius: 20px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.explore_services_new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}

.explore-card {
  position: relative;
  z-index: 2;
  text-align: center;
}

.explore-content-full {
  max-width: 800px;
  margin: 0 auto;
}

.explore-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 15px;
  text-shadow: none;
}

.explore-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 25px;
  text-shadow: none;
}

.explore-desc {
  font-size: 1.1rem;
  color: #34424A;
  line-height: 1.6;
  text-shadow: none;
  margin: 0;
}

/* ==============================
   SERVICES PAGE RESPONSIVE
   ============================== */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  
  .services-grid .service_card img {
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 768px) {
  .our_services {
    padding: 80px 0 60px;
  }
  
  .service_heading {
    margin-bottom: 50px;
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
  
  .services-grid .service_card img {
    width: 64px;
    height: 64px;
  }
  
  .services-grid .service_card:hover {
    transform: translateY(-5px);
  }
  
  .gallery-section.qyp-gallery-section {
    padding: 60px 0;
  }
  
  .gallery-section h2 {
    margin-bottom: 40px;
  }
  
  .qyp-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .qyp-image-wrapper {
    height: 250px;
  }
  
  .explore_services_new {
    padding: 60px 15px;
    margin: 60px 0;
  }
}

@media (max-width: 576px) {
  .our_services {
    padding: 60px 0 40px;
  }
  
  .service_heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 15px;
  }
  
  .services-grid .service_card {
    border-radius: 14px;
  }
  
  .services-grid .service_card img {
    width: 60px;
    height: 60px;
  }
  
  .services-grid .card-body {
    padding: 0 18px 16px;
  }
  
  .services-grid .card-title {
    font-size: 1.2rem;
  }
  
  .services-grid .show_project {
    width: 140px;
    padding: 10px 0;
    font-size: 0.82rem;
  }

  .qyp-image-wrapper {
    height: 220px;
  }
  
  .qyp-project-body {
    padding: 20px;
  }
  
  .explore_services_new {
    padding: 40px 15px;
    margin: 40px 0;
  }
}

/* Services Bottom Text */
.svc-bottom-text {
  max-width: 80%;
  margin: 0 auto;
  padding: 50px 20px 60px;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  text-align: left;
}

/* ==============================
   About Us PAGE RESPONSIVE
   ============================== */

  
    .about-hero-section {
        width: 100%;
        min-height: 60vh;
        height: 60vh;
        max-height: 520px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .about-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(44, 62, 80, 0.55);
        z-index: 1;
    }

    .about-hero-content {
        position: relative;
        z-index: 2;
        color: #fff;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about-hero-title {
        font-size: 2.8rem;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
        text-shadow: none;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
        font-weight: 400;
        color: #e0e0e0;
        text-shadow: none;
        max-width: 600px;
    }

    .about-main-section {
        width: 100%;
        background: var(--concrete-dark);
        padding: 3rem 0 2rem 0;

    }

    .about-main-content {
        max-width: 1100px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        gap: 3rem;
    }

    .about-main-left {
        flex: 2;
        min-width: 0;
    }

    .about-main-heading {
        font-size: 2rem;
        font-weight: 600;
        color: rgb(33, 37, 41);
        font-family: 'Rajdhani', sans-serif;
        margin-bottom: 1.2rem;
    }

    .about-main-text {
        font-weight: 400;
        text-align: left;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 400;
        font-size: 1.05rem;
        color: #34424A;
        line-height: 1.8;
        margin-top: 1rem;
        padding-top: 5px;
    }

    .about-main-right {
        flex: 1;
        min-width: 220px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .check-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
        background: #f7f7f7;
        border-radius: 18px;
        padding: 1.5rem 1.2rem;
        box-shadow: none;
        min-width: 210px;
    }

    .check-list li {
        font-size: 1.08rem;
        font-weight: 500;
        color: #222;
        background: #fff;
        border-radius: 16px;
        padding: 0.6rem 1.1rem;
        display: flex;
        align-items: center;
        box-shadow: none;
        transition: background 0.2s;
    }

    .check-list li::before {
        content: "\2714";
        color: #f9b233;
        margin-right: 10px;
        font-size: 1.2rem;
        font-weight: bold;
    }

    .image-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .image-container img {
        width: 100%;
        height: 16rem;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

    .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px;
        background: rgba(0, 0, 0, .8);
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;
    }

    .overlay button {
        background-color: hsla(0, 0%, 100%, .2);
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        font-size: 14px;
    }

    .gallery_title {
        font-size: 1.2rem;
        font-weight: 500;
        color: rgb(33, 37, 41) !important;
        font-family: 'Rajdhani', sans-serif;
        text-transform: capitalize;
    }

    .gallery_desc {
        font-size: 1rem;
        font-weight: 400;
        color: rgb(46, 46, 46) !important;
        font-family: 'Rajdhani', sans-serif;
        padding-left: 16px;
        padding-right: 16px;
    }

    @media (min-width: 2560px) and (max-width: 3000px) {
        .about-hero-section {
            width: 100% !important;
            min-height: 70vh !important;
            height: 70vh !important;
            max-height: 540px !important;
        }

        .about-hero-content {
            width: 100% !important;
        }

        .about-hero-title {
            font-size: 3.2rem !important;
            margin-bottom: 0.5rem !important;
        }

        .about-hero-subtitle {
            font-size: 1.7rem !important;
            max-width: 600px !important;
        }

        .about-main-section {
            width: 100% !important;
            padding: 3rem 0 2rem 0 !important;
            background: var(--concrete-dark);
        }

        .about-main-content {
            max-width: 1900px !important;
            width: 100% !important;
            margin: 0 auto !important;
            gap: 3rem !important;
        }

        .about-main-left {
            flex: 2 !important;
            min-width: 0 !important;
        }

        .about-main-heading {
            font-size: 2.7rem !important;
            margin-bottom: 1.2rem !important;
        }

        .about-main-text {
            font-size: 1.7rem !important;
            margin-top: 1rem !important;
            padding-top: 5px !important;
        }

        .about-main-right {
            flex: 1 !important;
            min-width: 260px !important;
        }

        .check-list {
            margin: 0 !important;
            gap: 1.1rem !important;
            padding: 1.5rem 1.2rem !important;
            min-width: 250px !important;
        }

        .check-list li {
            font-size: 1.7rem !important;
            padding: 0.6rem 1.1rem !important;
        }

        .gallery_container {
            padding: 0 2rem !important;
        }

        .image-container {
            width: 100% !important;
            margin-bottom: 20px !important;
            border-radius: 10px !important;
        }

        .image-container img {
            width: 100% !important;
            height: 30rem !important;
        }


        .overlay button {
            padding: 5px 10px !important;
            font-size: 18px !important;
        }

        .gallery_title {
            font-size: 1.7rem !important;
        }

        .gallery_desc {
            font-size: 1.5rem !important;
            padding-left: 6px !important;
            padding-right: 16px !important;
        }

        .show_gallery a {
            font-size: 1.8rem !important;
            padding: 12px 20px !important;
        }
    }
    @media (min-width: 2304px) and (max-width: 2559px) {
        .about-hero-section {
            width: 100% !important;
            min-height: 67vh !important;
            height: 67vh !important;
            max-height: 535px !important;
        }

        .about-hero-content {
            width: 100% !important;
        }

        .about-hero-title {
            font-size: 3.1rem !important;
            margin-bottom: 0.5rem !important;
        }

        .about-hero-subtitle {
            font-size: 1.6rem !important;
            max-width: 600px !important;
        }

        .about-main-section {
            width: 100% !important;
            padding: 3rem 0 2rem 0 !important;
        }

        .about-main-content {
            max-width: 1600px !important;
            width: 100% !important;
            margin: 0 auto !important;
            gap: 3rem !important;
        }

        .about-main-left {
            flex: 2 !important;
            min-width: 0 !important;
        }

        .about-main-heading {
            font-size: 2.6rem !important;
            margin-bottom: 1.2rem !important;
        }

        .about-main-text {
            font-size: 1.6rem !important;
            margin-top: 1rem !important;
            padding-top: 5px !important;
        }

        .about-main-right {
            flex: 1 !important;
            min-width: 250px !important;
        }

        .check-list {
            margin: 0 !important;
            gap: 1.1rem !important;
            padding: 1.5rem 1.2rem !important;
            min-width: 240px !important;
        }

        .check-list li {
            font-size: 1.6rem !important;
            padding: 0.6rem 1.1rem !important;
        }

        .gallery_container {
            padding: 0 2rem !important;
        }

        .image-container {
            width: 100% !important;
            margin-bottom: 20px !important;
            border-radius: 10px !important;
        }

        .image-container img {
            width: 100% !important;
            height: 25rem !important;
        }


        .overlay button {
            padding: 5px 10px !important;
            font-size: 16px !important;
        }

        .gallery_title {
            font-size: 1.6rem !important;
        }

        .gallery_desc {
            font-size: 1.4rem !important;
            padding-left: 6px !important;
            padding-right: 16px !important;
        }

        .show_gallery a {
            font-size: 1.7rem !important;
            padding: 12px 20px !important;
        }
    }

    @media (min-width: 1921px) and (max-width: 2303px) {
        .about-hero-section {
            width: 100% !important;
            min-height: 65vh !important;
            height: 65vh !important;
            max-height: 530px !important;
        }

        .about-hero-content {
            width: 100% !important;
        }

        .about-hero-title {
            font-size: 3rem !important;
            margin-bottom: 0.5rem !important;
        }

        .about-hero-subtitle {
            font-size: 1.5rem !important;
            max-width: 600px !important;
        }

        .about-main-section {
            width: 100% !important;
            padding: 3rem 0 2rem 0 !important;
        }

        .about-main-content {
            max-width: 1500px !important;
            width: 100% !important;
            margin: 0 auto !important;
            gap: 3rem !important;
        }

        .about-main-left {
            flex: 2 !important;
            min-width: 0 !important;
        }

        .about-main-heading {
            font-size: 2.5rem !important;
            margin-bottom: 1.2rem !important;
        }

        .about-main-text {
            font-size: 1.5rem !important;
            margin-top: 1rem !important;
            padding-top: 5px !important;
        }

        .about-main-right {
            flex: 1 !important;
            min-width: 250px !important;
        }

        .check-list {
            margin: 0 !important;
            gap: 1.1rem !important;
            padding: 1.5rem 1.2rem !important;
            min-width: 240px !important;
        }

        .check-list li {
            font-size: 1.5rem !important;
            padding: 0.6rem 1.1rem !important;
        }

        .gallery_container {
            padding: 0 2rem !important;
        }

        .image-container {
            width: 100% !important;
            margin-bottom: 20px !important;
            border-radius: 10px !important;
        }

        .image-container img {
            width: 100% !important;
            height: 23rem !important;
        }


        .overlay button {
            padding: 5px 10px !important;
            font-size: 17px !important;
        }

        .gallery_title {
            font-size: 1.4rem !important;
        }

        .gallery_desc {
            font-size: 1.3rem !important;
            padding-left: 6px !important;
            padding-right: 16px !important;
        }

        .show_gallery a {
            font-size: 1.6rem !important;
            padding: 12px 20px !important;
        }
    }

    @media (min-width: 1601px) and (max-width: 1920px) {
        .about-hero-section {
            width: 100% !important;
            min-height: 60vh !important;
            height: 60vh !important;
            max-height: 520px !important;
        }

        .about-hero-content {
            width: 100% !important;
        }

        .about-hero-title {
            font-size: 2.9rem !important;
            margin-bottom: 0.5rem !important;
        }

        .about-hero-subtitle {
            font-size: 1.3rem !important;
            max-width: 600px !important;
        }

        .about-main-section {
            width: 100% !important;
            padding: 3rem 0 2rem 0 !important;
        }

        .about-main-content {
            max-width: 1400px !important;
            width: 100% !important;
            margin: 0 auto !important;
            gap: 3rem !important;
        }

        .about-main-left {
            flex: 2 !important;
            min-width: 0 !important;
        }

        .about-main-heading {
            font-size: 2.3 !important;
            margin-bottom: 1.2rem !important;
        }

        .about-main-text {
            font-size: 1.2rem !important;
            margin-top: 1rem !important;
            padding-top: 5px !important;
        }

        .about-main-right {
            flex: 1 !important;
            min-width: 240px !important;
        }

        .check-list {
            margin: 0 !important;
            gap: 1.1rem !important;
            padding: 1.5rem 1.2rem !important;
            min-width: 230px !important;
        }

        .check-list li {
            font-size: 1.3rem !important;
            padding: 0.6rem 1.1rem !important;
        }

        .gallery_container {
            padding: 0 2rem !important;
        }

        .image-container {
            width: 100% !important;
            margin-bottom: 20px !important;
            border-radius: 10px !important;
        }

        .image-container img {
            width: 100% !important;
            height: 20rem !important;
        }


        .overlay button {
            padding: 5px 10px !important;
            font-size: 16px !important;
        }

        .gallery_title {
            font-size: 1.3rem !important;
        }

        .gallery_desc {
            font-size: 1.2rem !important;
            padding-left: 6px !important;
            padding-right: 16px !important;
        }

        .show_gallery a {
            font-size: 1.5rem !important;
            padding: 10px 20px !important;
        }
    }

    @media (min-width: 1201px) and (max-width: 1366px) {
        .about-hero-section {
            width: 100% !important;
            min-height: 60vh !important;
            height: 60vh !important;
            max-height: 520px !important;
        }

        .about-hero-content {
            width: 100% !important;
        }

        .about-hero-title {
            font-size: 2.8rem !important;
            margin-bottom: 0.5rem !important;
        }

        .about-hero-subtitle {
            font-size: 1.1rem !important;
            max-width: 600px !important;
        }

        .about-main-section {
            width: 100% !important;
            padding: 3rem 0 2rem 0 !important;
        }

        .about-main-content {
            max-width: 1100px !important;
            width: 100% !important;
            margin: 0 auto !important;
            gap: 3rem !important;
        }

        .about-main-left {
            flex: 2 !important;
            min-width: 0 !important;
        }

        .about-main-heading {
            font-size: 2rem !important;
            margin-bottom: 1.2rem !important;
        }

        .about-main-text {
            font-size: .9rem !important;
            margin-top: 1rem !important;
            padding-top: 5px !important;
        }

        .about-main-right {
            flex: 1 !important;
            min-width: 220px !important;
        }

        .check-list {
            margin: 0 !important;
            gap: 1.1rem !important;
            padding: 1.5rem 1.2rem !important;
            min-width: 210px !important;
        }

        .check-list li {
            font-size: 1.08rem !important;
            padding: 0.6rem 1.1rem !important;
        }


        .image-container {
            width: 100% !important;
            margin-bottom: 20px !important;
            border-radius: 10px !important;
        }

        .image-container img {
            width: 100% !important;
            height: 16rem !important;
        }


        .overlay button {
            padding: 5px 10px !important;
            font-size: 14px !important;
        }

        .gallery_title {
            font-size: 1.1rem !important;
        }

        .gallery_desc {
            font-size: 1rem !important;
            padding-left: 16px !important;
            padding-right: 16px !important;
        }
    }

    @media (max-width: 1024px) {
        .about-main-left {
            flex: 2;
            min-width: 0;
            padding: 0 1rem;
        }
    }

    @media (max-width: 900px) {
        .about-main-content {
            flex-direction: column;
            gap: 2rem;
        }

        .about-main-left,
        .about-main-right {
            width: 100%;
            min-width: 0;
        }
    }
/* ==============================
   CONTACT PAGE STYLES
   ============================== */

.contact_section {
    padding: 6rem 1rem;
}

.contact_heading {
    font-size: 1.25rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.contact_main_heading {
    text-transform: uppercase;
    font-size: 2.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.contact-desc {
    font-weight: 400;
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    color: #34424A;
    line-height: 1.8;
    margin-top: 1rem;
    padding-top: 5px;
}

.contact-info {
    background-color: #fff;
    box-shadow: none;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.contact-info p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.contact-info a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #212529;
    text-decoration: underline;
    transform: translateX(3px);
}

.contact-info:hover a {
    color: #212529;
}

.contact-info svg {
    color: #212529;
    opacity: 0.8;
}

/* Contact Hero Section */
.contact-hero-section {
    width: 100%;
    min-height: 60vh;
    height: 60vh;
    max-height: 520px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.55);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: none;
    text-transform: uppercase;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #e0e0e0;
    text-shadow: none;
    max-width: 600px;
}

/* Contact Form Styles */
.contact_section .form-control,
.contact_section .form-select {
    padding: 0.8rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact_section .form-control:focus,
.contact_section .form-select:focus {
    border-color: #212529;
    box-shadow: none;
}

.contact_section .form-control::placeholder {
    color: #adb5bd;
}

/* Form validation styles */
.contact_section .form-control.is-invalid,
.contact_section .form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: none;
}

.contact_section .form-control.is-valid,
.contact_section .form-select.is-valid {
    border-color: #198754;
    box-shadow: none;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.success-message {
    color: #198754;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

/* Loading spinner styles */
.spinner-border {
    width: 1.5rem;
    height: 1.5rem;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Alert styles */
.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert i {
    margin-right: 0.5rem;
}

/* International Telephone Input Custom Styles */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    border-radius: 8px 0 0 8px;
}

.iti__selected-flag {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0 8px 0 12px;
}

.iti__selected-flag:hover {
    background-color: #e9ecef;
}

.iti__arrow {
    border-top: 4px solid #6c757d;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.iti__arrow--up {
    border-top: none;
    border-bottom: 4px solid #6c757d;
}

.iti__country-list {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: none;
    max-height: 200px;
}

.iti__country {
    padding: 8px 12px;
    border-bottom: 1px solid #f8f9fa;
}

.iti__country:hover {
    background-color: #f8f9fa;
}

.iti__country.iti__active {
    background-color: #e9ecef;
}

.iti__flag {
    border-radius: 2px;
}

.iti__dial-code {
    color: #6c757d;
    font-weight: 500;
}

.iti__country-name {
    color: #212529;
    font-weight: 500;
}

input[type="tel"] {
    padding-left: 60px;
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.send-btn {
    background-color: #212529;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.send-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* Choices.js dropdown styles */
.choices__list--dropdown {
    z-index: 9999 !important;
    background: #fff;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 4px;
}

.choices__item--selectable {
    padding: 10px 15px;
    font-size: 1rem;
    color: #212529;
    cursor: pointer;
}

.choices__item--selectable:hover {
    background-color: #f8f9fa;
}

/* Contact Page Responsive Styles */
@media (min-width: 1201px) and (max-width: 1366px) {
    .contact_section {
        padding: 6rem 1rem;
    }

    .contact_heading {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .contact_main_heading {
        font-size: 2.2rem;
    }

    .contact-hero-section {
        width: 100% !important;
        min-height: 60vh !important;
        height: 60vh !important;
        max-height: 520px !important;
    }

    .contact-hero-title {
        font-size: 2.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem !important;
        max-width: 600px !important;
    }
}

@media (max-width: 900px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-section {
        min-height: 40vh;
        height: 40vh;
    }
}

@media (max-width: 768px) {
    .contact_section {
        padding: 4rem 1rem;
    }

    .contact_main_heading {
        font-size: 2rem;
    }

    .contact-desc {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.25rem;
    }

    .contact-info svg {
        width: 2em !important;
        height: 2em !important;
    }

    .iti__country-list {
        width: 280px;
    }
}

/* ==============================
   COURSES PAGE STYLES
   ============================== */

.course-section {
    margin-top: 1.5rem;
    padding: 2rem 1rem;
}

.course_heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(33, 37, 41);
}

.course_sub_heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2e2e2e !important;
    letter-spacing: 0px;
    padding-top: 1.6rem;
}

.course_desc {
    font-weight: 400;
    font-size: 1.05rem;
    color: #34424A;
    line-height: 1.7;
    margin-top: .5rem;
    letter-spacing: -.3px;
}

.our_program {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2e2e2e !important;
    padding-top: 4rem;
}

.feature-box {
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: none;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px) scale(1.1);
    cursor: pointer;
    overflow: hidden;
}

.course_offer:hover {
    transform: translateY(-8px);
    cursor: pointer;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10%;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    border: 1.2px solid #ececec !important;
}

.feature_heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2e2e2e !important;
}

.feature_desc {
    font-weight: 500;
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
    padding: 0;
}

/* Course Card Styles */
.course_card {
    display: block;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.course_card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-color: #ffd700;
}

.course_card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course_card:hover img {
    transform: scale(1.05);
}

.course_body {
    padding: 1.2rem;
    background: #fff;
    transition: all 0.3s ease;
}

.course_title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(46, 46, 46);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.course_card:hover .course_title {
    color: #000;
}

.course_excerpt {
    font-size: 0.95rem;
    color: #34424A;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read_more_btn {
    background: #ffd700;
    color: #000;
    border: 2px solid #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read_more_btn:hover {
    background: transparent;
    color: #000;
}

/* Category Filter Styles */
.category-filter {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-btn {
    background: #ffd700;
    border: 1px solid #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: #ffd700;
    border-color: #ffd700;
    color: #000;
}

/* Why Join Section */
.why-join-modern {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.wj-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #EBEBEB;
}

.wj-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.wj-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ffd700;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wj-card:hover::before {
    opacity: 1;
}

.wj-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.wj-card:hover .wj-icon {
    background: #ffd700;
    color: #fff;
}

.wj-content {
    flex: 1;
}

.wj-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
}

.wj-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Course Hero Section */
.course-hero-section {
    width: 100%;
    min-height: 60vh;
    height: 60vh;
    max-height: 520px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.course-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.55);
    z-index: 1;
}

.course-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.course-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: none;
    text-transform: uppercase;
}

.course-hero-tagline {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.course-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #e0e0e0;
    text-shadow: none;
    max-width: 600px;
}

/* Animation for course cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.col-xl-3 {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.col-xl-3:nth-child(1) { animation-delay: 0.1s; }
.col-xl-3:nth-child(2) { animation-delay: 0.2s; }
.col-xl-3:nth-child(3) { animation-delay: 0.3s; }
.col-xl-3:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 900px) {
    .course-hero-title {
        font-size: 2rem;
    }

    .course-hero-section {
        min-height: 40vh;
        height: 40vh;
    }
}

/* ==============================
   AUTH PAGES (LOGIN/SIGNUP) STYLES
   ============================== */

/* Alert Box Notification */
.alert-box {
    position: fixed;
    top: 20px;
    right: -400px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: none;
    z-index: 9999;
    transition: right 0.4s ease;
    min-width: 300px;
    max-width: 400px;
}

.alert-box.alert-show {
    right: 20px;
}

.alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-success .alert-icon {
    background: #d4edda;
    color: #155724;
}

.alert-error .alert-icon {
    background: #f8d7da;
    color: #721c24;
}

.alert-warning .alert-icon {
    background: #fff3cd;
    color: #856404;
}

.alert-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* Auth Page Layout */
.login-container {
    min-height: 100vh;
    display: flex;
}

.left-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.overlay-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-text p {
    font-size: 1rem;
    opacity: 0.9;
}

.form-box {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #212529;
}

.form-box form label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-box form input {
    padding: 0.8rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-box form input:focus {
    border-color: #ffd700;
    box-shadow: none;
}

.form-box form input::placeholder {
    color: #adb5bd;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.forget_password {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forget_password:hover {
    color: #34424A;
    text-decoration: underline;
}

.signup {
    color: #ffd700;
    font-weight: 600;
    text-decoration: none;
}

.signup:hover {
    color: #34424A;
    text-decoration: underline;
}

.sign_in {
    color: #ffd700;
    font-weight: 600;
}

/* Override dark buttons with gold */
.form-box .btn-dark,
.auth-btn {
    background-color: #ffd700 !important;
    border-color: #ffd700 !important;
    color: #000 !important;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-box .btn-dark:hover,
.auth-btn:hover {
    background-color: #34424A !important;
    border-color: #34424A !important;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .left-image {
        display: none;
    }
    
    .form-box {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .form-box {
        padding: 1.5rem;
    }
    
    .form-box h2 {
        font-size: 1.5rem;
    }
}

/* ==============================
   COURSE APPLICATION FORM STYLES
   ============================== */

.form-section {
    padding: 3rem 1rem;
}

.form_heading {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
}

.btn-submit {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #000;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #34424A;
    border-color: #34424A;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #B0B0B0;
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-control.error {
    border-color: #dc3545;
}

.form-control.success {
    border-color: #198754;
}

.custom-file-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

#file-chosen {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ==============================
   SERVICE DETAIL PAGE STYLES
   ============================== */

/* Service Detail Hero */
.sd-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 350px;
    max-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.sd-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.sd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}

.sd-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.sd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.sd-back-link:hover {
    color: #ffd700;
    text-decoration: none;
    transform: translateX(-4px);
}

.sd-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: none;
}

/* Service Detail Content */
.sd-content-section {
    background: #F7F9FB;
    padding: 3.5rem 1.5rem 4rem;
}

.sd-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.sd-text-block {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 2.5rem;
    box-shadow: none;
    border-left: 4px solid #ffd700;
}

.sd-text-block p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #34424A;
    margin: 0;
}

.sd-divider {
    width: 60px;
    height: 3px;
    background: #ffd700;
    border-radius: 3px;
    margin: 2rem auto;
}

.sd-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Service Detail Responsive */
@media (max-width: 768px) {
    .sd-hero {
        height: 45vh;
        min-height: 280px;
    }
    .sd-hero-title {
        font-size: 1.7rem;
    }
    .sd-hero-content {
        padding: 1.5rem 1.2rem;
    }
    .sd-content-section {
        padding: 2rem 1rem 3rem;
    }
    .sd-text-block {
        padding: 1.5rem 1.3rem;
    }
    .sd-text-block p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sd-hero {
        height: 38vh;
        min-height: 240px;
    }
    .sd-hero-title {
        font-size: 1.4rem;
    }
    .sd-text-block {
        padding: 1.2rem 1rem;
    }
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FFFFFF;
    color: #0F0F0F;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border: 1px solid #E9ECEF;
}

.back-button:hover {
    background: #ffd700;
    color: #000;
    transform: translateX(-5px);
    text-decoration: none;
}

.back-button i {
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-3px);
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: none;
    overflow: hidden;
    border-top: 4px solid #ffd700;
    animation: slideInUp 0.6s ease-out;
}

.service-img-container {
    overflow: hidden;
    border-radius: 12px;
    margin: 1.5rem;
}

.service-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-img-container:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.desc-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.8rem;
}

.service-short {
    font-size: 1.05rem;
    color: #34424A;
    line-height: 1.8;
}

.service-long {
    font-size: 1.05rem;
    color: #34424A;
    line-height: 1.8;
}

.project-detail-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0F0F0F;
    margin-bottom: 1.5rem;
}

.service-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0F0F0F;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: #ffd700;
    color: #000;
    border: 2px solid #ffd700;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-modern:hover {
    background: #34424A;
    border-color: #34424A;
    color: #000;
    transform: translateY(-2px);
}

.btn-secondary-modern {
    background: transparent;
    color: #212529;
    border: 2px solid #212529;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-modern:hover {
    background: #212529;
    color: #fff;
    transform: translateY(-2px);
}

/* Related Projects Section */
.projects-section {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffd700;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project-btn {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.view-project-btn:hover {
    background: #34424A;
    color: #000;
}

.project-content {
    padding: 1rem;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.no-projects-message {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

/* CTA Section */
.cta-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}

.cta-button {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #34424A;
    color: #000;
    transform: translateY(-2px);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================
   PRODUCT DETAIL PAGE STYLES (REDESIGNED)
   ============================== */

/* Breadcrumb */
.pdt-breadcrumb-wrap {
    background: #F7F9FB;
    padding: 14px 0;
    border-bottom: 1px solid #e9ecef;
}

.pdt-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.pdt-breadcrumb li {
    display: flex;
    align-items: center;
    color: #6c757d;
}

.pdt-breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: #adb5bd;
}

.pdt-breadcrumb li a {
    color: #34424A;
    text-decoration: none;
    transition: color 0.2s;
}

.pdt-breadcrumb li a:hover {
    color: #ffd700;
}

.pdt-breadcrumb li.active {
    color: #0F0F0F;
    font-weight: 600;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main Section */
.pdt-section {
    padding: 40px 0 60px;
    background: #fff;
}

.pdt-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #E9ECEF;
}

/* Gallery Column */
.pdt-gallery-col {
    background: #F7F9FB;
}

.pdt-gallery {
    position: relative;
    padding: 24px;
}

.pdt-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdt-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pdt-image-wrap:hover .pdt-main-image {
    transform: scale(1.03);
}

/* Slider Buttons */
.pdt-slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    background: #FFFFFF;
    color: #0F0F0F;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: none;
}

.pdt-slider-btn:hover {
    background: #ffd700;
    color: #000;
    box-shadow: none;
}

.pdt-prev-btn {
    left: 36px;
}

.pdt-next-btn {
    right: 36px;
}

/* Image Counter */
.pdt-image-counter {
    position: absolute;
    bottom: 105px;
    right: 36px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 5;
    letter-spacing: 1px;
}

/* Thumbnails */
.pdt-thumbnails {
    display: flex;
    gap: 10px;
    padding: 16px 0 0;
    justify-content: center;
    flex-wrap: wrap;
}

.pdt-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    background: #fff;
    flex-shrink: 0;
}

.pdt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdt-thumb:hover {
    border-color: #d4d4d4;
}

.pdt-thumb.active {
    border-color: #ffd700;
    box-shadow: none;
}

/* Product Info */
.pdt-info {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pdt-category-badge {
    display: inline-block;
    background: transparent;
    color: #E68A00;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    width: fit-content;
}

.pdt-name {
    font-size: 2rem;
    font-weight: 800;
    color: #0F0F0F;
    line-height: 1.2;
    margin: 0 0 8px;
}

.pdt-subtitle {
    font-size: 1.05rem;
    color: #6c757d;
    margin: 0 0 20px;
    line-height: 1.5;
}

/* Price Block */
.pdt-price-block {
    background: #F7F9FB;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.pdt-price-main {
    font-size: 2rem;
    font-weight: 800;
    color: #0F0F0F;
    line-height: 1;
    margin-bottom: 6px;
}

.pdt-price-vat {
    font-size: 0.88rem;
    color: #6c757d;
}

.pdt-price-vat strong {
    color: #34424A;
}

/* Divider */
.pdt-divider {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 16px 0;
}

/* Description */
.pdt-description {
    margin-bottom: 8px;
}

.pdt-desc-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #34424A;
    margin-bottom: 8px;
}

.pdt-description p {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Actions */
.pdt-actions {
    margin-top: auto;
    padding-top: 8px;
}

.pdt-qty-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #34424A;
    margin-bottom: 10px;
}

.pdt-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}

.pdt-qty-btn {
    background: #f7f7f7;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.82rem;
    color: #333;
    transition: all 0.2s;
}

.pdt-qty-btn:hover {
    background: #ffd700;
    color: #000;
}

.pdt-qty-input {
    width: 56px;
    text-align: center;
    border: none;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    font-size: 1rem;
    font-weight: 600;
    height: 44px;
    padding: 0;
    outline: none;
    background: #fff;
}

/* Cart Buttons */
.pdt-cart-btn-wrap {
    margin-bottom: 20px;
}

.pdt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.pdt-btn-cart {
    background: #ffd700;
    color: #0F0F0F;
}

.pdt-btn-cart:hover {
    background: #E68A00;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: none;
}

.pdt-btn-checkout {
    background: #34424A;
    color: #fff;
}

.pdt-btn-checkout:hover {
    background: #0F0F0F;
    transform: translateY(-1px);
    box-shadow: none;
}

/* Extra Info */
.pdt-extra-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

.pdt-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #6c757d;
}

.pdt-info-item i {
    color: #ffd700;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

/* ==============================
   PRODUCT DETAIL - RELATED PRODUCTS
   ============================== */

.pdt-related-section {
    padding: 50px 0 70px;
    background: #F7F9FB;
}

.pdt-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}

.pdt-related-header h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0F0F0F;
    margin: 0;
}

.pdt-view-all {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.pdt-view-all:hover {
    color: #E68A00;
}

.pdt-view-all i {
    transition: transform 0.2s;
}

.pdt-view-all:hover i {
    transform: translateX(4px);
}

/* Related Product Card */
.pdt-related-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.pdt-related-card:hover {
    transform: translateY(-6px);
    box-shadow: none;
    text-decoration: none;
}

.pdt-related-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F7F9FB;
}

.pdt-related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pdt-related-card:hover .pdt-related-img-wrap img {
    transform: scale(1.08);
}

.pdt-related-body {
    padding: 16px 18px 18px;
}

.pdt-related-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F0F0F;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pdt-related-card:hover .pdt-related-name {
    color: #ffd700;
}

.pdt-related-subtitle {
    font-size: 0.82rem;
    color: #888;
    margin: 0 0 10px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pdt-related-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0F0F0F;
}

/* ==============================
   PRODUCT DETAIL - RESPONSIVE
   ============================== */

@media (max-width: 991px) {
    .pdt-info {
        padding: 28px 24px;
    }

    .pdt-name {
        font-size: 1.6rem;
    }

    .pdt-gallery {
        padding: 20px;
    }

    .pdt-prev-btn {
        left: 28px;
    }

    .pdt-next-btn {
        right: 28px;
    }

    .pdt-image-counter {
        right: 28px;
        bottom: 85px;
    }
}

@media (max-width: 767px) {
    .pdt-section {
        padding: 20px 0 40px;
    }

    .pdt-card {
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .pdt-gallery {
        padding: 16px;
    }

    .pdt-image-wrap {
        border-radius: 10px;
    }

    .pdt-slider-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .pdt-prev-btn {
        left: 24px;
    }

    .pdt-next-btn {
        right: 24px;
    }

    .pdt-image-counter {
        right: 24px;
        bottom: 78px;
    }

    .pdt-thumb {
        width: 58px;
        height: 58px;
    }

    .pdt-info {
        padding: 24px 16px;
    }

    .pdt-name {
        font-size: 1.4rem;
    }

    .pdt-price-main {
        font-size: 1.6rem;
    }

    .pdt-btn {
        width: 100%;
        min-width: unset;
        padding: 14px 20px;
    }

    .pdt-related-section {
        padding: 36px 0 50px;
    }

    .pdt-related-header h2 {
        font-size: 1.3rem;
    }

    .pdt-related-body {
        padding: 12px 14px 14px;
    }

    .pdt-related-name {
        font-size: 0.88rem;
    }

    .pdt-related-price {
        font-size: 0.98rem;
    }
}

@media (max-width: 575px) {
    .pdt-breadcrumb-wrap {
        padding: 10px 0;
    }

    .pdt-breadcrumb {
        font-size: 0.8rem;
    }

    .pdt-gallery {
        padding: 12px;
    }

    .pdt-thumbnails {
        gap: 6px;
    }

    .pdt-thumb {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    .pdt-slider-btn {
        width: 34px;
        height: 34px;
    }

    .pdt-prev-btn {
        left: 18px;
    }

    .pdt-next-btn {
        right: 18px;
    }

    .pdt-info {
        padding: 20px 14px;
    }
}

/* ==============================
   PROJECT DETAIL PAGE STYLES
   ============================== */

/* Project Detail Hero Banner */
.pd-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 350px;
    max-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.pd-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.pd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}

.pd-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.pd-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: none;
}

/* Project/Service Detail Content */
.pd-content-section {
    background: #fff;
    padding: 50px 24px 40px;
}

.pd-content-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

.pd-text-block {
    margin-bottom: 36px;
}

.pd-text-block:last-of-type {
    margin-bottom: 0;
}

.pd-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffd700;
    margin-bottom: 14px;
    padding: 4px 0;
    border-bottom: 2px solid #ffd700;
}

.pd-text-block p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #444;
    margin: 0;
}

.pd-cta {
    display: flex;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}

.pd-cta-primary {
    background: #ffd700;
    color: #0F0F0F;
    border: 2px solid #ffd700;
}

.pd-cta-primary:hover {
    background: #E68A00;
    border-color: #E68A00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
    text-decoration: none;
}

.pd-cta-secondary {
    background: transparent;
    color: #34424A;
    border: 2px solid #d0d5da;
}

.pd-cta-secondary:hover {
    background: #34424A;
    border-color: #34424A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
    text-decoration: none;
}

/* Project Detail Gallery */
.pd-gallery-section {
    background: #F7F9FB;
    padding: 1rem 1.5rem 4rem;
}

.pd-gallery-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.pd-gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F0F0F;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pd-slider {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: none;
}

.pd-slider-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f0f0f0;
    overflow: hidden;
    cursor: pointer;
}

.pd-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-slide.active {
    opacity: 1;
    z-index: 1;
}

.pd-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.85);
    color: #0F0F0F;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.pd-nav:hover {
    background: #ffd700;
    color: #000;
}

.pd-prev { left: 12px; }
.pd-next { right: 12px; }

/* Thumbnails */
.pd-thumbnails {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    overflow-x: auto;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.pd-thumb {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.pd-thumb:hover {
    opacity: 0.8;
}

.pd-thumb.active {
    opacity: 1;
    border-color: #ffd700;
}

/* Lightbox */
.pd-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.pd-lightbox.active {
    display: flex;
}

.pd-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.pd-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s ease;
}

.pd-lightbox-close:hover {
    color: #ffd700;
}

.pd-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.pd-lightbox-nav:hover {
    background: #ffd700;
}

.pd-lb-prev { left: 20px; }
.pd-lb-next { right: 20px; }

/* Project Detail Responsive */
@media (max-width: 768px) {
    .pd-hero {
        height: 45vh;
        min-height: 280px;
    }
    .pd-hero-title {
        font-size: 1.7rem;
    }
    .pd-hero-content {
        padding: 1.5rem 1.2rem;
    }
    .pd-content-section {
        padding: 32px 16px 28px;
    }
    .pd-gallery-section {
        padding: 1rem 1rem 3rem;
    }
    .pd-text-block p {
        font-size: 0.98rem;
    }
    .pd-cta {
        flex-direction: column;
    }
    .pd-cta-btn {
        justify-content: center;
    }
    .pd-nav {
        width: 36px;
        height: 36px;
    }
    .pd-thumb {
        width: 55px;
        height: 40px;
    }
    .pd-lightbox-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .pd-hero {
        height: 38vh;
        min-height: 240px;
    }
    .pd-hero-title {
        font-size: 1.4rem;
    }
    .pd-text-block p {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    .pd-nav {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    .pd-prev { left: 8px; }
    .pd-next { right: 8px; }
    .pd-thumbnails {
        padding: 10px 10px;
        gap: 6px;
    }
    .pd-thumb {
        width: 48px;
        height: 36px;
    }
}

/* ==============================
   CART PAGE STYLES
   ============================== */

.cart-product {
    padding: 5.5rem 1rem 3rem 1rem;
}

.cart-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(33, 37, 41);
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1.5rem;
}

.cart-product .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-product table {
    border-collapse: collapse;
    width: 100%;
    min-width: 600px;
}

.cart-product thead tr {
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid #E0E0E0;
}

.cart-product th,
.cart-product td {
    border: none;
    vertical-align: middle !important;
    font-size: 16px !important;
    font-family: 'Rajdhani', sans-serif;
    color: #333 !important;
    font-weight: 500;
    padding: 1rem 0.5rem;
}

.cart-product tbody tr td img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-box {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    height: 38px;
}

.qty-btn {
    width: 36px;
    height: 100%;
    border: none;
    background: #f8f9fa;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    padding: 0;
    line-height: 1;
}

.qty-btn:hover {
    background: #ffd700;
    color: #000;
}

.quantity-box input.quantity {
    width: 45px;
    height: 100%;
    text-align: center;
    border: none;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0;
    -moz-appearance: textfield;
    appearance: textfield;
    background: #fff;
}

.quantity-box input.quantity::-webkit-outer-spin-button,
.quantity-box input.quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    background-color: #ffd700;
    padding: 10px 20px;
    border: 2px solid #ffd700;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin: 0.5rem;
}

.cart-btn:hover {
    background-color: #34424A;
    color: #000;
    border-color: #34424A;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cart-total {
    text-align: right;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-totals-summary {
    max-width: 380px;
    margin-left: auto;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-top: 2px solid #dee2e6;
    padding-top: 1rem;
}

.cart-totals-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #333;
}

.cart-totals-grand {
    border-top: 2px solid #333;
    margin-top: 0.5rem;
    padding-top: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-cart i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
    display: block;
}

.empty-cart h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #495057;
}

.empty-cart p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.remove-btn-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==============================
   CHECKOUT PAGE STYLES
   ============================== */

.checkout-page {
    padding: 6rem 1rem 3rem 1rem;
    background: #f7f8fa;
    min-height: 100vh;
}

.checkout-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 1.5rem;
}

/* Checkout Cards */
.co-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: none;
    margin-bottom: 1.5rem;
}

.co-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.2rem;
}

.co-card-title i {
    color: #ffd700;
    margin-right: 8px;
}

/* Form Inputs */
.co-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 4px;
    display: block;
}

.co-input {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Rajdhani', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.co-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: none;
}

/* Radio toggles */
.co-shipping-toggle {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.co-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
}

.co-radio input[type="radio"] {
    accent-color: #ffd700;
    width: 16px;
    height: 16px;
}

/* Submit Button */
.co-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.co-submit-btn:hover {
    background: #34424A;
    color: #fff;
}

.co-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Summary Card */
.co-summary-card {
    position: sticky;
    top: 5rem;
}

/* Cart Items in Summary */
.co-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.co-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.co-item-img {
    position: relative;
    flex-shrink: 0;
}

.co-item-img img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.co-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ffd700;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
}

.co-item-info {
    flex: 1;
    min-width: 0;
}

.co-item-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.co-item-unit {
    font-size: 0.8rem;
    color: #6c757d;
    font-family: 'Rajdhani', sans-serif;
}

.co-item-total {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #212529;
    white-space: nowrap;
}

/* Divider */
.co-divider {
    height: 1px;
    background: #e9ecef;
    margin: 1rem 0;
}

/* Totals */
.co-totals {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.co-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: #495057;
}

.co-grand-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
    padding-top: 0.5rem;
}

.co-free-ship {
    color: #28a745;
    font-weight: 600;
}

.co-free-ship-notice {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: #856404;
    margin-top: 1rem;
    text-align: center;
}

.co-free-ship-notice i {
    margin-right: 6px;
}

.co-secure-badge {
    text-align: center;
    margin-top: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: #6c757d;
}

.co-secure-badge i {
    color: #28a745;
    margin-right: 4px;
}

/* Checkout responsive */
@media (max-width: 991px) {
    .co-summary-card {
        position: static;
    }
}

@media (max-width: 576px) {
    .checkout-page {
        padding: 5rem 0.5rem 2rem 0.5rem;
    }
    .co-card {
        padding: 1rem;
    }
    .co-item-name {
        font-size: 0.82rem;
    }
}

/* ==============================
   THANK YOU PAGE STYLES
   ============================== */

.thankyou-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
}

.thankyou-content {
    text-align: center;
    max-width: 500px;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thankyou-icon i {
    font-size: 3rem;
    color: #28a745;
}

.thankyou-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.thankyou-message {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* ==============================
   PASSWORD RESET PAGE STYLES
   ============================== */

.reset-password-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.reset-card {
    max-width: 450px;
    width: 100%;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: none;
}

.reset-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    text-align: center;
}

.reset-card .form-control {
    padding: 0.8rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.reset-card .form-control:focus {
    border-color: #ffd700;
    box-shadow: none;
}

.reset-card .btn-primary {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #000;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    width: 100%;
}

.reset-card .btn-primary:hover {
    background-color: #34424A;
    border-color: #34424A;
}

/* ==============================
   PRODUCT LIST PAGE STYLES
   ============================== */

/* Product page container */
.product {
    padding: 5.5rem 1rem 3rem 1rem;
}

.product-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    padding: 1rem 0.6rem;
}

.product-heading span {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 2rem;
}

/* Product card styles */
.product_detail_card {
    display: block;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.product_detail_card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-color: #ffd700;
}

.product_detail_card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product_detail_card:hover img {
    transform: scale(1.05);
}

.product_detail_body {
    padding: 1.2rem;
    background: #fff;
    transition: all 0.3s ease;
}

.product_detail_title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(46, 46, 46);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.product_detail_card:hover .product_detail_title {
    color: #000;
}

.product_detail_body .product-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.8rem;
}

.price_cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.product_detail_card:hover .price {
    color: #000;
}

.cart_icon {
    background: #f8f8f8;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #000;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart_icon:hover {
    background: #ffd700;
    color: #000;
    transform: scale(1.1);
}

/* Filter Bar Styles */
.filter-bar {
    padding: 1.5rem 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
}

.filter-buttons {
    gap: 0.75rem;
}

/* ── Product Search & Price Filter ── */
.product-search-bar {
    padding: 1rem 0 1.5rem;
    background-color: #f8f9fa;
    margin-bottom: 2rem;
}

.search-filter-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.search-input-wrap {
    position: relative;
    flex: 1 1 300px;
    max-width: 420px;
}

.search-input-wrap .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 0.95rem;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    font-size: 0.92rem;
    background: #fff;
    transition: border-color 0.25s;
    outline: none;
}

.search-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.price-filter-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.price-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    white-space: nowrap;
}

.price-input {
    width: 90px;
    padding: 0.55rem 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 0.88rem;
    text-align: center;
    background: #fff;
    transition: border-color 0.25s;
    outline: none;
}

.price-input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.price-dash {
    color: #adb5bd;
    font-weight: 600;
}

.price-filter-btn,
.price-clear-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 0.9rem;
}

.price-filter-btn {
    background: #ffd700;
    color: #000;
}

.price-filter-btn:hover {
    background: #e6c200;
    transform: translateY(-1px);
}

.price-clear-btn {
    background: #dc3545;
    color: #fff;
}

.price-clear-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: none;
}

.filter-btn:hover {
    background-color: #ffd700;
    color: #000;
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: none;
}

.filter-btn.active {
    background-color: #ffd700;
    color: #000;
    border-color: #ffd700;
    box-shadow: none;
}

.no-products-message {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 500;
}

.no-products-message i {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 1rem;
    display: block;
}

/* Product page responsive */
@media (max-width: 991px) {
    .product {
        padding: 5rem 0.8rem 2rem 0.8rem;
    }
    
    .product-heading {
        font-size: 1.3rem;
        padding: 0.8rem 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
    }

    .search-filter-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .search-input-wrap {
        max-width: 100%;
    }

    .price-filter-wrap {
        width: 100%;
        justify-content: center;
    }
    
    .product_detail_card img {
        height: 16rem;
    }
    
    .product_detail_body {
        padding: 1rem;
    }
    
    .product_detail_title {
        font-size: 0.95rem;
        margin: 0.6rem 0;
    }
}

@media (max-width: 575px) {
    .product {
        padding: 4rem 0.5rem 2rem 0.5rem;
    }

    .product-heading {
        font-size: 1.2rem;
        padding: 0.8rem 0.5rem;
        margin-left: 0 !important;
    }

    .product-heading span {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .filter-bar {
        padding: 0.8rem 0;
        margin-bottom: 0;
    }

    .filter-buttons {
        gap: 0.3rem;
    }

    .filter-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .product-search-bar {
        padding: 0.75rem 0.5rem 1rem;
    }

    .price-input {
        width: 75px;
        font-size: 0.82rem;
    }

    .price-label {
        font-size: 0.82rem;
    }

    .product_detail_card img {
        height: 18rem;
    }

    .product_detail_body {
        padding: 0.8rem;
    }

    .product_detail_title {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }

    .product_detail_body .product-subtitle {
        font-size: 0.8rem;
    }

    .price_cart .price {
        font-size: 0.9rem;
    }

    .cart_icon {
        width: 28px;
        height: 28px;
    }
}

/* Generic product page/grid styles */
.product-page {
    padding: 2rem 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.product-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}

.product-card-body {
    padding: 1.25rem;
}

.product-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.product-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
}

.product-card-btn {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.product-card-btn:hover {
    background: #34424A;
}

/* ==============================
   ALL PROJECTS PAGE STYLES
   ============================== */

.projects-page {
    padding: 2rem 1rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* ==============================
   LOGO STYLES
   ============================== */

.logo-wrapper {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.logo-img {
    width: 8rem;
    height: auto;
    object-fit: contain;
    padding: 10px;
    transition: all 0.3s ease;
    filter: none;
    opacity: 1;
    display: block;
    margin: 0 auto;
}

.logo-wrapper:hover .logo-img {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

.logo-wrapper:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .logo-img {
        width: 6rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        width: 5rem;
    }
}

/* ==============================
   SWIPER SLIDER STYLES
   ============================== */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 324px;
    background-color: transparent;
    margin-bottom: 60px;
}

.swiper-star {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 105px;
    border-radius: 50px 0px 50px 0px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.swiper-slide img {
    border-radius: 50px 0px 50px 0px !important;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 21px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 21px));
    background: none;
    border: 1px solid #ffd700;
    opacity: 1;
}

.swiper-pagination {
    text-align: left;
}

.swiper-pagination-bullet-active {
    background: #ffd700 !important;
}

.p-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    color: #212529;
    margin: 0px !important;
}

.p-title:hover {
    transition: 0.7s;
    color: #ffd700;
}

.p-price {
    font-family: 'Rajdhani';
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0em;
    color: #212529;
}

/* ==============================
   ALL PROJECTS PAGE STYLES
   ============================== */

/* all-project.php page styles */
.project-section {
    margin-top: 5.5rem;
    padding: 2rem 0;
}

.project-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.project-intro h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.project-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.project-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-color: #ffd700;
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.project-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-tools {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tool-icon {
    width: 30px;
    height: 30px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.tool-icon:hover {
    background: #ffd700;
    color: #000;
}

.before-after {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.before-after img {
    width: 50%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* Animation for project cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.col-xl-4 {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.col-xl-4:nth-child(1) {
    animation-delay: 0.1s;
}

.col-xl-4:nth-child(2) {
    animation-delay: 0.2s;
}

.col-xl-4:nth-child(3) {
    animation-delay: 0.3s;
}

/* All-Projects.php page styles */
.about_heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(33, 37, 41);
    font-family: 'Rajdhani', sans-serif;
    padding-bottom: 3.5rem;
    padding-top: 5.5rem;
}

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
}

.image-container img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, .8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.overlay button {
    background-color: hsla(0, 0%, 100%, .2);
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.gallery_title {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgb(33, 37, 41) !important;
    font-family: 'Rajdhani', sans-serif;
    text-transform: capitalize;
}

.gallery_desc {
    font-size: 1rem;
    font-weight: 400;
    color: rgb(46, 46, 46) !important;
    font-family: 'Rajdhani', sans-serif;
    padding-left: 16px;
    padding-right: 16px;
}

/* ==============================
   DETAIL FULL PAGE STYLES (Project/Service)
   ============================== */

.project-container,
.service-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-header,
.service-header {
    background: #FFFFFF;
    /* flat: no blur */
    border-radius: 32px;
    box-shadow: none;
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-header::before,
.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #667eea;
    border-radius: 32px 32px 0 0;
}

.project-header-content,
.service-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.project-img-container,
.service-img-container {
    position: relative;
    flex-shrink: 0;
}

.project-img,
.service-img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: none;
    border: 4px solid #fff;
    transition: transform 0.3s ease;
}

.project-img:hover,
.service-img:hover {
    transform: scale(1.05);
}

.project-info h1,
.service-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F0F0F;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-info p,
.service-info p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

.description-section {
    background: #FFFFFF;
    /* flat: no blur */
    border-radius: 32px;
    box-shadow: none;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffd700;
    border-radius: 32px 32px 0 0;
}

.desc-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.desc-title::before {
    content: '📋';
    font-size: 1.5rem;
}

.desc-content {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    word-break: break-word;
}

.desc-content p {
    margin-bottom: 1.5rem;
}

.desc-content p:last-child {
    margin-bottom: 0;
}

.features-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-title::before {
    content: '✨';
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item {
    background: transparent;
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: #ffd700;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: none;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: none;
    color: white;
    text-decoration: none;
}

.btn-secondary-modern {
    background: #ffd700;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-modern:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Detail Full Page Responsive */
@media (max-width: 768px) {
    .project-header-content,
    .service-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .project-img,
    .service-img {
        width: 120px;
        height: 120px;
    }

    .project-info h1,
    .service-info h1 {
        font-size: 2rem;
    }

    .project-info p,
    .service-info p {
        font-size: 1rem;
    }

    .desc-title {
        font-size: 1.5rem;
    }

    .desc-content {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .project-container,
    .service-container {
        padding: 0 1rem;
    }

    .project-header,
    .description-section,
    .service-header {
        padding: 2rem;
    }

    .project-info h1,
    .service-info h1 {
        font-size: 1.8rem;
    }

    .desc-title {
        font-size: 1.3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   SERVICE LONG DESC PAGE STYLES
   ============================== */

.container-desc {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: none;
    padding: 2.5rem 2rem 2rem 2rem;
}

.service-img-lg {
    width: 120px;
    height: 120px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: none;
    border: 3px solid #fff;
    background: #f4f6fb;
    margin-bottom: 1.2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service-title-lg {
    font-size: 1.5rem;
    font-weight: 800;
    color: #232946;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    text-align: center;
}

.desc-text {
    font-size: 1.08rem;
    color: #4f5d75;
    margin-bottom: 0;
    line-height: 1.8;
    word-break: break-word;
}

.back-btn {
    display: inline-block;
    margin-bottom: 1.5rem;
    background: #232946;
    color: #fff;
    border-radius: 30px;
    padding: 8px 28px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.18s;
}

.back-btn:hover {
    background: #ffd700;
    color: #232946;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
    .container-desc {
        padding: 1rem 0.3rem 1rem 0.3rem;
    }

    .service-img-lg {
        width: 70px;
        height: 70px;
    }

    .service-title-lg {
        font-size: 1rem;
    }

    .desc-text {
        font-size: 0.95rem;
    }
}

/* ============================
   Cookie Consent Banner
   ============================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #f0f0f0;
    padding: 20px 30px;
    z-index: 99999;
    box-shadow: none;
    display: none;
    animation: cookieSlideUp 0.4s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.cookie-text a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #E68A00;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #ffd700;
    color: #0F0F0F;
}

.cookie-btn-accept:hover {
    background: #E68A00;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: #f0f0f0;
    border: 2px solid #555;
}

.cookie-btn-reject:hover {
    border-color: #ffd700;
    color: #ffd700;
}

.cookie-btn-settings {
    background: transparent;
    color: #aaa;
    border: none;
    text-decoration: underline;
    font-size: 13px;
    padding: 10px 8px;
}

.cookie-btn-settings:hover {
    color: #ffd700;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px 20px;
    }
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}

/* ============================
   Privacy Policy Page
   ============================ */
.pp-hero {
    position: relative;
    height: 280px;
    background: #0F0F0F;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pp-hero-overlay {
    position: absolute;
    inset: 0;
    background: #FFF3CC;
}

.pp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.pp-hero-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.pp-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

.pp-content-section {
    padding: 60px 20px 80px;
    background: #F7F9FB;
}

.pp-content-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.pp-updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

.pp-block {
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.pp-block:last-of-type {
    border-bottom: none;
}

.pp-block h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F0F0F;
    margin-bottom: 12px;
    padding-left: 14px;
    border-left: 4px solid #ffd700;
}

.pp-block p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
}

.pp-list {
    list-style: none;
    padding-left: 0;
    margin: 12px 0;
}

.pp-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

.pp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
}

.pp-info-card {
    background: #fff;
    border-left: 4px solid #ffd700;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: none;
    margin: 12px 0;
}

.pp-info-card p {
    margin-bottom: 4px;
    color: #333;
}

.pp-info-card i {
    color: #ffd700;
    width: 20px;
    margin-right: 8px;
}

.pp-cta {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .pp-hero { height: 200px; }
    .pp-hero-content h1 { font-size: 2rem; }
    .pp-content-section { padding: 40px 16px 60px; }
    .pp-block h2 { font-size: 1.3rem; }
    .pp-cta { justify-content: center; }
}

@media (max-width: 480px) {
    .pp-hero-content h1 { font-size: 1.6rem; }
    .pp-hero-content p { font-size: 0.9rem; }
}

