* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo img {
    height: 45px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.cart {
    font-weight: bold;
}

/* Hero Section */

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:120px 80px;
min-height:90vh;
background: linear-gradient(90deg,#053abe,#055fb9);
color:white;
position:relative;
}
.home-title{
font-size:60px;
color:#faf5f5;
}


.hero-content {
max-width:600px;
}

.hero-content h1{
font-size:56px;
line-height:1.2;
margin-bottom:25px;
}

.hero-content p{
font-size:16px;
line-height:1.6;
margin-bottom:30px;
max-width:520px;
}

.btn {
    padding: 14px 28px;
    border: none;
    background: white;
    color: #0b3c91;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.btn:hover {
    background: #f1f1f1;
}

/* Image */
.hero-image img {
    height: 520px;
    z-index: 2;
}

/* White curve shape */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 200px;
    background: rgb(255, 255, 255);
    border-top-left-radius: 300px;
}

/* Our Services Section */
.services {
    padding: 80px 60px;
    background-color: #ffffff;
}

.services-header {
    max-width: 900px;
    margin: 0 auto 70px auto;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #222;
}

.services-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Content */
.services-content {
    display: flex;
    align-items: center;
    gap: 70px;
}

/* Image side */
.services-image {
    position: relative;
    flex: 1;
}

.services-image img {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

/* semi-circle background */
.services-image::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 12px solid #e3b48a;
    border-radius: 50%;
    top: -40px;
    left: 20px;
    z-index: 1;
}

/* Text side */
.services-text {
    flex: 1;
}

.services-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #222;
}

.services-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    max-width: 520px;
    margin-bottom: 30px;
}

.service-btn {
    padding: 14px 30px;
    background-color: #0b66c3;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.service-btn:hover {
    background-color: #094f98;
}

/* Scroll to top button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0b66c3;
    color: white;
    border: none;
    padding: 10px 14px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    display: none;
}

/* Extra Services Section */
.extra-services {
    padding: 80px 60px;
    background-color: #ffffff;
}

.extra-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 120px;
}

.extra-service-row.reverse {
    flex-direction: row-reverse;
}

.extra-text {
    flex: 1;
}

.extra-text h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #222;
}

.extra-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    max-width: 520px;
    margin-bottom: 30px;
}

.extra-image {
    flex: 1;
    text-align: center;
}

.extra-image img {
    max-width: 520px;
    width: 100%;
}

/* SHOP PAGE */

.breadcrumb {
    padding: 20px 60px;
    color: #555;
}

.shop-container {
    display: flex;
    padding: 20px 60px;
    gap: 60px;
}

.page {
    display: none;
}

.page.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 50px 0;
}

.page-btn, .arrow {
    padding: 10px 14px;
    border: none;
    background: #f2f2f2;
    cursor: pointer;
    border-radius: 6px;
}

.page-btn.active {
    background: #0b66c3;
    color: #fff;
}

/* ---------------- ABOUT PAGE ---------------- */

/* ABOUT TITLE */

.about-title{
padding:90px 0;
background:white;
text-align:center;
}

.about-title h1{
font-size:60px;
font-weight:bold;
letter-spacing:2px;
color:#222;
}

/* WHO SECTION */

.who-section{
padding:80px;
}

.who-container{
display:flex;
gap:50px;
align-items:center;
}

.who-image img{
width:500px;
border-radius:15px;
}

.who-text h2{
font-size:40px;
margin-bottom:20px;
}

.who-text p{
line-height:1.7;
margin-bottom:15px;
}

/* GOAL SECTION */

.goal-section{
background:#061826;
color:white;
padding:80px;
}

.goal-container{
display:flex;
align-items:center;
gap:50px;
}

.goal-text h2{
font-size:40px;
margin-bottom:20px;
}

.goal-image img{
width:500px;
border-radius:15px;
}

/* TEAM */

.team{
padding:80px;
text-align:center;
}

.team-title{
font-size:50px;
margin-bottom:10px;
color: #000;
}

/* TEAM SECTION */
.team {
    text-align: center;
    padding: 60px 20px;
}

.team h2 {
    font-size: 30px; 
    margin-bottom: 10px;
}

