/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and layout */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}






/* ---------------- HEADER / NAVBAR ---------------- */
/* ---------------- HEADER / NAVBAR ---------------- */
.header {
    width: 100%;
    background: #fff5f5;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9900;
}
.logo img {
    height: 70px;
    width: auto;
    background: transparent;
    display: block;
}



.nav a {
    margin-left: 25px;
    font-size: 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex; /* Ensure the icon and text are aligned */
    align-items: center;  /* Vertically align the icon and text */
}

.nav a:hover {
    color: #ff9900;
}

.nav .active {
    color: #ff9900;
}

/* Adjust the cart icon */
#cart-icon {
    width: 1em; /* Adjust to match the font size */
    height: 1em; /* Keep it proportional */
    margin-right: 5px; /* Space between icon and item count */
    object-fit: contain; /* Ensure the image is scaled properly */
}

#cart-icon-link {
    display: inline-flex;
    align-items: center;
}











/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
}

.hamburger span {
  height: 3px;
  background: black;
  margin: 5px 0;
  display: block;
}

/* Mobile layout */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 15px;
  }

  .nav a {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .nav.active {
    display: flex;
  }
}







































.category-section {
    padding: 40px; 
    text-align: center;
    background-color: #f9f9f9;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; 
}

.category-card {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    background-color: transparent;
    text-align: center;
    width: 200px; 
    padding: 30px; 
    box-shadow: none;
    cursor: pointer;
}

.category-card img {
    width: 250px;  
    height: 330px; 
    object-fit: cover;  
    object-position: center;  
    margin-bottom: 15px;  
    border-radius: 8px;  
    transition: transform 0.3s ease; 
}
.category-card:hover img {
    transform: scale(1.1);  
}

.category-name {
    font-weight: bold;
    font-size: 1.2rem; 
    margin-top: 10px; 
}

.category-count {
    font-size: 1rem; 
    color: #555;
}
























/* Product Section
 .product-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  
    background: #ffffff;
}


.product-card {
    background-color: white;
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}




.product-card > img {
    width: 100%;
    height: 320px !important;   
    overflow: hidden; 
    position: relative; 
}


.product-card .product-image {
    width: 100%;
    height: 100px; 
    object-fit: cover; 
    border-radius: 8px;
    transition: transform 0.3s ease;  
    cursor: pointer;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}



.product-card .product-info {
    padding: 18px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}


.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-top: 50px;
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center; 
    position: relative;
    padding-bottom: 6px;
    
}


.product-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff9900;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}


.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d35400;
    margin-top: 14px;
    margin-bottom: 12px;
    background: rgba(255, 153, 0, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    text-align: center; 
    width: 100%; 
}




.add-to-cart-btn {
    background-color: #ff9900;
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #e68a00;
}




.product-card img {
    transition: transform 0.3s ease;  
    cursor: pointer; 
}

.product-card img:hover {
    transform: scale(1.1);  
}



.zoomed-in {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;  
    cursor: zoom-out; 
}

.zoomed-in-image {
    max-width: 100%;  
    max-height: 100%; 
    object-fit: contain; 
}


.product-title,
.product-subtitle,
.product-weight {
    text-align: center;
    font-weight: 600;
    margin-top: 8px;
    white-space: nowrap;         
    overflow: hidden;            
    text-overflow: ellipsis;    
}

.product-subtitle {
    color: #777;
    font-size: 1rem;
    font-weight: 500;
}


.product-weight {
    font-size: 1.05rem;
    color: #333;
} */


/* Product Section */
.product-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;  /* Adjust gap between product cards */
    background: #ffffff;
    padding: 10px;
    width: 100%;
    margin: 0;
}

