*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}
body{
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color:#333;
    line-height:1.6;
}

/* HEADER */
.header{
    background-image: linear-gradient(135deg, #d3def0 0%, #c3cfe2 100%);
    padding:20px 0 10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:999;
}


.logo{
    text-align:center;
    font-family: 'Segoe UI', sans-serif;
    font-size:34px;
    font-weight:700;
    color:#000;
}
.logo span{
    color:#6b4eff;
}
.logo p{
    font-size:14px;
    color:#777;
    margin-top:5px;
}

/* NAVBAR */
.navbar1{
    margin-top:20px;
}
.navbar1 ul{
    list-style:none;
    display:flex;
    justify-content: center;
    gap:30px;
    flex-wrap: wrap;
}
.navbar1 ul li a {
  
  position: relative;
  text-decoration: none;
  padding-bottom: 8px;
  color: #000; 
  transition: color 0.3s ease;
}

/* underline */
.navbar1 ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #6b4eff; 

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}



.navbar1 ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* DROPDOWN */
.dropdown-menu{
    position:absolute;
    top:55px;
    left:0;
    background-color: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-width:220px;
    box-shadow:0 8px 18px rgba(0,0,0,0.15);
    border-radius:8px;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:0.4s;
}
.dropdown-menu li a{
    
    display:block;
    padding:10px 15px;
}
.dropdown-menu li a:hover{
  background-color: #fff;
    color:#000;
}
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* LOGIN BUTTON */
.shopping-cart:hover{
    text-decoration: none;
    border: none;
    color: #999;
    transform: scale(0.5);
    
}
.login .login-btn{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 17px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(135deg, #000, #444);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn i{
    font-size: 16px;
}

.login-btn:hover{
  box-shadow: none;
    background: linear-gradient(135deg, #444, #000);
    transform: translateY(-2px);
}



.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
    position:absolute;
    right:20px;
    top:35px;
    color:#6b4eff;
}

/* DARK MODE */
.theme-toggle{
    position:absolute;
    right:90px;
    right: 75px;
    top:85px;
    font-size:22px;
    cursor:pointer;
    color:#bbb1ee;
}
body.dark{
  background: #b3b1bd;
background: linear-gradient(90deg, rgba(179, 177, 189, 1) 0%, rgba(203, 201, 209, 1) 38%, rgba(205, 203, 212, 1) 50%, rgb(189, 184, 198) 60%, rgba(163, 157, 168, 1) 100%);
    
}
   
body.dark .navbar1 a{
    background:#000;
    color:#ffffff;
}
body.dark .header{
    background:#000;
    box-shadow:0 4px 12px rgba(0,0,0,0.4);
}
body.dark .header .logo{
    color:#ffffff;
}
body.dark .dropdown-menu{
    background:#000;
    color:#ffffff;
}
body.dark a{
    color:#fff;
    
}
body.dark .footer{
    background:#000;
}


















/* FOOTER */
.footer{
    background:#1f1f1f;
    color:#ddd;
    margin-top:px;
    padding:60px 0 20px;
}
.footer-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}
.footer-box h4{
    color:#6b4eff;
    margin-bottom:15px;
}
.footer-box p{
    font-size:14px;
    line-height:1.7;
}
.footer-box ul{
    list-style:none;
}
.footer-box ul li{
    margin-bottom:8px;
}
.footer-box ul li a{
    color:#ddd;
    text-decoration:none;
    transition:0.3s;
}
.footer-box ul li a:hover{
    color:#6b4eff;
    padding-left:5px;
}
.footer-box input,
.footer-box textarea{
    width:100%;
    padding:8px;
    margin-bottom:10px;
    border:none;
    border-radius:5px;
}
.footer-box button{
    width:100%;
    padding:10px;
    background:#6b4eff;
    color:#fff;
    border:none;
    border-radius:5px;
    cursor:pointer;
}
.footer-box button:hover{
    background:#fff;
    color:#000;
}
.social{
    text-align:center;
    margin:30px 0;
}
.social a{
    color:#fff;
    margin:0 10px;
    font-size:18px;
    transition:0.3s;
}
.social a:hover{
    color:#ffb703;
}
.copyright{
    text-align:center;
    font-size:14px;
    border-top:1px solid #333;
    padding-top:15px;
}

/*  RESPONSIVE HEADER  */

@media (max-width:1024px){
    .navbar1 ul{
        gap:15px;
    }
    .logo{
        font-size:28px;
    }
}

@media(max-width:768px){
    /* Toggle button visible */
    .menu-toggle{
        display:block;
    }

    /* Navbar hidden by default */
    .navbar1{
        position: absolute;
        top:70px;
        right:0;
        width:250px;
        background:#fff;
        flex-direction: column;
        align-items: flex-start;
        padding:20px;
        gap:15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    /* Navbar active state */
    .navbar1.active{
        transform: translateX(0);
    }

    /* Move login btn next to toggle btn */
    .login{
        position:absolute;
        top:20px;
        right:60px;
        z-index:1000;
    }

    .navbar1 ul{
        flex-direction: column;
        width:100%;
    }
    .navbar1 ul li{
        width:100%;
    }
    .navbar1 ul li a{
        width:100%;
        padding:10px 0;
    }

    /* Dropdown adjustment */
    .dropdown-menu{
        position: relative;
        top:0;
        left:0;
        box-shadow:none;
        transform:none;
        opacity:1;
        visibility:visible;
        background:#f5f7fa;
    }
}

/* Footer responsive */
@media(max-width:768px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:25px;
    }
    .footer-box input,
    .footer-box textarea{
        width:100%;
    }
}

/* Mobile fix for smaller devices */
@media(max-width:480px){
    .logo{
        font-size:24px;
    }
    .login{
        top:15px;
        right:50px;
    }
    .menu-toggle{
        top:30px;
        right:15px;
    }
    .navbar1{
        width:200px;
        padding:15px;
    }
    .footer-container{
        gap:20px;
    }
}












