    @import url('../fonts/index.css');
@import url('bootstrap-icons.min.css');


body {
    font-family: "Plus_Jakarta_Sans";
  margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        /* Header Container */
        .header {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: #282828;
            height: 96px;
            overflow: visible;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
        }

        .logo-icon img {
            width: 245px;
            height: auto;
        }

        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1001;
        }

        /* DESKTOP HAMBURGER */
        .hamburger-desktop {
            width: 110px;
            height: 35px;
            position: relative;
            border-radius: 30px;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
            background: #fff;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hamburger-desktop:hover {
            transform: scale(1.07);
        }

        .hamburger-desktop p {
            font-size: 16px;
            font-weight: 600;
        }

        .hamburger-desktop span {
            position: absolute;
            right: 10px;
            height: 2px;
            background: #000;
            border-radius: 30px;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .hamburger-desktop span:nth-child(1) {
            top: 10px;
            width: 32px;
        }

        .hamburger-desktop span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
        }

        .hamburger-desktop span:nth-child(3) {
            bottom: 10px;
            width: 20px;
        }

        .hamburger-desktop.active span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .hamburger-desktop.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(100%);
        }

        .hamburger-desktop.active span:nth-child(3) {
            bottom: 50%;
            width: 26px;
            transform: translateY(50%) rotate(-45deg);
        }

        /* DESKTOP MENU */
        .nav-desktop {
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 96px;
            display: flex;
            justify-content: end;
            align-items: center;
            gap: 10px;
            /* padding: 0 190px 0 320px; */
            z-index: 999;
                padding-right: calc(125px + 5%);
                padding-top: 7px;

        }
    
       
             
        .nav-desktop.active {
            top: 0;
        }

        .nav-desktop .nav-item {
            position: relative;
        }

        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-size: 14.4px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            opacity: 0;
            transform: translateY(-30px);
            transition: all 0.5s ease;
            padding: 6px 10px;
            display: inline-block;
        }

        .nav-desktop.active a {
            opacity: 1;
            transform: translateY(0);
        }

        .nav-desktop.active .nav-item:nth-child(1) a {
            transition-delay: 0.1s;
        }

        .nav-desktop.active .nav-item:nth-child(2) a {
            transition-delay: 0.2s;
        }

        .nav-desktop.active .nav-item:nth-child(3) a {
            transition-delay: 0.3s;
        }

        .nav-desktop.active .nav-item:nth-child(4) a {
            transition-delay: 0.4s;
        }

        .nav-desktop.active .nav-item:nth-child(5) a {
            transition-delay: 0.5s;
        }

        .nav-desktop.active .nav-item:nth-child(6) a {
            transition-delay: 0.6s;
        }

        .nav-desktop a::before {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ecbf80, #ecaa4c);
            transition: width 0.4s ease;
        }

        .nav-desktop a:hover::before {
            width: 100%;
        }

        .nav-desktop a:hover {
            color: #ecbf80;
            transform: translateY(0px) scale(1.05);
        }

        /* ACTIVE STATE */
        .nav-desktop a.active {
            color: #ecbf80;
        }

        .nav-desktop a.active::before {
            width: 100%;
        }

        /* Keep parent active when hovering submenu */
        .nav-item:hover > a {
            color: #ecbf80;
        }

        .nav-item:hover > a::before {
            width: 100%;
        }

        /* SUBMENU STYLES */
        .submenu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(40, 40, 40, 0.98);
            min-width: 240px;
            padding: 12px 0;
            border-radius: 8px;
            border: 1px solid #ecbf80;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

       .nav-item.submenu-active .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
         .nav-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .submenu a {
            display: block;
            padding: 10px 20px;
            font-size: 13px;
            letter-spacing: 1px;
            opacity: 1;
            transform: none;
            transition: all 0.3s ease;
        }

        .submenu a::before {
            display: none;
        }

        .submenu a:hover {
            background: rgba(236, 191, 128, 0.1);
            padding-left: 25px;
            transform: none;
        }

        .submenu a.active {
            color: #ecbf80;
            background: rgba(236, 191, 128, 0.15);
        }

        .logo-black{
            display: none;
        }

        /* MOBILE LAYOUT */
        .header-mobile {
            display: none;
            justify-content: space-between;
            align-items: center;
           
            height: 75px;
            width: 100%;
        }

        .logo-mobile {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon-mobile {
            width: 145px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
        }

        .logo-icon-mobile img {
            width: 100%;
            height: auto;
        }

        .hamburger-mobile {
            width: 100px;
            height: 30px;
            position: relative;
            border-radius: 30px;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
            background: #fff;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hamburger-mobile:hover {
            transform: scale(1.07);
        }

        .hamburger-mobile p {
            font-size: 15px;
            font-weight: 600;
        }

        .hamburger-mobile span {
            position: absolute;
            right: 8px;
            height: 2px;
            background: #000;
            border-radius: 30px;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .hamburger-mobile span:nth-child(1) {
            top: 8px;
            width: 28px;
        }

        .hamburger-mobile span:nth-child(2) {
            top: 50%;
            width: 24px;
            transform: translateY(-50%);
        }

        .hamburger-mobile span:nth-child(3) {
            bottom: 8px;
            width: 20px;
        }

        .hamburger-mobile.active span:nth-child(1) {
            top: 50%;
            width: 20px;
            transform: translateY(-50%) rotate(45deg);
        }

        .hamburger-mobile.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(100%);
        }

        .hamburger-mobile.active span:nth-child(3) {
            bottom: 50%;
            width: 15px;
            transform: translateY(50%) rotate(-45deg);
        }
.hamburger-mobile.active span:nth-child(3) {
    bottom: 50%;
    width: 19px;
    transform: translateY(50%) rotate(-45deg);
}

.hamburger-desktop.active span:nth-child(1) {

    width: 19px;
}
.hamburger-desktop.active span:nth-child(3) {
   
    width: 19px;
}
      body.menu-open {
    overflow: hidden; 
}

.nav-mobile {
    position: fixed;
    right: 0px;
    top: -100%;
    width: 100%;
      min-height: 540px;
    height: auto;
    background:linear-gradient(to right, #565555, #000000);
    display: flex;
    flex-direction: column;
    justify-content:start;
    align-items:center;
    gap: 16px;
    /* transition: top 0.5s ease-out; */
    z-index: 999;
    border-bottom: 2px solid #ecbf80;
    padding-top:120px;
    border-end-start-radius: 41px;
    overflow-y: auto; /* Menu-க்குள்ள மட்டும் scroll */
    overflow-x: hidden;
    transition: top 1.5s ease; /* SLOW & SMOOTH */
    padding-bottom: 22px;
}

.nav-mobile.active{ 
    top: 0%; 
}
 
 

        .nav-mobile .nav-item-mobile {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .nav-mobile a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s ease;
            padding: 0px 10px;
        }

        .nav-mobile.active a {
            opacity: 1;
            transform: translateX(0);
        }

        .nav-mobile.active .nav-item-mobile:nth-child(1) a {
            transition-delay: 0.5s;
        }

        .nav-mobile.active .nav-item-mobile:nth-child(2) a {
            transition-delay: 0.7s;
        }

        .nav-mobile.active .nav-item-mobile:nth-child(3) a {
            transition-delay: 0.9s;
        }

        .nav-mobile.active .nav-item-mobile:nth-child(4) a {
            transition-delay: 1.1s;
        }

        .nav-mobile.active .nav-item-mobile:nth-child(5) a {
            transition-delay: 1.3s;
        }

        .nav-mobile.active .nav-item-mobile:nth-child(6) a {
            transition-delay: 1.5s;
        }

        .nav-mobile a::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ecbf80, #ecaa4c);
            transition: width 0.3s ease;
        }

        .nav-mobile a:hover::before {
            width: 20px;
        }

        .nav-mobile a:hover {
            color: #ecbf80;
            transform: translateX(10px);
        }

        .nav-mobile a.active {
            color: #ecbf80;
        }

        .nav-mobile a.active::before {
            width: 20px;
        }

        /* Mobile Submenu */
        .submenu-mobile {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .nav-item-mobile.submenu-open .submenu-mobile {
            max-height: 300px;
        }

        .submenu-mobile a {
            font-size: 18px;
            padding: 3px 10px;
        }
 
 
        /* Responsive Design */
        @media (max-width: 1099px) {
            .header-desktop {
                display: none;
            }

            .header-mobile {
                display: flex;
            }

            .nav-desktop,
            .hamburger-desktop {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .nav-mobile a {
                font-size: 20px;
            }  .nav-mobile {
                width: 100%;
            }
            .submenu-mobile a {
                font-size: 16px;
            }
.nav-mobile.active { 
    height: 100vh;
}
.hamburger-mobile {
    width: 88px;}
        }

        @media (max-width: 480px) {
            .nav-mobile {
                width: 100%;
            }

            .nav-mobile a {
                font-size: 16px;
            }

            .submenu-mobile a {
                font-size: 14px;
            }
        }

        @media (min-width: 1099px) {
            .logo-icon-mobile {
                display: none;
            }
        } 

      