/* Product Card */
.product-card {
    background-color: white;
    width: 100%; /* Ensure card takes full width of its container */
    max-width: 300px; /* Max width for the card on large screens */
    height: 100%; /* Ensure card takes full height of the container */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Product Image */
.product-card .product-image {
    width: 100%; /* Full width of the card */
    height: 100%; /* Fill the height of the card */
    position: relative; /* Positioning for absolute content (if any) */
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%; /* Image will fill the full width of the container */
    height: 100%; /* Image will fill the full height of the container */
    object-fit: cover; /* Ensures image scales without distortion */
    object-position: center; /* Center the image if it needs to crop */
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card .product-image img:hover {
    transform: scale(1.1);  /* Slight zoom effect on hover */
}

/* Product Info Section */
.product-card .product-info {
    padding: 18px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    flex-grow: 1;
}

/* Product Title */
.product-card .product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
    position: relative;
    padding-bottom: 6px;
}

.product-card .product-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff9900;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

/* Product Price */
.product-card .product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d35400;
    margin-top: 14px;
    margin-bottom: 12px;
    background: rgba(255, 153, 0, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
}

/* Add to Cart Button */
.product-card .add-to-cart-btn {
    background-color: #d35400;
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s;
}

.product-card .add-to-cart-btn:hover {
    background-color: #e68a00;
}

/* Image Hover Effect */
.product-card img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card img:hover {
    transform: scale(1.1);
}

/* Zoomed-in Image Overlay */
.zoomed-in {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: zoom-out;
}

.zoomed-in-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .product-section {
        grid-template-columns: repeat(2, minmax(250px, 1fr)); /* 2 columns for tablets */
        gap: 10px;
        padding: 10px;
    }

    .product-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .product-card .product-image {
        height: 250px; /* Adjust image height for mobile screens */
    }

    .product-card .product-title {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    /* Adjust "See More" button */
    .see-more-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* For Small Phones */
@media (max-width: 480px) {
    .product-section {
        grid-template-columns: 1fr; /* Single column layout for small phones */
        gap: 10px;
    }

    .product-card {
        width: 100%;
        margin: 10px 0;
    }

    .product-card .product-image {
        height: 220px; /* Reduce image height for small screens */
    }

    .product-card .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }
}



 















































 /* .top-selling-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    
    background: #FAFAFA;
}

.top-selling-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.top-selling-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}



.top-selling-card {
    background-color: white;
    width: 300px;  
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12); 
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}




.top-selling-card .product-image {
    width: 100%;
    height: 320px;  
    overflow: hidden; 
    position: relative; 
}

.top-selling-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 8px;
    transition: transform 0.3s ease;  
    cursor: pointer;  
}


.top-selling-card .product-image img:hover {
    transform: scale(1.2);  
}



.top-selling-card .product-info {
    padding: 18px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #f0f0f0; 
    flex-grow: 1; 
}


.top-selling-card .product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-top: 15px;
    margin-bottom: 8px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 6px;
}


.top-selling-card .product-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff9900;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}


.top-selling-card .product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d35400;
    margin-top: 14px;
    margin-bottom: 12px;
    background: rgba(255, 153, 0, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
}


.top-selling-card .add-to-cart-btn {
   background-color: #ff9900;
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s;
}

.top-selling-card .add-to-cart-btn:hover {
    background-color: #e68a00;
}




.top-selling-card .product-image img:hover {
    transform: scale(1.2);  
}


.zoomed-in {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);  
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;  
    cursor: zoom-out; 
}


.zoomed-in-image {
    max-width: 100%;  
    max-height: 100%; 
    object-fit: contain;  
}

@media (max-width: 768px) {
    .top-selling-list {
        display: flex;
        flex-direction: column; 
        align-items: center;
        gap: 20px; 
    }

    .top-selling-card {
        width: 100%; 
        max-width: 320px; 
        margin: 0 auto; 
        box-shadow: none; 
    }

    .top-selling-card .product-image {
        height: 250px; 
    }

    
    .top-selling-card .product-image img {
        width: 100%; 
        height: auto; 
        object-fit: cover; 
    }
}






 */




















 

 





/* New Items Section */
/* .new-items-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px;
}

.new-items-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.new-items-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
} */

/* Popular Items Section */
/* .popular-items-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px;
}

.popular-items-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.popular-items-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
} */









































 .see-more-btn {
    background-color: #d35400;
    color: #fff;
    padding: 8px 15px; 
    border: none;
    border-radius: 6px;
    font-size: 0.9rem; 
    font-weight: 600;
    cursor: pointer;
    
    display: inline-block;        
    margin: 20px auto 10px; 
    
    transition: background 0.25s, transform 0.2s;
    text-align: center;
}

.see-more-btn:hover {
    background-color: #e68a00;
    transform: translateY(-1px); 
}

/* Wrapper ensures alignment stays perfect */
 .product-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    padding: 20px;
}
 











































/* .top-selling-list,
.new-items-list,
.popular-items-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(350px, 1fr));  
    gap: 50px;           
    width: 100%;
    padding: 30px;
    justify-items: center;  
} */















/* 

.top-selling-card .product-title,
.new-items-card .product-title,
.popular-items-card .product-title,
.product-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-subtitle {
    text-align: center;
    color: #777;
    margin-top: 5px;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-weight {
    text-align: center;
    margin-top: 5px;
    font-size: 1.05rem;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-selling-card,
.new-items-card,
.popular-items-card,
.product-card {
    width: 100%;
    max-width: 420px;    
    border-radius: 12px;
    overflow: hidden;
} */








































































/* ---------------- PRODUCT DETAILS PAGE ---------------- */

/* ---------------- PRODUCT DETAILS PAGE (3 COLUMN PREMIUM) ---------------- */
/* ---------------- PRODUCT DETAILS PAGE (3 COLUMN PREMIUM) ---------------- */

/* ---------------- PRODUCT DETAILS PAGE (EQUAL HEIGHT) ---------------- */

.details-container{
  width: 92%;
  max-width: 1200px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* equal width */
  gap: 28px;
  align-items: stretch;            /* ✅ same height */
}

/* shared card style */
.details-card{
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 35px rgba(0,0,0,0.10);
  overflow: hidden;
  height: 100%;                    /* ✅ fill same height */
}

/* LEFT image fills card */
.details-left{
  display: flex;
}

.details-left img{
  width: 100%;
  height: 100%;                    /* ✅ same height as right */
  object-fit: cover;
  display: block;
}

/* RIGHT content */
.details-right{
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.details-right h2{
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 6px;
  color: #111;
}

.details-right h3{
  font-size: 16px;
  font-weight: 700;
  color: #777;
  margin: 0 0 14px;
}

.meta-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 14px;
}

.meta-grid p{
  margin: 0;
  font-size: 16px;
  color: #333;
}

.price span{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,153,0,0.12);
  border: 1px solid rgba(255,153,0,0.22);
  color: #b45309;
  font-weight: 900;
}

/* buy row */
.buy-row{
  display: flex;
  gap: 14px;
  align-items: flex-end;
  margin-bottom: 18px;
}