/*HOME PAGE*/


/* CAROUSEL */
.saturn-carousel img {
    height: 375px;
    object-fit: cover;
    border-radius: 16px;
}

/* HERO CARDS */
.venus-card {
    position: relative;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s;
}

.jupiter-card {
    height: 250px;
}

.venus-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.venus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
}

.venus-card:hover img {
    transform: scale(1.05);
}

/* CAROUSEL TEXT */
.mars-text {
    font-size: 36px;
    margin-bottom: 10px;
}

.mars-subtext {
    font-size: 18px;
}

/* GRID SECTIONS */
.neptune-section {
    padding: 60px 20px;
}

.uranus-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pluto-text h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
}

.pluto-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.pluto-text button {
    background: #ff3d00;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition:  0.3s ease;
}

.pluto-text button:hover {
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
    background: #e63600;
}

.moon-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* PRODUCT CARDS */
.mercury-orbit {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 10px;
}

.earth-card {
    width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.earth-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.earth-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.earth-card h3 {
    padding: 15px;
    font-size: 20px;
    color: #333;
}

.earth-card p {
    padding: 0 15px 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.earth-card button {
    background: #ff3d00;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 0 15px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.earth-card button:hover {
    background: #e63600;
}

/* IMAGE GRID SECTION */
.galaxy-section {
    padding: 60px 20px;
    background: #f4f6f8;
    border-radius: 30px;
}

.solar-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.asteroid-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    cursor: pointer;
}

.asteroid-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cosmic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.asteroid-box:hover img {
    transform: scale(1.1);
}

.asteroid-box:hover .cosmic-overlay {
    opacity: 1;
}
/* RESPONSIVE STYLES */
/* LARGE TABLETS & SMALL LAPTOPS */
@media (max-width: 1200px) {

    .uranus-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .moon-image img {
        height: 300px;
    }

    .solar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TABLETS */
@media (max-width: 992px) {

    .saturn-carousel img {
        height: 300px;
    }

    .mars-text {
        font-size: 30px;
    }

    .mars-subtext {
        font-size: 16px;
    }

    .venus-card {
        height: 90px;
    }

    .jupiter-card {
        height: 220px;
    }

    .earth-card {
        width: 45%;
    }

    .asteroid-box img {
        height: 280px;
    }
}

/* MOBILE DEVICES */
@media (max-width: 768px) {

    .saturn-carousel img {
        height: 220px;
        border-radius: 12px;
    }

    .mars-text {
        font-size: 24px;
    }

    .mars-subtext {
        font-size: 14px;
    }

    .venus-card,
    .jupiter-card {
        height: 180px;
    }

    .venus-overlay {
        padding: 15px;
        font-size: 14px;
    }

    .neptune-section {
        padding: 40px 15px;
    }

    .pluto-text h2 {
        font-size: 28px;
    }

    .pluto-text p {
        font-size: 15px;
    }

    .moon-image img {
        height: 250px;
    }

    .earth-card {
        width: 100%;
    }

    .solar-grid {
        grid-template-columns: 1fr;
    }

    .asteroid-box img {
        height: 240px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .mars-text {
        font-size: 20px;
    }

    .mars-subtext {
        font-size: 13px;
    }

    .venus-card,
    .jupiter-card {
        height: 160px;
    }

    .pluto-text h2 {
        font-size: 24px;
    }

    .pluto-text button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .asteroid-box img {
        height: 200px;
    }
}













/*ABOUT PAGE*/

.neo {
  height: 600px;
  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)),
    url('images/abouthero4.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  
  padding: 20px;
}

.morpheus {
   text-align: center;
   max-width: 800px; }
.trinity {
  font-size: 48px;
  font-weight: bold;
  color: white;
  font-family: 'Great Vibes', cursive;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}

.oracle {
  font-size: 25px;
  color: #f5f5f5;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;}

a.smith {
  display: inline-block;
  margin-top: 25px;
  background: #d4af37;           
  color: #000;                   
  border: 2px solid #d4af37;
  padding: 12px 35px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

a.smith:hover {
  background: #c19b2e;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


body.dark a.smith {
  background: #4b2e83;           
  border: 2px solid #f5e79e;
}

body.dark a.smith:hover {
  background: #5c3a9e;
  color: #fff8dc;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}





.heritage-bg {
  position: relative;
  min-height: 100%;
}

.heritage-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url('images/abouthero.png') repeat;
  background-size: cover;
  opacity: 0.3;
  padding-left: 40px;   
  padding-right: 40px;  
}
section {
  padding-left: 40px;
  padding-right: 40px;
}



.rollo {
  
  padding: 120px 20px;
  position: relative;
}

.aslaug {
   max-width: 1200px;
    margin: 0 auto;
     position: relative;
    padding: 0 40px;
    }

.odin-header { 

  text-align: center; margin-bottom: 60px; }

.bjorn-small {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  color: #4b2e83;
}

.floki-small {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.divider {
  width: 90px;
  height: 3px;
  background: #d4af37;
  margin: 16px auto 28px;
  position: relative;
}

.divider i {
  position: absolute;
  left: 50%;
  top: 0;                       
  transform: translateX(-50%) translateY(-58%); 
   color: rgb(53, 53, 53); 
   font-size: 16px; 
}
.odin-story {
  background:  #2e2e2e;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  margin-bottom: 60px;
  line-height: 1.8;

}


.odin-story p {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 18px;
  color: #f7e9d7;
  line-height: 1.7;
}.odin-stats  {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover { 
  transform: translateY(-6px);
 }

.stat-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 70%;
  margin-bottom: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.stat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #4b2e83;
  margin-bottom: 10px;
}

.stat-card p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #555;
}




.odin-quote {
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  color: #4b2e83;
  text-align: center;
  margin-top: 40px;
}


.values {
   padding: 120px 20px;
    position: relative; }

.values-wheel {
  position: relative;
  width: 670px;
  height: 670px;
  margin: 0 auto;
}

.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.value-item {
  position: absolute;
  text-align: center;
  width: 200px;
}
.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  color: #4b2e83;
  margin-bottom: 8px;
}

.value-item p {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #555
}
.value-item.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.value-item.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.value-item.left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.value-item.right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.value-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  border-radius: 24px;  
  object-fit: cover;        
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-icon:hover {
  transform: scale(1.05);   
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}


.legacy {
  padding: 120px 20px;
  position: relative;
}
.legacy {
  padding: 100px 20px;
  background: #fdfdfd;
}

.legacy-header {
  text-align: center;
  margin-bottom: 40px;
}

.divider {
  position: relative;
  width: 90px;
  height: 3px;
  background: #4b2e83;
  margin: 16px auto 28px;
}

.divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #000000;
  background: transparent;
  padding: 0;
  z-index: 1;
}

.legacy {
  padding: 100px 20px;
  background: inherit; 
}
.timeline {
  position: relative;
  margin: 0 auto;
  width: 80%;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #3e3e3e;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 45%;
  padding: 20px;
  background: transparent; 
  margin: 60px 0;
}


.timeline-item.sheldon {
  left: 0;
  text-align: right;
}
.timeline-item.penny {
  left: 55%;
  text-align: left;
}


.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d4af37;
  border: 3px solid #fff;
}

.timeline-item.sheldon::before {
  right: -8px;
}

.timeline-item.penny::before {
  left: -8px;
}



.team {
  padding: 120px 20px;
  position: relative;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}
.team-card:hover { 
  transform: translateY(-6px);
 }
.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #4b2e83;
  margin-bottom: 6px;
}
.team-card p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #555;
}