.team p {
    max-width: 750px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 17px;   
    line-height: 1.7;  
}

/* Container */
.team-container {
    display: flex;
    justify-content: center;
    gap: 70px; 
    flex-wrap: wrap;
}

/* Card */
.team-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 500px;  
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

/* Image */
.team-img {
    width: 320px;   
    height: 320px;  
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-card span {
    color: #777;
    font-size: 15px; 
}

/* CONTACT SECTION */
.contact-title{
padding:90px 0;
background:white;
text-align:center;
font-size:50px;
font-weight:bold;
letter-spacing:2px;
color:#0e0d0d;
}


.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


/* Cards */
.contact-card {
    background: #fff;
    width: 320px;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
}

/* Text */
.contact-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}

.contact-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Scroll Button */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0a2a43;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: none;
}

/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
}

/* ================= HEADER ================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo img {
    height: 45px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    margin-left: 20px;
}

/* ================= SHOP PAGE ================= */

.shop-container {
    display: flex;
    padding: 40px 60px;
    gap: 50px;
}

/* PRODUCTS GRID */
#product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* PRODUCT CARD */
.product-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.product-title {
    font-size: 18px;
    margin: 15px 0;
}

.product-price {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-price strong {
    color: #0b66c3;
}


/* ADD TO CART BUTTON */
.add-to-cart {
    background: #0b66c3;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
}

.add-to-cart:hover {
    background: #094f98;
}

/* SIDEBAR */
.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar a {
    cursor: pointer;
    color: #0b66c3;
}

.sidebar a.active {
    font-weight: bold;
}

/* SORT BAR */
.shop-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

#sort-select {
    padding: 8px;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination button {
    padding: 8px 12px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 5px;
}

.pagination .active {
    background: #0b66c3;
    color: white;
}


/* ---------------- CART PAGE ---------------- */


.cart-title{
font-size:60px;
font-weight:bold;
letter-spacing:2px;
color:#222;
}


.cart-container{
    display: flex;
    gap: 50px;
    padding: 0 60px 60px;
}


.cart-left{
    flex: 2;
}

.cart-header{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.cart-item{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.cart-info{
    display: flex;
    gap: 20px;
}

.cart-info img{
    width: 80px;
}

.qty-box{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.qty-box button{
    padding: 5px 10px;
    cursor: pointer;
}

.cart-price{
    text-align: right;
}

.cart-price button{
    margin-left: 10px;
    border: none;
    background: none;
    cursor: pointer;
}

/* RIGHT SIDE */
.cart-right{
    flex: 1;
}

.cart-box{
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px 0;
}

.cart-box p{
    display: flex;
    justify-content: space-between;
}

.cart-box h2{
    margin-top: 20px;
}

.checkout-btn{
    width: 100%;
    padding: 15px;
    background: #0b66c3;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.checkout-btn:hover{
    background: #094f98;
}
.delete-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: red;
    margin-left: 10px;
}
/* ================= ORDER SUCCESS ================= */

.success {
    text-align: center;
    margin-top: 100px;
}

.success h2 {
    color: green;
    margin-bottom: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    #product-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-container {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    #product-container {
        grid-template-columns: 1fr;
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

.checkout-title{
font-size:60px;
font-weight:bold;
letter-spacing:2px;
color:#222;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .logo {
    font-weight: bold;
    font-size: 1.2em;
}

header nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
}

header .cart {
    margin-left: 20px;
    font-size: 1.2em;
}

.checkout-container {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    gap: 30px;
}

.checkout-form, .order-summary {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.checkout-form input, .checkout-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.checkout-form button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: #0008ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.order-summary h2 {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-info img {
    width: 50px;
    height: 50px;
}

.item-count {
    background: #ff6600;
    color: #fff;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 0.8em;
}

.subtotal p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-weight: bold;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.order-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    text-align: center;
}

h1 {
    color: #27ae60;
}

.order-details {
    margin-top: 30px;
    text-align: left;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

th {
    background-color: #f1f1f1;
}

#grand-total {
    text-align: right;
    margin-top: 15px;
    color: #e74c3c;
}

#back-to-home {
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #3498db;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

#back-to-home:hover {
    background-color: #2980b9;
}