#details-qty{
  width: 120px;
  padding: 10px 12px;
  font-size: 16px;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  outline: none;
}

.add-to-cart-btn{
  flex: 1;
  border: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #d35400, #ff6a00);
  box-shadow: 0 12px 25px rgba(255,122,0,0.25);
}

/* description */
.details-right h4{
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.details-description-box{
  padding: 16px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.07);
  margin-top: 6px;
}

.details-description-box h5{
  margin: 14px 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.details-description-box p{
  margin: 0;
  line-height: 1.7;
}

.details-description-box ul{
  margin: 8px 0 0;
  padding-left: 18px;
}

.details-description-box li{
  margin-bottom: 6px;
}

/* responsive */
@media (max-width: 1000px){
  .details-container{
    grid-template-columns: 1fr;
  }
  .details-left img{
    height: 420px;   /* fixed height on mobile */
  }
  .meta-grid{
    grid-template-columns: 1fr;
  }
  .buy-row{
    flex-direction: column;
    align-items: stretch;
  }
}































.about-section{
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px 40px;
}

.about-hero{
  background: #fff6f2;      /* audience-loved warm cream */
  border: 1px solid #f1d6d8;
  padding: 24px;
  border-radius: 14px;
}

.about-hero h2{
  color: #982026;           /* brand dark red */
  margin-bottom: 10px;
}

.about-hero p{
  color: #444;
  line-height: 1.7;
}

.about-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 20px;
  margin-top: 20px;
}

.about-card,
.notice-card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.about-card h3,
.notice-card h3{
  color: #982026;
  margin-bottom: 10px;
}

.tick-list{
  margin-top: 10px;
  padding-left: 18px;
  line-height: 1.8;
}

.notice-item{
  border-left: 4px solid #982026;
  padding-left: 12px;
  margin: 14px 0;
}

.notice-date{
  display: inline-block;
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

.notice-btn{
  display: inline-block;
  margin-top: 10px;
  background: #982026;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.notice-btn:hover{
  background: #D91B23;
}

.media-section{
  margin-top: 26px;
}

.media-section h3{
  color: #982026;
  margin-bottom: 12px;
}

.media-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.media-card h4{
  margin-bottom: 8px;
  color: #333;
}

.media-card p{
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.media-link{
  color: #982026;
  font-weight: 700;
  text-decoration: none;
}

.media-link:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px){
  .about-grid{
    grid-template-columns: 1fr;
  }
  .media-grid{
    grid-template-columns: 1fr;
  }
}















/* ===== SATEJ HERO START ===== */
.satej-hero-wrap{
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #f5f5f5;
}

.satej-hero-slider{
  position: relative;
  width: 100%;
  height: 100%;
}

.satej-hero-item{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.satej-hero-item.is-active{
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.satej-hero-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
/* overlay content */
.satej-hero-content{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: min(90%, 900px);
  text-align: center;
  color: #fff;
  padding: 20px;
}

.satej-hero-content h1{
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.satej-hero-content p{
  margin: 0 0 18px;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.satej-hero-btn{
  display: inline-block;
  padding: 12px 22px;
  background: #ffffff;
  color: #111;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
}

.satej-hero-btn:hover{
  transform: translateY(-2px);
}

/* arrows */
.satej-hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.38);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.satej-hero-prev{
  left: 16px;
}

.satej-hero-next{
  right: 16px;
}

/* dots */
.satej-hero-dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.satej-hero-dot{
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
}

.satej-hero-dot.is-active{
  background: #fff;
}

/* mobile */
@media (max-width: 768px){
  .satej-hero-wrap{
    height: 260px;
  }

  .satej-hero-content{
    width: 92%;
    padding: 14px;
  }

  .satej-hero-arrow{
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .satej-hero-prev{
    left: 10px;
  }

  .satej-hero-next{
    right: 10px;
  }
}
/* ===== SATEJ HERO END ===== */






/* =========================
   PERFECT HERO IMAGE SLIDER
   ========================= */

.hero-slider{
  position: relative;
  width: 100%;
  height: clamp(340px, 52vw, 620px); /* auto responsive height */
  overflow: hidden;
  background: #0d0d0d;
  border-radius: 0;
  
}

/* smooth edge on very large screens */
.hero-slider::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.06), rgba(0,0,0,0.18));
  pointer-events:none;
  z-index: 2;
}

/* each slide */
.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.02);
  transition: opacity 1.1s ease-in-out, transform 6s ease;

  will-change: opacity, transform;
}

/* active slide */
.hero-slide.active{
  opacity: 1;
  transform: scale(1);
}

/* Optional: nicer feel on high-res screens */
@media (min-width: 1200px){
  .hero-slider{
    height: 620px;
  }
}

/* Mobile optimize */
@media (max-width: 768px){
  .hero-slider{
    height: 380px;
  }
  .hero-slide{
    transform: scale(1.12);
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce){
  .hero-slide{
    transition: none;
    transform: none;
  }
  .hero-slide.active{
    transform: none;
  }
}































/* =========================
   PREMIUM LEADERSHIP SECTION
   ========================= */

.leadership-section{
  max-width: 1150px;
  margin: 70px auto;
  padding: 0 20px;
}

.leadership-head{
  text-align:center;
  margin-bottom: 26px;
}

.section-title{
  font-size: 2.1rem;
  font-weight: 900;
  color: #982026;
  margin-bottom: 8px;
}

.section-subtitle{
  color:#555;
  line-height:1.7;
  max-width: 780px;
  margin: 0 auto;
}

.leadership-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD */
.leader-card{
  background:#fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
  transition: 
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s ease;
}

/* top accent bar */
.leader-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background: linear-gradient(90deg, #982026, #D91B23);
  transform: scaleX(.25);
  transform-origin:left;
  transition: transform .45s ease;
}

/* HOVER EFFECT */
.leader-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(152,32,38,.28);
}