.stats {
  padding: 120px 20px;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stats .stat-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}
.stats .stat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #4b2e83;
  margin-bottom: 10px;
}
.stats .stat-card p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #555;
}.stats-scroll {
  padding: 120px 20px;
  position: relative;
}

.scroll-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  gap: 20px;
}

.scroll-line {
  position: absolute;
  top: 60px;              
  left: 0;
  right: 0;
  height: 6px;
  background: #4b2e83;
  opacity: 0.6;
  border-radius: 3px;
  z-index: 0;
}


.scroll-item {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.scroll-item .seal {
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #4b2e83;
  color: #fff;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.scroll-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #4b2e83;
  margin-bottom: 6px;
  white-space: nowrap;
}

.scroll-item p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #555;
  margin: 0;
}

.card,
.stat-card,
.timeline div
{
  background: #faf3e0; 
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, outline 0.3s ease;
  border: 1px solid transparent;
}

.card:hover,
.timeline div:hover
 {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  outline: 2px solid #d4af37; 
  outline-offset: -2px;
}


.card h3,
.stat-card h3,
.timeline div h3
 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #4b2e83;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}


.timeline div .year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #4b2e83;
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
  transition: color 0.3s ease;
}


.card p,
.stat-card p,
.timeline div 
 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s ease;
}


.card:hover h3,
.stat-card:hover h3,
.timeline div:hover h3,
.timeline div:hover .year {
  color: #d4af37; 
}

.card:hover p,
.stat-card:hover p,
.timeline div:hover p
{
  color: #333; 
}


/* RESPONSIVE  */

/* Mobile devices (up to 767px) */
@media screen and (max-width: 767px) {
  .neo { height: 400px; padding: 15px; }
  .trinity { font-size: 32px; }
  .oracle { font-size: 18px; max-width: 90%; }

  a.smith { padding: 10px 25px; font-size: 14px; }

  .odin-stats, .team-grid, .aa-stats-grid { grid-template-columns: 1fr !important; }
  .values-wheel { width: 90%; height: auto; }
  .value-item { width: 120px; height: auto; }
  .value-item img { width: 100px; height: 100px; }

  .aa-scroll-item { width: 25%; }
  .aa-timeline { width: 95%; }
  .aa-timeline div { width: 90% !important; left: 5% !important; text-align: left !important; }
}

/* Tablets (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .neo { height: 500px; padding: 20px; }
  .trinity { font-size: 40px; }
  .oracle { font-size: 20px; max-width: 80%; }

  .odin-stats, .team-grid, .aa-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .values-wheel { width: 500px; height: 500px; }
  .value-item img { width: 150px; height: 150px; }

  .aa-scroll-item { width: 20%; }
}

/* Large desktops (1025px and above) */
@media screen and (min-width: 1025px) {
  .odin-stats, .team-grid, .aa-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .values-wheel { width: 670px; height: 670px; }
  .value-item img { width: 200px; height: 200px; }
  .aa-scroll-item { width: 18%; }
}








/*CATEGORIES PAGE*/

    .hero-a{
      min-height:100vh;
      background-image: url(./images/Arabic\ Grid\ Banner\ \(2\).png);
      background-repeat: no-repeat;
      background-size:cover;
      background-position:center;
      
    }
  .hero-o{
      min-height:100vh;
      background-image: url(./images/Oriental\ Grid\ Banner\ \(1\).png);
      background-repeat: no-repeat;
      background-size:cover;
      background-position:center;
      
    }
     .hero-w{
      min-height:100vh;
      background-image: url(./images/western\ calligraphy\ grid\ banner.png);
      background-repeat: no-repeat;
      background-size:cover;
      background-position:center;
      
    }
    .hero-a h1 , .hero-o h1 , .hero-w h1{
      font-size: 50px;
      color: #fff;
        font-weight: bold;
        text-align: center;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
      letter-spacing:3px;
    }

    .hero-a p , .hero-o p , .hero-w p{
     
      color: #fff;
        font-weight: bold;
        text-align: center;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
      letter-spacing:3px;
    }
    .section-padding{
      padding:100px 0;
    }
    .feature-box{
      background-color: #fff;
      border-radius:25px;
      padding:50px 35px;
      box-shadow:0 25px 60px rgba(0,0,0,0.15);
      transition:0.4s ease;
      height:100%;
    }
    .feature-box:hover{
      transform:translateY(-10px);
    }
    .feature-box h4{
      margin-bottom:15px;
    }
    .highlight{
      background:#111;
      color:#fff;
      border-radius:40px;
      padding:80px;
    }
    .highlight img{
      border-radius:30px;
      box-shadow:0 30px 60px rgba(0,0,0,0.4);
    }

/*  RESPONSIVE  */

/* Mobile devices (up to 767px) */
@media screen and (max-width: 767px) {
  .hero-a, .hero-o, .hero-w {
    min-height: 50vh;
    background-size: cover;
    background-position: center;
  }

  .hero-a h1, .hero-o h1, .hero-w h1 {
    font-size: 28px;
    letter-spacing: 1.5px;
    padding: 0 10px;
  }

  .hero-a p, .hero-o p, .hero-w p {
    font-size: 16px;
    letter-spacing: 1px;
    padding: 0 10px;
  }

  .section-padding {
    padding: 50px 10px;
  }

  .feature-box {
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    margin-bottom: 20px;
  }

  .highlight {
    padding: 40px 20px;
  }

  .highlight img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
}

/* Tablets (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-a, .hero-o, .hero-w {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
  }

  .hero-a h1, .hero-o h1, .hero-w h1 {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .hero-a p, .hero-o p, .hero-w p {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .section-padding {
    padding: 70px 20px;
  }

  .feature-box {
    padding: 40px 30px;
  }

  .highlight {
    padding: 60px;
  }

  .highlight img {
    width: 100%;
    height: auto;
  }
}

/* Large desktops (1025px and above) */
@media screen and (min-width: 1025px) {
  .hero-a, .hero-o, .hero-w {
    min-height: 100vh;
  }

  .hero-a h1, .hero-o h1, .hero-w h1 {
    font-size: 50px;
  }

  .hero-a p, .hero-o p, .hero-w p {
    font-size: 18px;
  }

  .section-padding {
    padding: 100px 0;
  }

  .feature-box {
    padding: 50px 35px;
  }

  .highlight {
    padding: 80px;
  }

  .highlight img {
    border-radius: 30px;
  }
}









/*STYLE ALL PAGES*/

    .hero1{
      min-height:90vh;
      background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url(./images/aaa.png) center/cover no-repeat;
      display:flex;
      align-items:center;
      color:#fff;
    }

    .hero1 h1{
      font-size:52px;
      color:#fff;
    }

    .hero1 span{
      color:var(--gold);
    }

    .btn-1 {
      text-decoration: none;
      color:#fff;
      background-color: #6b4eff;
      border-radius:30px;
      padding:12px 35px;
      font-weight:600;
    }

    .btn-1:hover{
      background:#000;
      color:#fff;
    }


    /* Main Section */
.styles-section{
    padding:60px 20px;
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.styles-section h1{
    font-size:36px;
    margin-bottom:10px;
}

.subtitle{
    font-size:16px;
    color:#555;
    margin-bottom:40px;
}

/* Grid */
.styles-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* Cards */
.style-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    text-align:left;
    transition:0.4s;
    animation:fadeUp 0.8s ease;
}

.style-card:hover{
    transform:translateY(-10px);
}

/* Icons */
.style-card i{
    font-size:38px;
    margin-bottom:15px;
}

/* Text */
.style-card h2{
    font-size:22px;
    margin-bottom:8px;
}

.style-card p{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
}

.style-card ul{
    margin-left:18px;
    margin-bottom:15px;
}

.style-card ul li{
    font-size:13px;
    margin-bottom:6px;
}


.btn2{
    display:inline-block;
    padding:10px 18px;
    border-radius:25px;
    background:#222;
    color:#fff;
    font-size:13px;
    text-decoration:none;
}



.video-section{
  
    padding:60px 20px;
    margin-top:60px;
    text-align:center;
}

.video-section h2{
    font-size:30px;
    margin-bottom:10px;
}

.video-grid{
    
    max-width:1100px;
    margin:40px auto 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}



.video-card iframe{
    width:100%;
    height:150px;
    border-radius:12px;
}

.video-card h4{
    margin-top:10px;
    font-size:20px;
}

/* Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */
@media(max-width:600px){
    .styles-section h1{
        font-size:28px;
    }
}

/*KIDS/BEGINNER/ADVANCE/AND/ARABIC/WESTERN/ORIENTAL PAGE STYLE*/
/* HERO */
.hero{
    padding:140px 20px;
    text-align:center;
    color:#fff;
}

.hero-content{
    max-width:900px;
    margin:auto;
}

.hero h1{
    font-size:52px;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    line-height:1.6;
}