.leader-card:hover::before{
  transform: scaleX(1);
}

/* TOP */
.leader-top{
  display:flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.leader-profile{
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(152,32,38,.18);
  transition: transform .45s ease, box-shadow .45s ease;
}

.leader-card:hover .leader-profile{
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(152,32,38,.35);
}

.leader-profile img{
  width:100%;
  height:100%;
  object-fit: cover;
}

/* META */
.leader-badge{
  display:inline-block;
  background: rgba(152,32,38,.12);
  color:#982026;
  font-weight: 900;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.leader-name{
  font-size: 1.2rem;
  font-weight: 900;
  margin: 2px 0 4px;
}

.leader-role{
  font-size: 13px;
  color:#666;
  font-weight: 700;
}

/* QUOTE */
.leader-quote{
  margin-top: 12px;
  padding: 16px;
  background: linear-gradient(180deg,#fff,#fff6f2);
  border-left: 4px solid rgba(152,32,38,.3);
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.85;
  color:#333;
  transition: background .4s ease;
}

.leader-card:hover .leader-quote{
  background: linear-gradient(180deg,#fff,#ffecec);
}

/* AWARDS */
.award-wrap{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.award-badge{
  background: linear-gradient(135deg, #982026, #D91B23);
  color:#fff;
  padding: 9px 14px;
  border-radius: 14px;
  min-width: 150px;
  text-align:center;
  box-shadow: 0 10px 22px rgba(152,32,38,.35);
  transition: transform .4s ease;
}

.leader-card:hover .award-badge{
  transform: translateY(-4px);
}

.award-year{
  font-size: 18px;
  font-weight: 900;
}

.award-title{
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 980px){
  .leadership-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .leader-top{
    align-items:flex-start;
  }
}




























/* =========================
   CONTACT PAGE – INFO ONLY
   ========================= */

.contact-section{
  max-width: 1150px;
  margin: 50px auto;
  padding: 0 20px;
}

.contact-head{
  text-align: center;
  margin-bottom: 26px;
}

.contact-head h2{
  font-size: 2.1rem;
  font-weight: 900;
  color: #982026;
  margin-bottom: 8px;
}

.contact-head p{
  color: #555;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
}

/* Grid */
.contact-info-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Cards */
.info-card{
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.info-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(152,32,38,.18);
}

.info-card h3{
  color: #982026;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 900;
}

.info-card p{
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

.info-card a{
  color: #982026;
  font-weight: 800;
  text-decoration: none;
}

.info-card a:hover{
  text-decoration: underline;
}

/* Action buttons */
.info-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.info-btn{
  background: rgba(152,32,38,.10);
  color: #982026;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(152,32,38,.18);
  transition: transform .25s ease, background .25s ease;
}

.info-btn:hover{
  background: rgba(152,32,38,.18);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Certification */
.cert-badge{
  margin-top: 12px;
  display: inline-block;
  background: #03904D;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}

/* Map */
.map-wrap{
  margin-top: 24px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.map-wrap iframe{
  width: 100%;
  height: 360px;
  border: 0;
}

/* Responsive */
@media (max-width: 980px){
  .contact-info-grid{
    grid-template-columns: 1fr;
  }
}





























/* ---------------- FOOTER ---------------- */
.footer {
  background: #982026;
  color: #eee;
  padding: 50px 20px;
  font-size: 14px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left Section */
.footer-left {
  flex: 1 1 280px;
  line-height: 1.6;
}

.footer-left h3 {
  margin-bottom: 8px;
  color: #ff9900;
  font-size: 1.6rem;
}

.footer-left a {
  color: #fff;
  text-decoration: underline;
}

.footer-left p,
.footer-left address {
  margin: 4px 0 15px;
}

/* Right Section */
.footer-right {
  flex: 0 1 220px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.social-links li {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.social-links li:hover {
  transform: scale(1.08);
  background-color: #ddd;
}

.social-links img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Copyright */
.footer-right .copyright {
  font-size: 14px;
  color: #bbb;
  font-weight: 600;
  margin-top: auto;
  white-space: nowrap;
}























































/* ============================================================
   SATEJ — CERTIFICATIONS & AWARDS (FULL CSS)
   For the exact HTML you shared
   Paste at the BOTTOM of styles.css
============================================================ */

/* ---------- Design tokens ---------- */
:root{
  --satej-green: #0b3b22;
  --satej-green-2: #0a2f1c;
  --gold: #f5b301;

  --ink: #0f172a;
  --muted: rgba(15, 23, 42, .72);

  --bg: #ffffff;
  --bg-soft: #f6fbf8;

  --card: #ffffff;
  --stroke: rgba(2, 6, 23, .10);

  --shadow: 0 18px 55px rgba(2, 6, 23, .12);
  --shadow-hover: 0 30px 80px rgba(2, 6, 23, .18);

  --r-xl: 24px;
  --r-lg: 20px;
  --r-md: 16px;

  --max: 1180px;
}

/* ---------- HERO ---------- */
.page-hero{
  position: relative;
  overflow: hidden;
  padding: 90px 18px 60px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(24, 178, 107, .32), transparent 60%),
    radial-gradient(850px 520px at 85% 0%, rgba(245, 179, 1, .18), transparent 60%),
    linear-gradient(180deg, var(--satej-green-2) 0%, #062012 60%, #061a10 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.03) 0px,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity: .35;
  pointer-events:none;
}

.page-hero h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-hero p{
  margin: 0 auto;
  max-width: 860px;
  font-size: 16px;
  line-height: 1.85;
  opacity: .92;
}

/* ---------- SECTION HEAD (Reusable) ---------- */
.section-head{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.section-title{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-subtitle{
  margin: 0 auto;
  max-width: 900px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

/* ---------- INTRO CARDS ---------- */
.certification-section{
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 18px 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cert-card{
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfffd 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  padding: 20px 18px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}

.cert-card::after{
  /* subtle premium highlight */
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: radial-gradient(circle, rgba(245,179,1,.18), transparent 55%);
  transform: rotate(15deg);
  opacity: .0;
  transition: opacity .25s ease;
  pointer-events:none;
}

.cert-card:hover{
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(24,178,107,.28);
}

.cert-card:hover::after{ opacity: .65; }

.cert-card h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--satej-green);
}

.cert-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(15,23,42,.78);
}

.cert-card ul{
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(15,23,42,.78);
}

.cert-card strong{
  color: var(--satej-green);
}

/* ---------- BADGES SECTION ---------- */
.cert-badges{
  padding: 58px 0 22px;
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(24,178,107,.18), transparent 60%),
    radial-gradient(900px 520px at 92% 15%, rgba(245,179,1,.13), transparent 60%),
    linear-gradient(180deg, #071f14 0%, #061a12 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cert-badges .section-title{
  color: rgba(255,255,255,.94);
}

.cert-badges .section-subtitle{
  color: rgba(255,255,255,.72);
}

.badge-row{
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.badge-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.badge-item::before{
  content:"";
  position:absolute;
  top:-80%;
  left:-60%;
  width: 60%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity .25s ease, left .55s ease;
  pointer-events:none;
}

.badge-item:hover{
  transform: translateY(-7px);
  border-color: rgba(245,179,1,.35);
  box-shadow: 0 26px 80px rgba(0,0,0,.35);
}

.badge-item:hover::before{
  opacity: 1;
  left: 115%;
}

.badge-item img{
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.40));
}

.badge-item p{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.95);
}

/* ---------- GALLERIES ---------- */
.cert-gallery{
  padding: 56px 0;
  background: var(--bg);
}

.award-gallery{
  padding: 56px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
}

/* Grid */
.gallery-grid{
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Card */
.gallery-item{
  position: relative;
  display: block;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: 0 18px 55px rgba(2,6,23,.10);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Shine */
.gallery-item::before{
  content:"";
  position:absolute;
  top:-80%;
  left:-60%;
  width: 60%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity .25s ease, left .55s ease;
  pointer-events:none;
}

/* Image frame (consistent height) */
.gallery-media{
  width: 100%;
  height: 270px;
  background: #f3f4f6;
  overflow: hidden;
}

.gallery-media img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* consistent visual */
  display: block;
  transform: scale(1);
  transition: transform .65s ease;
}

/* Text area */
.gallery-meta{
  padding: 14px 16px 16px;
}

.gallery-title{
  display: block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}

.gallery-sub{
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: rgba(15,23,42,.70);
  line-height: 1.35;
}

/* Hover */
.gallery-item:hover{
  transform: translateY(-9px);
  border-color: rgba(24,178,107,.30);
  box-shadow: 0 34px 95px rgba(2,6,23,.18);
}

.gallery-item:hover::before{
  opacity: 1;
  left: 115%;
}

.gallery-item:hover .gallery-media img{
  transform: scale(1.09);
}

/* Keyboard focus (accessibility) */
.gallery-item:focus-visible{
  outline: 3px solid rgba(245,179,1,.45);
  outline-offset: 4px;
}

/* ---------- MODAL ---------- */
.img-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.img-modal.open{
  display: block;
}

.img-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,.82);
  backdrop-filter: blur(10px);
}

.img-modal-dialog{
  position: relative;
  width: min(980px, 92vw);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 36px 110px rgba(0,0,0,.60);
  animation: satejModalIn .18s ease;
}

@keyframes satejModalIn{
  from{transform: translateY(-50%) scale(.98); opacity:.2}
  to{transform: translateY(-50%) scale(1); opacity:1}
}

.img-modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(2,6,23,.62);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  z-index: 2;
  transition: transform .2s ease, background .2s ease;
}

.img-modal-close:hover{
  transform: translateY(-2px);
  background: rgba(2,6,23,.78);
}

.img-modal-image{
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #0b1220;
  display: block;
}

.img-modal-caption{
  margin: 0;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(2,6,23,.10);
  color: var(--ink);
  font-weight: 900;
  font-size: 14px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1020px){
  .certification-section{
    grid-template-columns: 1fr;
  }
  .badge-row{
    grid-template-columns: 1fr;
  }
  .gallery-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-media{
    height: 245px;
  }
}

@media (max-width: 560px){
  .page-hero{
    padding: 70px 14px 46px;
  }
  .gallery-grid{
    grid-template-columns: 1fr;
  }
  .gallery-media{
    height: 225px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce){
  .cert-card,
  .badge-item,
  .gallery-item,
  .gallery-media img,
  .img-modal-dialog,
  .img-modal-close{
    transition: none !important;
    animation: none !important;
  }
}
























































/* ============================================================
   SATEJ — OUR PROCESS (Premium CSS)
   For: .page-hero + .process-section + .process-card
   Paste at the BOTTOM of styles.css
============================================================ */

/* Tokens (safe defaults; won’t break other pages) */
:root{
  --satej-green: #0b3b22;
  --satej-green-2: #062a18;
  --gold: #f5b301;

  --ink: #0f172a;
  --muted: rgba(15,23,42,.72);

  --stroke: rgba(2,6,23,.10);
  --shadow: 0 18px 55px rgba(2,6,23,.12);
  --shadow-hover: 0 32px 95px rgba(2,6,23,.18);

  --r-xl: 24px;
  --r-lg: 20px;

  --max: 1180px;
}

/* ---------- HERO (Process) ---------- */
.page-hero{
  position: relative;
  overflow: hidden;
  padding: 92px 18px 62px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(24,178,107,.28), transparent 60%),
    radial-gradient(850px 520px at 85% 0%, rgba(245,179,1,.18), transparent 60%),
    linear-gradient(180deg, var(--satej-green-2) 0%, #061f13 58%, #05180f 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.page-hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.03) 0px,
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity: .35;
  pointer-events:none;
}

.page-hero h1{
  margin: 0 0 12px;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-hero p{
  margin: 0 auto;
  max-width: 920px;
  font-size: 16px;
  line-height: 1.9;
  opacity: .92;
}

/* ---------- Process Grid ---------- */
.process-section{
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 18px 68px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* ---------- Process Card ---------- */
.process-card{
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfffd 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Premium accent highlight */
.process-card::before{
  content:"";
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(24,178,107,.95), rgba(245,179,1,.90));
  opacity: .9;
}

/* Soft glow */
.process-card::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: radial-gradient(circle, rgba(245,179,1,.14), transparent 58%);
  transform: rotate(15deg);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events:none;
}

.process-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(24,178,107,.30);
}

.process-card:hover::after{
  opacity: .8;
}

.process-card h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--satej-green);
}

.process-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(15,23,42,.78);
}

/* Optional: if you later add icons in card */
.process-card .icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(11,59,34,.08);
  border: 1px solid rgba(11,59,34,.12);
  margin-bottom: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px){
  .process-section{
    grid-template-columns: 1fr;
    padding: 44px 16px 60px;
  }
}

@media (max-width: 560px){
  .page-hero{
    padding: 70px 14px 46px;
  }
  .process-card{
    padding: 20px 16px;
    border-radius: 20px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  .process-card{
    transition: none !important;
  }
}






























































/* ================= WORLD-CLASS ABOUT SATEJ CSS ================= */
.about-satej {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: linear-gradient(160deg, #fdf6f0, #fff);
}

/* -------------------- HEADINGS -------------------- */
.about-satej h2 {
  font-size: 3rem;
  text-align: center;
  font-weight: 800;
  color: #1a1a1a;
  position: relative;
  margin-bottom: 15px;
}
.about-satej h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #ff6b00, #ff8c33);
}

.about-satej h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
  color: #1f1f1f;
}

.about-satej h4 {
  font-size: 1.3rem;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #555;
}

.about-satej p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
  font-size: 1rem;
}

/* -------------------- HERO BUTTON -------------------- */
.about-intro {
  text-align: center;
  margin-bottom: 50px;
}

.see-more-btn {
  background: linear-gradient(45deg, #981E26, #ff8c33);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 16px 50px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255,107,0,0.3);
}
.see-more-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(45deg, #ff8c33, #981E26);
  box-shadow: 0 15px 30px rgba(255,107,0,0.4);
}

/* -------------------- TABS NAV -------------------- */
.about-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  position: relative;
}

.tab-btn {
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.tab-btn:hover {
  background-color: #981E26;
  color: #fff;
  transform: translateY(-2px);
}
.tab-btn.active {
  background: linear-gradient(45deg, #981E26, #ff8c33);
  color: #fff;
  border-color: #ff6b00;
  box-shadow: 0 6px 20px rgba(255,107,0,0.3);
}

/* -------------------- TAB CONTENT -------------------- */
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  margin-bottom: 80px;
}
.tab-content.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* -------------------- COMPANY IMAGE -------------------- */
.company-image img {
  width: 100%;
  border-radius: 16px;
  margin: 30px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.company-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* -------------------- STATS COUNTERS -------------------- */
.stats-counters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}
.stats-counters .stat {
  text-align: center;
  margin: 20px;
  transition: all 0.3s ease;
}
.stats-counters .stat:hover {
  transform: translateY(-8px);
}
.stats-counters .stat .count {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b00;
  display: block;
  margin-bottom: 5px;
}

/* -------------------- CORE VALUES -------------------- */
.values-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}
.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  width: 260px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
}
.value-card::before {
  content: '';
  width: 60px;
  height: 6px;
  background: linear-gradient(90deg, #ff6b00, #ff8c33);
  display: block;
  margin: 0 auto 15px;
  border-radius: 3px;
}
.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}
.value-card h4 {
  margin-bottom: 12px;
  color: #ff6b00;
  font-weight: 600;
}

/* -------------------- MILESTONES TIMELINE -------------------- */
.timeline {
  position: relative;
  margin: 50px 0;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff6b00, #ff8c33);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 35px;
  padding-left: 50px;
  transition: transform 0.3s ease;
}
.timeline-item span {
  position: absolute;
  left: -10px;
  top: 0;
  width: 18px;
  height: 18px;
  background: #ff6b00;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.timeline-item:hover {
  transform: translateX(6px);
}

/* -------------------- PRODUCT PORTFOLIO -------------------- */
/* -------------------- PRODUCT PORTFOLIO CARDS (Core Values Style) -------------------- */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  width: 260px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
}

/* Gradient accent line on top (like Core Values) */
.product-card::before {
  content: '';
  width: 60px;
  height: 6px;
  background: linear-gradient(90deg, #ff6b00, #ff8c33);
  display: block;
  margin: 0 auto 15px;
  border-radius: 3px;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Product Name / Title */
.product-card strong {
  display: block;
  font-size: 1.15rem;
  color: #ff6b00;
  margin-bottom: 8px;
}

/* Product Description */
.product-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}








/* -------------------- MANAGEMENT TEAM -------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 40px;
}
.team-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid #ff6b00;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255,107,0,0.3);
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 992px) {
  .stats-counters { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
  .about-tabs { flex-direction: column; align-items: center; }
  .tab-btn { width: 95%; text-align: center; }
  .values-cards, .product-grid, .team-grid { justify-content: center; }
  .timeline { padding-left: 25px; }
}

@media (max-width: 480px) {
  .about-satej h2 { font-size: 2rem; }
  .about-satej h3 { font-size: 1.6rem; }
  .see-more-btn { width: 100%; padding: 14px 0; }
  .value-card, .product-card, .team-card { width: 90%; }
}








































/* =========================================================
   PREMIUM CSS for .process-flow section (READABLE + CLEAN)
   Works with your exact HTML
   Paste at END of styles.css
   ========================================================= */

/* Section container */
.process-flow{
  width: min(1160px, calc(100% - 40px));
  margin: clamp(22px, 4vw, 64px) auto;
  position: relative;
}

/* Soft background glow (very subtle, doesn't ruin site bg) */
.process-flow::before{
  content:"";
  position:absolute;
  inset: -16px;
  border-radius: 24px;
  background:
    radial-gradient(520px 220px at 15% 0%, rgba(14,165,164,.10), transparent 60%),
    radial-gradient(520px 220px at 85% 0%, rgba(34,197,94,.10), transparent 60%),
    linear-gradient(180deg, rgba(2,6,23,.02), rgba(2,6,23,0));
  z-index: -1;
}

/* Head */
.process-flow .section-head{
  margin-bottom: clamp(14px, 2vw, 24px);
}

.process-flow .section-title{
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0f172a;
}

.process-flow .section-subtitle{
  margin: 0;
  max-width: 76ch;
  color: #475569;
  font-size: clamp(14px, 1.2vw, 16px);
}

/* Gradient underline */
.process-flow .section-title::after{
  content:"";
  display:block;
  width: 92px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5a4, #22c55e);
  opacity: .95;
}

/* Timeline wrapper */
.process-flow .timeline{
  display: grid;
  gap: 14px;
  position: relative;
  padding-left: 18px;
  margin-top: 8px;
}

/* Vertical line */
.process-flow .timeline::before{
  content:"";
  position:absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(14,165,164,.55), rgba(34,197,94,.55));
}

/* Timeline item card */
.process-flow .t-item{
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(2, 6, 23, .06);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Top accent strip */
.process-flow .t-item::before{
  content:"";
  position:absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5a4, #22c55e);
  opacity: .9;
}

/* Timeline node */
.process-flow .t-item::after{
  content:"";
  position:absolute;
  left: -18px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5a4, #22c55e);
  box-shadow: 0 0 0 8px rgba(14,165,164,.10);
}

/* Hover */
.process-flow .t-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(2, 6, 23, .10);
  border-color: rgba(14,165,164,.25);
}

/* Step pill */
.process-flow .t-year{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(14,165,164,.06);
  width: fit-content;
}

/* Text */
.process-flow .t-item p{
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

/* Make the bold part stand out a bit */
.process-flow .t-item p strong{
  color: #0f172a;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 640px){
  .process-flow .timeline{ padding-left: 16px; }
  .process-flow .t-item{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .process-flow .t-year{ justify-self: start; }
}

/* Accessibility */
.process-flow :focus-visible{
  outline: 3px solid rgba(14,165,164,.35);
  outline-offset: 3px;
  border-radius: 12px;
}















































/* =========================================================
   ULTRA PREMIUM: Media & Public Engagement (Best Version)
   - Clean light design
   - Readable on any background
   - Looks like a top brand site
   ========================================================= */

.media-engagement{
  width: min(1180px, calc(100% - 40px));
  margin: clamp(26px, 4vw, 70px) auto;
}

.media-engagement .section-head{
  margin-bottom: clamp(14px, 2vw, 24px);
}

.media-engagement .section-title{
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0f172a;
}

.media-engagement .section-subtitle{
  margin: 0;
  max-width: 78ch;
  color: #475569;
  font-size: clamp(14px, 1.2vw, 16px);
}

.media-engagement .section-title::after{
  content:"";
  display:block;
  width: 92px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5a4, #22c55e);
}

/* --- Grid --- */
.media-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
}

/* --- Panel / Card --- */
.media-panel{
  grid-column: span 6;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(2, 6, 23, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.media-panel:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(2, 6, 23, .12);
  border-color: rgba(14,165,164,.25);
}

/* --- Trade fair hero image --- */
.media-hero{
  position: relative;
  height: 220px;
  overflow: hidden;
}

.media-hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .45s ease;
}

.media-panel:hover .media-hero img{
  transform: scale(1.08);
}

/* readability overlay */
.media-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(2,6,23,0) 0%,
    rgba(2,6,23,.30) 45%,
    rgba(2,6,23,.70) 100%
  );
}

.media-hero-overlay{
  position:absolute;
  inset: auto 16px 16px 16px;
  z-index: 1;
  color: #fff;
}

.media-hero-overlay h3{
  margin: 8px 0 4px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.media-hero-overlay p{
  margin: 0;
  opacity: .9;
  font-size: 14px;
}

/* --- Top area for media logos panel --- */
.media-top{
  padding: 18px 18px 10px;
}

.media-top h3{
  margin: 10px 0 6px;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.media-desc{
  margin: 0;
  color: #475569;
  font-size: 14px;
}

/* --- Chips --- */
.chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  color: #0f172a;
  background: rgba(14,165,164,.10);
  border: 1px solid rgba(14,165,164,.22);
}

.chip-alt{
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.22);
}

/* --- Logo wall (professional) --- */
.logo-wall{
  margin-top: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: center;
}

.logo-wall img{
  width: 100%;
  height: 42px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .92;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.media-panel:hover .logo-wall img{
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-1px);
}

/* --- List --- */
.media-list{
  margin: 0;
  padding: 16px 18px 18px;
  list-style: none;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.media-list li{
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
}

.media-list strong{
  display:block;
  color:#0f172a;
  font-size: 15px;
  line-height: 1.35;
}

.media-list small{
  display:block;
  color:#64748b;
  font-size: 13px;
  margin-top: 2px;
}

/* dot */
.media-list .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 4px;
  background: linear-gradient(90deg, #0ea5a4, #22c55e);
  box-shadow: 0 0 0 8px rgba(14,165,164,.10);
}

/* Responsive */
@media (max-width: 980px){
  .media-panel{ grid-column: span 12; }
  .logo-wall{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px){
  .media-hero{ height: 200px; }
  .logo-wall{ grid-template-columns: 1fr; }
  .logo-wall img{ height: 46px; }
}





















/* Cart Section */
.cart-section {
    padding: 40px 20px;
    text-align: center;
}

.cart-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Cart Item List */
#cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.cart-item img {
    width: 120px; /* Increase image size */
    height: 120px; /* Ensure image maintains aspect ratio */
    object-fit: cover; /* Ensure the image looks good even when resized */
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; /* Smooth transition for hover effect */
}









/* Cart Section */
.cart-section {
    padding: 40px 20px;
    text-align: center;
}

.cart-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Cart Item List */
#cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0;
}

/* Individual Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Add shadow to cart items for better definition */
}

.cart-item img {
    width: 120px; /* Increase image size */
    height: 120px;
    object-fit: cover; /* Ensure image is well-cropped */
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; /* Smooth transition for hover effect */
}

/* Hover Effect: Zoom In */
.cart-item img:hover {
    transform: scale(1.2);
    opacity: 0.8;
    cursor: pointer; /* Indicate image can be clicked */
}

/* Modal for Full Image View */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark background */
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    margin: 10px auto;
    display: block;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Cart Item Information */
.cart-item-info {
    flex-grow: 1;
    padding: 0 20px;
    text-align: left;
}

.cart-item-info h3 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.cart-item-info p {
    margin: 5px 0;
    font-size: 1rem;
}

.cart-item-info .quantity-controls {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.cart-item-info .quantity-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 5px;
}

.cart-item-info .quantity-btn:hover {
    background-color: #555;
}

.cart-item-info .quantity-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.cart-item-info button {
    background-color: #e74c3c;
    color: white;
    padding: 10px 15px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.cart-item-info button:hover {
    background-color: #c0392b;
}

/* Cart Total */
.cart-total {
    font-size: 1.2rem;
    font-weight: bold;
}

.cart-total p {
    margin: 10px 0;
}

.cart-total #cart-total-price {
    color: #e74c3c;
    font-size: 1.5rem;
}

/* Checkout Button */
#checkout-btn {
    background-color: #FF0000;
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

#checkout-btn:hover {
    background-color: #03904D;
}

#checkout-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}



































/* Checkout Page Section */
.checkout-section {
    padding: 40px;
    background-color: white;
    margin: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.checkout-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 16px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
}

/* Order Summary Section */
#checkout-order-summary {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

#checkout-order-summary h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.checkout-total {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

/* Place Order Button */
#checkout-submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #FF0000;
    color: white;
    border: none;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
}

#checkout-submit-btn:hover {
    background-color: #03904D;
}





































/* Order Confirmation Section */
.order-confirmation-section {
    padding: 40px;
    background-color: white;
    margin: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.order-confirmation-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.order-details {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
}

.order-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.order-details p {
    font-size: 18px;
    margin-bottom: 10px;
}

.order-item {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.order-item p {
    font-size: 16px;
}

.order-total {
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
}

button {
    padding: 12px 20px;
    background-color: #FF0000;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #03904D;
}