.hero-kids{
     background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url(./images/aaa.png) center/cover no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-beginner{
     background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),url(./images/aaa.png) center/cover no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* SECTIONS */
.wide-section{
   
    max-width:1100px;
    margin:100px auto;
    padding:0 20px;
}

.wide-section h2{
    font-size:36px;
    margin-bottom:20px;
}

.big-text{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

/* LESSONS */
.lesson-section{
   
    padding:100px 20px;
}

.lesson-section h2{
    text-align:center;
    font-size:40px;
    margin-bottom:60px;
}

.lesson-row{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;
}

.lesson-card{
    background-color: #fff;
    padding:40px;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.lesson-card h3{
    font-size:24px;
    margin-bottom:12px;
}

.lesson-card p{
    font-size:16px;
    color:#555;
}

/* HIGHLIGHT */
.highlight-section{
   
    padding:100px 20px;
    text-align:center;
}

.main-btn{
    margin-top:25px;
    padding:16px 34px;
    font-size:16px;
    border:none;
    border-radius:40px;
    background:#222;
    color:#fff;
    cursor:pointer;
}

/* LIST */
.big-list{
    
    font-size:18px;
    margin-left:25px;
    line-height:2;
}

/* VIDEO */
.video0-section{
    gap: 3rem;
    padding:100px;
    
    text-align:center;
}
.video0-section h2{
    margin-bottom: 5%;
    font-size: 30px;
    text-align:center;
}
.video0-section iframe{
    background-color: #fff;
    width:80%;
    max-width:900px;
    height:440px;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
}
.video1-section h2{
   
    margin-bottom: 0%;
    padding-top: 50px;
}


.video-section{
    display: flex;
    gap: 3rem;
    padding:100px;
    text-align:center;
}





.video-section iframe{
    
    width:30%;
    max-width:900px;
    height:250px;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
}

/* RESPONSIVE  */

/* Small devices / Mobile (max-width: 600px) */
@media screen and (max-width: 600px) {
    .hero1 h1 {
        font-size: 32px;
    }

    .btn-1 {
        padding: 10px 25px;
        font-size: 14px;
    }

    .styles-section h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .styles-grid {
        gap: 15px;
    }

    .style-card {
        padding: 15px;
    }

    .style-card h2 {
        font-size: 18px;
    }

    .style-card p, .style-card ul li {
        font-size: 12px;
    }

    .btn2 {
        padding: 8px 15px;
        font-size: 12px;
    }

    .video-section, .video0-section {
        padding: 50px 10px;
        flex-direction: column;
        gap: 25px;
    }

    .video-section iframe, .video0-section iframe {
        width: 100%;
        height: 200px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .lesson-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .lesson-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lesson-card {
        padding: 20px;
    }

    .highlight-section {
        padding: 50px 10px;
    }

    .video0-section h2 {
        font-size: 24px;
    }

    .video1-section h2 {
        font-size: 24px;
        padding-top: 30px;
    }
}

/* Tablets (601px to 1024px) */
@media screen and (min-width: 601px) and (max-width: 1024px) {
    .hero1 h1 {
        font-size: 40px;
    }

    .btn-1 {
        padding: 12px 30px;
        font-size: 15px;
    }

    .styles-section h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 15px;
    }

    .styles-grid {
        gap: 20px;
    }

    .style-card h2 {
        font-size: 20px;
    }

    .style-card p, .style-card ul li {
        font-size: 13px;
    }

    .btn2 {
        padding: 9px 16px;
        font-size: 13px;
    }

    .video-section, .video0-section {
        flex-direction: column;
        gap: 30px;
        padding: 70px 20px;
    }

    .video-section iframe, .video0-section iframe {
        width: 100%;
        height: 250px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }

    .lesson-section h2 {
        font-size: 32px;
    }

    .lesson-row {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .lesson-card {
        padding: 30px;
    }

    .highlight-section {
        padding: 70px 20px;
    }

    .video0-section h2 {
        font-size: 26px;
    }

    .video1-section h2 {
        font-size: 26px;
    }
}

/* Large desktops (1025px and above) */
@media screen and (min-width: 1025px) {
    .hero1 h1 {
        font-size: 52px;
    }

    .styles-section h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .video-section iframe, .video0-section iframe {
        height: 250px;
    }

    .lesson-section h2 {
        font-size: 40px;
    }

    .lesson-card {
        padding: 40px;
    }

    .highlight-section {
        padding: 100px 20px;
    }

    .video0-section h2, .video1-section h2 {
        font-size: 30px;
    }
}





















/*LOGIN PAGE*/
/* CARD */
.lion{
    margin-left: 28%;

    width:600px;
    height:400px;
    background:#fff;
    border-radius:18px;
    position:relative;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.2);
    animation:cardPop .8s ease;
}
@keyframes cardPop{
    from{opacity:0;transform:scale(.9)}
    to{opacity:1;transform:scale(1)}
}

/* BLUE SLIDER */
.tiger{
    position:absolute;
    inset:0;
    width:50%;
    background:linear-gradient(135deg,#6b4eff,#6b4eff);
    transition:.7s cubic-bezier(.68,-0.55,.27,1.55);
    z-index:1;
}
.tiger.signin{
    transform:translateX(100%);
}

/* HERO */
.elephant, .giraffe{
    position:absolute;
    width:50%;
    height:100%;
    z-index:2;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px;
    transition:.7s ease;
}
.elephant h2,.giraffe h2{
    font-size:32px;
}
.elephant p,.giraffe p{
    font-size:14px;
    opacity:.85;
    margin-top:8px;
}
.elephant button,.giraffe button{
    margin-top:24px;
    padding:13px 46px;
    border-radius:30px;
    border:1px solid #fff;
    background:transparent;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}
.elephant button:hover,.giraffe button:hover{
    background:rgba(255,255,255,.2);
    transform:scale(1.05);
}

.elephant{left:0;}
.giraffe{left:50%;}

.elephant:not(.active),.giraffe:not(.active){
    opacity:0;
    transform:translateY(30px);
    pointer-events:none;
}

/* FORM */
.monkey,.panda{
    position:absolute;
    width:50%;
    height:100%;
    background:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:40px;
    transition:.7s ease;
}
.monkey{left:50%;}
.panda{left:0;}

.monkey h2,.panda h2{
    font-size:28px;
}
.monkey p,.panda p{
    font-size:12px;
    opacity:.6;
    margin-bottom:20px;
}
.monkey button a{
    text-decoration:none;
    color:#fff;
    font-weight: bold;
    font-size: 20px;
}

form{
    width:100%;
    max-width:280px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

/* INPUT ANIMATION */
input{
    padding:14px;
    border-radius:12px;
    border:0;
    background:#eef0f7;
    transition:.3s;
}
input:focus{
    outline:none;
    background:#e3e7ff;
    box-shadow:0 0 0 2px #6b4eff;
}

/* BUTTON */
   .monkey button,.panda button a{
    text-decoration:none;
    color:#fff;
    font-weight: bold;
    font-size: 20px;
    }

.monkey a button,.panda a button {
    width: 100%;
    margin-top:10px;
    padding:14px;
    border-radius:30px;
    border:0;
    background:linear-gradient(135deg,#3a5ed4,#5f7dff);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}
.monkey button:hover,.panda button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(58,94,212,.4);
}

.monkey a,.panda a{

    font-size:12px;
    color:#6b4eff;
    text-decoration:none;
}

/* HIDE */
.monkey:not(.active),.panda:not(.active){
    opacity:0;
    transform:translateY(-30px);
    pointer-events:none;
}

/* MOBILE */
@media(max-width:768px){
    .lion{height:auto;width:100%;}
    .tiger{display:none;}
    .elephant,.giraffe,.monkey,.panda{
        position:relative;
        width:100%;
        opacity:1!important;
        transform:none!important;
        pointer-events:auto!important;
    }
    .elephant,.giraffe{
        background:linear-gradient(135deg,#6b4eff,#6b4eff);
    }
}

/*  LOGIN PAGE RESPONSIVE */

/* Mobile / Tablet */
@media screen and (max-width: 768px) {
    /* Card */
    .lion {
        width: 90%;
        margin: 20px auto;
        height: auto;
        padding-bottom: 20px;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }

    /* Hide blue slider */
    .tiger {
        display: none;
    }

    /* Hero Sections */
    .elephant, .giraffe, .monkey, .panda {
        position: relative !important;
        width: 100%;
        height: auto;
        padding: 20px !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        text-align: center;
    }

    .elephant, .giraffe {
        background: linear-gradient(135deg,#6b4eff,#5f7dff);
    }

    /* Hero text */
    .elephant h2, .giraffe h2 {
        font-size: 24px;
    }

    .elephant p, .giraffe p {
        font-size: 14px;
    }

    .elephant button, .giraffe button {
        padding: 10px 30px;
        font-size: 16px;
    }

    /* Forms */
    .monkey h2, .panda h2 {
        font-size: 22px;
    }

    .monkey p, .panda p {
        font-size: 12px;
    }

    form {
        max-width: 100%;
        gap: 12px;
    }

    input {
        padding: 12px;
        font-size: 14px;
    }

    .monkey a button, .panda a button {
        font-size: 18px;
        padding: 12px;
    }

    .monkey a, .panda a {
        font-size: 11px;
    }
}








/*CONTACT PAGE/THANK YOU PAGE*/

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.page-banner {
    position: relative;
    height: 300px;
    background: url("./images/contact\ banner.jpeg") center / cover no-repeat;
    display: flex;
    align-items: center;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.banner-inner {
    position: relative;
    color: #ffffff;
}
.banner-inner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}
.banner-inner p {
    font-size: 16px;
    color: #f1c40f; /* yellow highlight */
    font-weight: 400;
}

.banner-inner p span {
    color: #ffffff;
}

.thank-you1{
  padding: 50px;
}
.thank-you-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 60px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    }
.thank-you-container h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-align: center;
    }
.thank-you-container p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-align: center;
    }
.thank-you-container a {
    text-decoration: none;
    background-color: white;
    color: #5d26c1;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    margin-left: 45%;
    }
.thank-you-container a:hover {
      background-color: #5d26c1;
      color: white;
      box-shadow: 0 0 15px white;
    }
    
body.dark .thank-you-container a{
    color: #000;
    text-align:center;
    background:#fff;
}
.contact-section{
    padding:80px 8%;
}
.contact-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:50px;
    margin-bottom:80px;
}
.contact-form-box{
    background:#ddd;
    padding:40px;
    border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.contact-form-box h2{
    font-size:32px;
    margin-bottom:10px;
}

.contact-form-box p{
    color:#000000;
    margin-bottom:30px;
}

/* Contact form */
.form-group{
    margin-bottom:20px;
}

.contact-form-box1 .form-group input,
.contact-form-box1 .form-group textarea{
    width:400PX;
    padding:15px;
    border-radius:10px;
    border:1px solid #fff;
    
    color:#000000;
    outline:none;
    transition:0.3s;
}

.form-group textarea{
    height:140px;
    resize:none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#000000;
    box-shadow:0 0 0 2px #fff;
}

/* BUTTON */

.btn-thankyou{
    width: 400px;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#6b4eff;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}
.btn-thankyou a{
    text-decoration: none;
    color: #fff;
    border-radius: 20px;
}
.btn-thankyou:hover{
    background:#2b00ff;
    transform:translateY(-2px);
}
.location-head{
    font-weight: bold;
    text-align: center;
}
.Location-map {
    width: 500px;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px; 
}
.Location-map iframe,
.Location-map img {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* STORES */
.store-head{
    font-weight: bold;
}
.store-loc-box{
    background:rgba(255,255,255,0.05);
    padding:40px;
    border-radius:16px;
}

.store-loc-box h2{
    font-size:32px;
    margin-bottom:25px;
}

.store-Loc-card{
    background:rgba(0,0,0,0.4);
    padding:20px;
    border-radius:12px;
    margin-bottom:15px;
    transition:0.3s;
}

.store-Loc-card:hover{
    transform:translateX(5px);
    background:#2b00ff;
    color: #fff;
}

.store-Loc-card h4{
    margin-bottom:5px;
}

/*  CONTACT / THANK YOU PAGE RESPONSIVE  */

@media screen and (max-width: 1024px) {
    .page-banner {
        height: 220px;
    }
    .banner-inner h1 {
        font-size: 36px;
    }
    .banner-inner p {
        font-size: 14px;
    }
    .thank-you-container {
        padding: 30px 40px;
    }
    .thank-you-container h1 {
        font-size: 2.2em;
    }
    .thank-you-container p {
        font-size: 1em;
    }
    .thank-you-container a {
        width: 80%;
        margin-left: 10%;
        padding: 12px 20px;
    }
    .contact-section {
        padding: 60px 5%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    .contact-form-box {
        padding: 30px;
    }
    .contact-form-box1 .form-group input,
    .contact-form-box1 .form-group textarea {
        width: 100%;
    }
    .btn-thankyou {
        width: 100%;
        padding: 14px;
    }
    .Location-map {
        width: 100%;
        height: 400px;
    }
    .store-loc-box {
        padding: 30px;
    }
    .store-Loc-card {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 600px) {
    .page-banner {
        height: 180px;
    }
    .banner-inner h1 {
        font-size: 28px;
    }
    .banner-inner p {
        font-size: 12px;
    }
    .thank-you-container {
        padding: 20px 25px;
    }
    .thank-you-container h1 {
        font-size: 1.8em;
    }
    .thank-you-container p {
        font-size: 0.95em;
    }
    .thank-you-container a {
        width: 100%;
        margin-left: 0;
        padding: 12px;
        font-size: 14px;
    }
    .contact-section {
        padding: 40px 5%;
    }
    .contact-form-box {
        padding: 20px;
    }
    .Location-map {
        height: 300px;
    }
    .store-loc-box {
        padding: 20px;
    }
    .store-Loc-card h4 {
        font-size: 16px;
    }
}








/*GALLERY PAGE*/

.apple-basket{
  max-width:1400px;
  margin:60px auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  padding:0 20px;
}

/* CARD */
.mango-card{
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 15px 30px rgba(0,0,0,.18);
  text-align:center;
  transition:.35s;
  cursor:pointer;
}

.mango-card:hover{
  transform:translateY(-10px) scale(1.03);
}

.mango-card img{
  width:100%;
  height:280px;
  border-radius:14px;
  transition:.5s;
}

.mango-card:hover img{
  transform:scale(1.08);
}

.mango-title{
  margin:12px 0 6px;
  font-weight:600;
}

.mango-text{font-size:14px;color:#555;}

/* BUTTONS */
.banana-group{
  display:flex;
  gap:10px;
  margin-top:15px;
}

.orange-buy{
  flex:1;
  padding:8px;
  background:linear-gradient(135deg,#6b4eff,#4b2cff);
  color:#fff;
  border:none;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
  transition:.3s;
}

.orange-buy:hover{
  box-shadow:0 8px 20px rgba(107,78,255,.6);
}

.grape-info{
  flex:1;
  padding:8px;
  background:#000;
  color:#fff;
  border:none;
  border-radius:10px;
  cursor:pointer;
  transition:.3s;
}
.grape-info:hover{
  box-shadow:0 8px 20px rgba(13, 13, 14, 0.6);
}

/* MODAL */
.pine-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  z-index:9;
}

.papaya-modal{
  position:fixed;
  top:60%;
  left:50%;
  transform:translate(-50%,-50%);
  width:320px;
  background:#fff;
  padding:20px;
  border-radius:20px;
  display:none;
  z-index:10;
}

.papaya-modal img{
  width:130px;
  border-radius:14px;
}

.kiwi-price{
  font-size:18px;
  font-weight:bold;
  color:#6b4eff;
}

.berry-close{
  text-align:center;
  cursor:pointer;
  color:#777;
}

/*  GALLERY PAGE RESPONSIVE  */

@media screen and (max-width: 1024px) {
    .apple-basket {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        margin: 40px auto;
        padding: 0 15px;
    }
    .mango-card img {
        height: 220px;
    }
    .banana-group {
        flex-direction: column;
        gap: 8px;
    }
    .orange-buy, .grape-info {
        flex: 1 1 100%;
        padding: 8px 0;
    }
    .papaya-modal {
        width: 280px;
        padding: 15px;
    }
    .papaya-modal img {
        width: 120px;
    }
}

@media screen and (max-width: 600px) {
    .apple-basket {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px auto;
        padding: 0 10px;
    }
    .mango-card img {
        height: 180px;
    }
    .banana-group {
        flex-direction: column;
        gap: 6px;
    }
    .orange-buy, .grape-info {
        flex: 1 1 100%;
        font-size: 14px;
        padding: 6px 0;
    }
    .papaya-modal {
        width: 90%;
        padding: 12px;
    }
    .papaya-modal img {
        width: 100px;
    }
}






/* CART PAGE */



.cart{

  max-width:900px;
  margin:auto;
  background:#fff;
  padding:25px;
  border-radius:15px;
}

.item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:15px;
  border-bottom:1px solid #ddd;
  padding-bottom:10px;
}

.item img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:10px;
  margin-right:15px;
}

.item-details{
  flex:1;
}

.item-details h4{
  margin:0 0 5px 0;
}

.qty{
  font-weight:bold;
}

.total{
  font-size:20px;
  font-weight:bold;
  margin-top:20px;
}

button{
  padding:10px 18px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  color:#fff;
}

.remove{
  background:#ff4e4e;
}

.proceed{
  background:#6b4eff;
  margin-top:20px;
  width:100%;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: none;
}
.proceed:hover{
  background:#4b2fd8;
  box-shadow: none;
}

/*  CART PAGE RESPONSIVE  */

@media screen and (max-width: 1024px) {
    .cart {
        max-width: 700px;
        padding: 20px;
        margin: 30px auto;
    }
    .item img {
        width: 70px;
        height: 70px;
        margin-right: 10px;
    }
    .item-details h4 {
        font-size: 16px;
    }
    .qty {
        font-size: 14px;
    }
    .total {
        font-size: 18px;
        margin-top: 15px;
    }
    .proceed, .remove {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .cart {
        width: 95%;
        padding: 15px;
        margin: 20px auto;
    }
    .item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 12px;
    }
    .item img {
        width: 100%;
        height: auto;
        margin: 0 0 10px 0;
        border-radius: 12px;
    }
    .item-details h4 {
        font-size: 15px;
    }
    .qty {
        font-size: 13px;
    }
    .total {
        font-size: 16px;
        text-align: left;
    }
    .proceed, .remove {
        width: 100%;
        padding: 12px 0;
        font-size: 14px;
    }
}














/*PAYMENT PAGE*/


/* CONTAINER */
.payment-box{
    margin: auto;
  background:#fff;
  width:420px;
  border-radius:22px;
  padding:30px;
  box-shadow:0 30px 60px rgba(0,0,0,.3);
}

h2{text-align:center;margin-bottom:20px;}

/* ORDER */
.order{
  background:#f2f2f2;
  padding:15px;
  border-radius:14px;
  margin-bottom:20px;
}

.order div{
  display:flex;
  justify-content:space-between;
  margin-bottom:8px;
}

.order b{color:#6b4eff}

/* TABS */
.tabs{
  display:flex;
  gap:10px;
  margin-bottom:15px;
}

.tabs button{
  flex:1;
  padding:10px;
  border:none;
  border-radius:10px;
  color: #000;
  background:#ddd;
  cursor:pointer;
  font-weight:600;
  transition: 0.3s;
}

.tabs button.active{
  color: #fff;
  background-color: #6b4eff;
  box-shadow: none;
}

/* FORMS */
.payment-form .form{
    width: 360px;
  display:none;
    
  padding:12px;
  margin-bottom:12px;
  border-radius:10px;
  border:1px solid #ccc;

}

.payment-form .form.active{
  display:block;
}

.payment-form{
    width: 100%;
    display:flex;
    flex-direction:column;
    gap:12px;
 }

 .payment-box input{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:10px;
  border:1px solid #ccc;
}

/* PAY BTN */
.pay-btn{
  width: 360px;
  padding:14px;

  background:#6b4eff;
  color:#fff;
  border:none;
  border-radius:12px;
  font-size:16px;
  cursor:pointer;
  transition: 0.3s;
}
.pay-btn:hover{
  background:#4b2fd8;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}




.thankyou-section{
  display:none;
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

.thankyou-card{
  background:#ffffff;
  padding:40px;
  border-radius:16px;
  text-align:center;
  max-width:500px;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  animation:pop 0.4s ease;
}

.thankyou-card i{
  font-size:80px;
  color:#28a745;
  margin-bottom:15px;
}

.thankyou-card h2{
  margin-bottom:10px;
  color:#28a745;
}

.thankyou-card p{
  color:#333;
  font-size:16px;
  line-height:1.6;
  margin-bottom:25px;
}

.home-btn{
  display:inline-block;
  padding:12px 30px;
  background:#6b4eff;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:500;
  transition:0.3s;
}

.home-btn:hover{
  background:#4b2fd8;
}

/* Animation */
@keyframes pop{
  from{transform:scale(0.8);opacity:0;}
  to{transform:scale(1);opacity:1;}
}












/*FEEDBACK PAGE*/

:root{
    --purple:#6b4eff;
    --dark:#222;
    
}

.hero{
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:60px 20px;
   
}

.hero h1{
   color: #000;
    font-size:50px;
    letter-spacing:1px;
    animation:fadeUp 1s ease forwards;
}

.hero h1 span{
    color:var(--purple);
}

.hero p{
    margin-top:22px;
    max-width:760px;
    margin-inline:auto;
    color:#555;
    font-size:18px;
    line-height:1.7;
    animation:fadeUp 1.3s ease forwards;
}

/* Decorative line */
.divider{
    width:250px;
    height:3px;
    background:var(--purple);
    margin:30px auto;
    border-radius:20px;
}


.reviews{
    padding:120px 20px;
    background:var(--light);
}

.reviews h2{
    text-align:center;
    font-size:36px;
    margin-bottom:70px;
}

.review-wrap{
    max-width:1150px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:55px;
}

/* Review Card */
.review-card{
    display:flex;
    gap:35px;
    padding:35px;
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(6px);
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
    animation:fadeUp 1.2s ease forwards;
    transition:.4s;
    border: 2px solid transparent; 
}

.review-card:hover{
    transform:translateY(-6px);
    box-shadow:0 35px 80px rgba(179, 123, 234, 0.6); 
    border: 2px solid #6b4eff; 
    color: #6b4eff;
}


.review-cards-text{
    font-size: 25px;
}

/* Image */
.review-img{
    flex:0 0 240px;
}

.review-img img{
    width: 100%;
    height:100%;
    object-fit:cover;
    border-radius:18px;
    filter:contrast(1.05);
}

/* Content */
.review-content .stars{
    color:var(--purple);
    margin-bottom:14px;
    font-size:18px;
}

.review-content p{
    font-style:italic;
    color:#555;
    margin-bottom:18px;
    line-height:1.7;
}

.review-content h4{
    font-weight:600;
    color:#000;
}

/* FEEDBACK */
.feedback{
    padding:100px 10px;
}

.feedback-box{
    max-width:780px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:24px;
    box-shadow:0 35px 90px rgba(0,0,0,0.08);
    animation:fadeUp 1.4s ease forwards;
}

.feedback-box h2{
    text-align:center;
    font-size:36px;
}

.feedback-box span{
    color:var(--purple);
}

.feedback-box p{
    text-align:center;
    margin:16px 0 45px;
    color:#555;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: inherit;
  font-size: 16px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:500;
}

.form-group input,
.form-group textarea,
.form-group select{
    width: 690px;
    padding:15px;
    border-radius:12px;
    border:1px solid #ddd;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:var(--purple);
    box-shadow:0 0 0 3px rgba(123,44,191,0.12);
}

/* Rating */
.rating{
    display:flex;
    gap:10px;
    font-size:26px;
    cursor:pointer;
}

.rating span{
    color:#ccc;
}

.rating span.active{
    color:var(--purple);
}

/* Button */
.feedback-btn{
    width:690px;
    padding:17px;
    background:linear-gradient(135deg,var(--purple),#6b4eff);
    color:#fff;
    border:none;
    border-radius:16px;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(123,44,191,0.35);
}

/* Responsive */
@media(max-width:768px){
    .review-card{
        flex-direction:column;
    }
    .hero h1{
        font-size:36px;
    }
    .feedback-box{
        padding:38px;
    }
}



