/* 
===================================
CSS Variables and Reset
===================================
*/
:root {
  /* Color palette */
  --primary-color: #f69222; /* Electric blue */
  --primary-light: #f69222;
  --primary-dark: #f4a1427d;
  --secondary-color: #1e3a5f; /* Dark blue-gray */
  --accent-color: #00c3ff; /* Bright cyan */
  --light-gray: #f5f7fa;
  --medium-gray: #e9ecef;
  --dark-gray: #666;
  --text-color: #1e3a5f;
  --text-light: #1e3a5f;
  --white: #fff;
  --black: #222;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;

  /* Typography */
  --heading-font: "Montserrat", sans-serif;
  --body-font: "Roboto", sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container widths */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  
}
html.loading{
    visibility: hidden;
}

html.ready{
    visibility: visible;
}
body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #b7b8b9;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--secondary-color);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

ul,
ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

img {
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font-family: var(--body-font);
}

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* 
===================================
Buttons & Form Elements
===================================
*/
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--black);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-text {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.btn-text:hover {
  color: var(--black);
}

.btn-text::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: var(--space-xs);
  font-size: 0.8em;
  transition: transform var(--transition-fast);
}

.btn-text:hover::after {
  transform: translateX(3px);
}

.form-group {
  margin-bottom: var(--space-lg);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--secondary-color);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-light);
}

/* 
===================================
Header & Navigation
===================================
*/
#header {
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-normal);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  width: 170px;
}
.logo a {
  display: flex;
  align-items: center;
  position: relative;
  top: 3px;
  color: var(--secondary-color);
}

.logo h1 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0;
}

.logo span {
  color: var(--primary-color);
}

#nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav li {
  margin-left: var(--space-lg);
}

#nav .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

#nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

#nav .nav-link:hover::after,
#nav .nav-link.active::after {
  width: 100%;
}
.lll {
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--secondary-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-toggle .fa-xmark {
  display: none;
}

/*===================================
Hero Section
===================================*/

.hero{
    background:url("../images/expand.png") center center / cover no-repeat;

    position:relative;

    display:flex;
    align-items:center;

    min-height:100vh;
    padding:120px 20px 70px;

    color:#fff;
    overflow:hidden;
}

.hero::before{

    content:"";
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

}

.hero .container{

    width:100%;
    display:flex;
    align-items:center;
    position:relative;
    z-index:2;

}

.hero-content{

    width:min(750px,100%);

    padding:clamp(20px,4vw,40px);

    border-radius:24px;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    animation:fadeUp .8s ease;

    box-sizing:border-box;

}

.hero-tag{

    display:inline-block;

    margin-bottom:20px;

    padding:8px 18px;

    border-radius:50px;

    background:#ff8c00;

    color:#fff;

    font-size:14px;

    letter-spacing:2px;

    font-weight:700;

}

.hero h1{

    font-size:clamp(2rem,5vw,3.5rem);

    line-height:1.2;

    font-weight:800;

    margin-bottom:25px;

    color:#fff;

}

.hero p{

    font-size:clamp(1rem,2vw,1.15rem);

    line-height:1.8;

    color:#f2f2f2;

    margin-bottom:35px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

}

.hero-buttons .btn{

    flex:1;

    min-width:180px;

    padding:15px 35px;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    text-align:center;

    transition:.35s;

}

.hero-buttons .btn-primary{

    background:#ff8c00;

    color:#fff;

}

.hero-buttons .btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(255,140,0,.45);

}

.hero-buttons .btn-secondary{

    background:transparent;

    border:2px solid #fff;

    color:#fff;

}

.hero-buttons .btn-secondary:hover{

    background:#fff;

    color:#0d2f63;

    transform:translateY(-5px);

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*===================================
Responsive
===================================*/

@media (max-width:768px){

    .hero{

        min-height:auto;

        padding:110px 20px 50px;

        align-items:flex-start;

    }

    .hero-content{

        width:100%;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .btn{

        width:100%;
        min-width:unset;

    }

}
/* 
===================================
Categories Section
===================================
*/
.categories {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
  
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.category-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.category-card .icon {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 100, 230, 0.1);
  border-radius: 50%;
}

.svg-icon {
  color: #000000;
  width: 70px;
  height: 70px;
  fill: var(--primary-color);
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.category-card p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

/*
===================================
About Section
===================================
*/

.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #d6d7d8 0%, #b7b8b9 100%);
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s ease;
}

.about-text:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 45px rgba(0,0,0,.12),
        0 0 35px rgba(255,122,0,.25);
}

.about-text h3 {
    font-size: 2rem;
    color: #0b2343;
    margin-bottom: 20px;
    position: relative;
}

.about-text h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #ff7a00;
    border-radius: 10px;
    margin-top: 10px;
}

.about-text p {
    font-size: 17px;
    line-height: 2;
    color: #555;
    text-align: justify;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.stat {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s ease;
}

.stat:hover {
    transform: translateY(-8px) scale(1.03);
    background: #ff7a00;
    box-shadow: 0 0 35px rgba(255,122,0,.45);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff7a00;
    transition: .35s;
}

.stat-text {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #0b2343;
    transition: .35s;
}

.stat:hover .stat-number,
.stat:hover .stat-text {
    color: #fff;
}

/* Responsive */

@media (max-width:768px){

    .about-content{
        grid-template-columns:1fr;
    }

    .about-stats{
        grid-template-columns:1fr 1fr;
    }

}

/* 
===================================
Why Choose Us Section
===================================
/*
===================================
Why Us
===================================
*/

.why-us{
    padding:100px 0;
    background:linear-gradient(180deg,#d5dbe1 0%,#b7b8b9 100%);
    overflow:hidden;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.feature-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    overflow:hidden;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s ease;
}

.feature-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#ff7a00;

    transform:scaleX(0);

    transition:.4s;
}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.15),
        0 0 35px rgba(255,122,0,.30);
}

.feature-card:hover::before{

    transform:scaleX(1);
}

.feature-card .icon{

    width:95px;
    height:95px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,122,0,.12);

    color:#ff7a00;

    font-size:40px;

    transition:.4s;
}

.feature-card:hover .icon{

    background:#ff7a00;

    color:#fff;

    transform:rotate(10deg) scale(1.1);

    box-shadow:0 0 30px rgba(255,122,0,.45);
}

.feature-card h3{

    font-size:1.5rem;

    color:#0b2343;

    margin-bottom:18px;
}

.feature-card p{

    color:#555;

    line-height:1.8;

    font-size:16px;
}

/* 
===================================
Portfolio & Product Section
===================================
*/
.portfolio{
    padding:90px 0;
    background-color: #b7b8b9;
    position:relative;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.portfolio:nth-child(even){
    background:#d0d0d1;
}
.portfolio::after{
    content:"";
    display:block;
    width:120px;
    height:4px;
    background:#d5dbe1;
    margin:70px auto 0;
    border-radius:50px;
}
/* Product Cards */
.product-card{

    width:100%;
    max-width:1050px;

    background:#fff;

    border-radius:20px;

    overflow:visible;

    padding:18px;

    border:1px solid #e5e7eb;

    box-shadow:
        0 8px 30px rgba(0,0,0,.05);

    transition: all .35s ease;
}
.product-card::before{
    content:"";
    position:absolute;
    inset:-15px;
    border-radius:25px;

    background:#ff7a00;

    filter:blur(35px);

    opacity:0;

    z-index:-1;

    transition:.35s;
}

.product-card:hover::before{
    opacity:.9;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-image {
  height: 220px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
  background-image: url("../../imag/img/1.jpg");
  background-size: cover;
  background-position: center;
}

.product-card:hover{

    transform:translateY(-6px);

    border-color: #ff7a00;
    box-shadow: 0 12px 35px rgb(255, 123, 0);
}

.product-image {
  height: 220px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
  background-image: url("../../imag/img/1.jpg");
  background-size: cover;
  background-position: center;
}


.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-details {
  padding: var(--space-lg);
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--dark);
  font-weight: 600;
}

.product-rating {
  color: #f8c51c;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
}

.product-rating span {
  color: var(--gray);
  font-size: 0.9rem;
  margin-left: var(--space-xs);
}

.product-description {
  color: var(--gray);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-features span {
  background-color: var(--light-gray);
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  font-size: 0.85rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-features i {
  color: var(--primary-color);
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
}

.regular-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--gray);
  margin-right: var(--space-sm);
}

/* Old Portfolio Styles (kept for compatibility) */
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--primary-color);
  color: var(--white);
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(
    to bottom,
    var(--primary-dark),
    var(--primary-color)
  );
}

.portfolio-content {
  padding: var(--space-lg);
  width: 100%;
}

.portfolio-item h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.portfolio-item p {
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags li {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: var(--space-xs);
  margin-bottom: var(--space-xs);
}


.product-column-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.product-column-center .product-card{
    width: 100%;
    max-width: 1000px;   /* أقصى عرض */
}

.product-column-center .product-card img{
    width: 100%;
    height: auto;
    display: block;
}

.product-grid-center .product-card:hover{
    transform: translateY(-8px);
}

.product-grid-center img{
    width: 100%;
    display: block;
}







/* 
===================================
Testimonials Section
===================================
*/
.testimonials {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 300px;
}

.testimonial-card {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card.active {
  opacity: 1;
  z-index: 1;
}

.quote {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: var(--space-lg);
  color: var(--text-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.1rem;
}

.author-info p {
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-lg);
}

.prev-btn,
.next-btn {
  background-color: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: var(--space-sm);
  transition: color var(--transition-fast);
}

.prev-btn:hover,
.next-btn:hover {
  color: var(--primary-dark);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-sm);
  margin: 0 var(--space-md);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.dot.active {
  background-color: var(--primary-color);
}

/*
===================================
Contact Section
===================================
*/

.contact{
    padding:100px 0;
    background:linear-gradient(180deg,#eef2f7 0%,#d5dbe1 100%);
    overflow:hidden;
}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;
}

.contact-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;
}

.contact-card{

    display:flex;

    align-items:flex-start;

    gap:20px;

    background:#fff;

    padding:25px;

    border-radius:18px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;
}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.12),
        0 0 30px rgba(255,122,0,.30);
}

.contact-card .icon{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,122,0,.12);

    border-radius:50%;

    transition:.35s;
}

.contact-card .icon i{

    color:#ff7a00;

    font-size:28px;

    transition:.35s;
}

.contact-card:hover .icon{

    background:#ff7a00;

    transform:rotate(10deg) scale(1.1);
}

.contact-card:hover .icon i{

    color:#fff;
}

.contact-card h3{

    color:#0b2343;

    font-size:22px;

    margin-bottom:8px;
}

.contact-card p{

    color:#666;

    line-height:1.8;

    margin:0;
}

.contact-form{

    background:#fff;

    padding:40px;

    border-radius:22px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;
}

.contact-form:hover{

    box-shadow:
        0 18px 45px rgba(0,0,0,.12),
        0 0 35px rgba(255,122,0,.25);
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #ddd;

    border-radius:12px;

    transition:.3s;

    margin-bottom:18px;
}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#ff7a00;

    box-shadow:0 0 15px rgba(255,122,0,.25);

    outline:none;
}

.contact-form button{

    background:#ff7a00;

    color:#fff;

    border:none;

    padding:15px 35px;

    border-radius:12px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;
}

.contact-form button:hover{

    background:#0b2343;

    transform:translateY(-3px);

    box-shadow:0 10px 30px rgba(11,35,67,.3);
}

@media(max-width:768px){

    .contact-wrapper{

        grid-template-columns:1fr;
    }

    .contact-info{

        grid-template-columns:1fr;
    }

}
/* 
===================================
Location Section
===================================
*/
.location {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.map-container {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/*
===================================
Footer
===================================
*/

.footer{
    position:relative;
    overflow:hidden;
    padding:100px 0 30px;
    color:#fff;

    background:
        radial-gradient(circle at top right,
        rgba(255,122,0,.12) 0%,
        transparent 30%),

        radial-gradient(circle at bottom left,
        rgba(255,122,0,.08) 0%,
        transparent 35%),

        linear-gradient(180deg,#0d1b2f 0%,#08111f 100%);
}

/* Orange Line */

.footer::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #ff7a00,
        #ffb347,
        #ff7a00
    );
}

/* Background Glow */

.footer::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    right:-180px;
    bottom:-180px;

    border-radius:50%;

    background:rgba(255,122,0,.08);

    filter:blur(120px);

    pointer-events:none;
}

.footer .container{

    position:relative;

    z-index:2;
}

/* ========================== */

.footer-content{

    display:grid;

    grid-template-columns:1fr 2fr;

    gap:50px;

    margin-bottom:60px;
}

/* ========================== */

.footer-logo{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    backdrop-filter:blur(12px);

    transition:.4s;
}

.footer-logo:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:
        0 0 40px rgba(255,122,0,.18);
}

.footer-logo img{

    width:220px;

    transition:.4s;
}

.footer-logo img:hover{

    transform:scale(1.05);
}

.footer-logo p{

    color:rgba(255,255,255,.78);

    margin-top:20px;

    line-height:1.9;
}

/* ========================== */

.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;
}

.social-links a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    color:#fff;

    font-size:18px;

    transition:.35s;
}

.social-links a:hover{

    background:#ff7a00;

    transform:
        translateY(-6px)
        rotate(8deg);

    box-shadow:
        0 0 25px rgba(255,122,0,.45);
}

/* ========================== */

.footer-links{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;
}

.footer-link-group{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:30px;

    backdrop-filter:blur(12px);

    transition:.4s;
}

.footer-link-group:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:
        0 0 35px rgba(255,122,0,.18);
}

/* ========================== */

.footer-link-group h3{

    color:#fff;

    font-size:22px;

    margin-bottom:22px;

    position:relative;

    display:inline-block;
}

.footer-link-group h3::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:70%;

    height:3px;

    border-radius:30px;

    background:#ff7a00;
}

/* ========================== */

.footer-link-group ul{

    list-style:none;

    margin:0;

    padding:0;
}

.footer-link-group li{

    margin-bottom:14px;
}

.footer-link-group a{

    display:inline-block;

    color:#c4ceda;

    transition:.35s;
}

.footer-link-group a::before{

    content:"›";

    color:#ff7a00;

    margin-right:8px;

    opacity:0;

    transition:.35s;
}

.footer-link-group a:hover{

    color:#fff;

    transform:translateX(10px);
}

.footer-link-group a:hover::before{

    opacity:1;
}

/* ========================== */

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom p{

    margin:0;

    color:#9aa7b7;
}

.footer-bottom-links{

    display:flex;

    gap:20px;
}

.footer-bottom-links a{

    color:#9aa7b7;

    transition:.35s;
}

.footer-bottom-links a:hover{

    color:#ff7a00;
}

/* ========================== */



@media(max-width:768px){

    .footer-bottom{

        flex-direction:column;

        text-align:center;

        gap:15px;
    }

}
/* 
===================================
Responsive Styles
===================================
*/
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 2rem;
  }
  /* .lll{
    background-image: url(/ElectricPrecision/src/expand-mo.png);
  background-repeat: repeat;
  background-size: cover;
  } */
}

@media (max-width: 992px) {
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: var(--space-lg);
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hero {
    padding: 10rem 0 6rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* Navigation for mobile */
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    z-index: 1001;
  }

  #nav {
    width: 100%;
  }

  #primary-nav {
    position: fixed;
    inset: 80px 0 0 0;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: var(--space-lg);
    transform: translateY(-100%);
    transition: transform var(--transition-normal);
    z-index: 999;
    display: flex;
  }

  #primary-nav[data-visible="true"] {
    transform: translateY(0);
  }

  #nav li {
    margin: 0 0 var(--space-md) 0;
  }

  #nav .nav-link {
    display: block;
    font-size: 1.2rem;
  }

  /* Ensure logo is visible */
  .logo {
    z-index: 1001;
    position: relative;
    top: 6px;
  }

  /* Other responsive items */
  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  .lll {
    background-image: url(../expand-mo.png);
    background-repeat: repeat;
    background-size: cover;
    padding: 90px;
  }
  .hero-buttons .btn {
    width: 100%;
  }

  .categories-grid,
  .features-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 350px;
  }

  /* Make header and logo responsive */
  #header .container {
    height: 70px;
    padding: 0 var(--space-md);
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  /* Fix spacing in mobile menu */
  #primary-nav {
    padding-top: var(--space-xl);
  }

  #nav .nav-link {
    padding: var(--space-md) 0;
  }

  /* Adjust hero section for smaller screens */
  .hero {
    padding: 8rem 0 5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  /* Product card responsive styles */
  .product-card {
    margin-bottom: var(--space-md);
  }

  .product-features {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .product-features span {
    width: 100%;
  }

  .product-price {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .product-price .btn-text {
    width: 100%;
    text-align: center;
    padding: var(--space-sm) 0;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 380px) {
  .logo h1 {
    font-size: 1.2rem;
  }

  .mobile-nav-toggle {
    right: var(--space-sm);
  }

  #header .container {
    padding: 0 var(--space-sm);
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000000;
}

/*
===================================
Section Header Premium
===================================
*/

.section-header2{
    text-align:center;
    margin-bottom:70px;
    position:relative;
}

.section-header2 h2{

    position:relative;

    display:inline-block;

    padding:0 25px 22px;

    font-size:42px;

    font-weight:800;

    color:#0b2343;

    text-transform:uppercase;

    letter-spacing:2px;

    line-height:1.2;

    transition:.35s;
}

/* Orange Badge */

.section-header2 h2::before{

    content:"";

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    width:14px;

    height:14px;

    border-radius:50%;

    background:#ff7a00;

    box-shadow:
        0 0 20px rgba(255,122,0,.6);
}

/* Main Orange Line */

.section-header2 h2::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:90px;

    height:5px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        #ff7a00,
        #ffb347,
        #ff7a00
    );

    transition:.35s;
}

/* Hover */

.section-header2:hover h2{

    letter-spacing:3px;
}

.section-header2:hover h2::after{

    width:140px;
}

.lightbox {
  z-index: 99999;
}

.portfolio2 {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

.portfolio2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.portfolio img,
.portfolio2 img {
  width: 300px;
}
.portfolio2 h2 {
  font-size: 27px;
  padding-top: 80px;
  padding-bottom: 20px;
  /* color: #222; */
  /* border-top: 1px solid #f69222; */
}
.gallery {
  align-items: center;
  justify-content: center;
}
.portfolio h2 {
  font-size: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
  /* color: #222; */
}

/* .portfolio2 img {
  position: relative;
  left: 20PX;
} */

.about2 {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

.about-content2 {
  align-items: center;
}

.about-text2 h3 {
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.about-text2 p {
  color: var(--text-light);
}

.about-stats2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.stat2 {
  background-color: var(--light-gray);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.stat-text2 {
  font-weight: 500;
  color: var(--secondary-color);
}

.portfolio2-grid img {
  position: relative;
  left: 22px;
}






#mobile-nav-toggle2{
  position: absolute;
  left: 0;
  right: 400px;
}








.language-switcher {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
}

.lang-btn {
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

.lang-menu {
  display: none;
  background-color: white;
  position: absolute;
  top: 45px;
  right: 0;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  min-width: 150px;
}

.lang-menu p {
  margin: 0 0 10px;
  font-weight: bold;
}
.lang-menu a{
  display: block;
  color: #000000;
  padding: 14px;
}
.lang-menu a:hover{
  color: #f69324;
}

.all-original{
    width:100%;
    margin-top:40px;
    text-align:center;
}

.all-original img{
    width:500px;
    max-width:90%;
    height:auto;
}



/*======================================
        UPVC LAYOUT
======================================*/

.upvc-layout{
    display:flex;
    flex-direction:row-reverse;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    width:90%;
    max-width:1400px;
    margin:60px auto;
}

.upvc-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.upvc-image img{
    width:100%;
    max-width:400px;
    height:auto;
    object-fit:contain;
}

/*======================================
        PRODUCT LAYOUT
======================================*/

.product-layout{
    width:95%;
    max-width:1500px;
    margin:50px auto;
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.product-main-image{
    width:40%;
    position:sticky;
    top:100px;
}

.product-main-image img{
    width:100%;
    display:block;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.product-details{
    width:60%;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/*======================================
        PRODUCT CARD
======================================*/

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;

    display:flex;
    justify-content:center;
    align-items:center;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.product-card img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
    object-position:center;
}

/*======================================
        PRODUCT GRID
======================================*/

.product-grid{
    width:95%;
    max-width:1450px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:35px;
}

.product-group .product-grid{
    width:100%;
    margin:0;
}

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

.product-section{
    width:95%;
    max-width:1500px;
    margin:70px auto;

    display:flex;
    flex-direction:column;
    gap:35px;
}

.product-group{
    margin-bottom:70px;
}

/*======================================
        PRODUCT TITLE
======================================*/

.product-group-title{

    display:inline-block;

    background:#4f5358;

    color:#ff7a00;

    padding:14px 32px;

    border-radius:20px;

    margin-right: 100px;

    font-size:24px;

    font-weight:700;

    letter-spacing:1px;

    border:2px solid #ff7a00;

    box-shadow:
        0 0 20px rgba(255,122,0,.20);

    transition:.35s;
}

.product-group-title:hover{

    background:#ff7a00;

    color:#fff;

    box-shadow:
        0 0 35px rgb(255, 123, 0);

    transform:translateY(-3px);
}

.product-group-title::before,
.product-group-title::after{

    content:"";
    flex:1;
    height:2px;
    background:#f69222;
}

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

@media (max-width:1200px){

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

}

@media (max-width:992px){

    .product-layout{
        flex-direction:column;
    }

    .product-main-image{
        width:100%;
        position:relative;
        top:0;
    }

    .product-details{
        width:100%;
    }

    .upvc-layout{
        flex-direction:column;
    }

}

@media (max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .product-group-title{
        font-size:24px;
    }

}

@media (max-width:576px){

    .product-card{
        border-radius:12px;
    }

    .product-grid{
        gap:20px;
    }

}


/* Single Product Layout */

.single-product{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.single-product .product-card{
    width:950px;
    max-width:100%;
    margin:0;
    padding:0;
}

.single-product .product-card img{
    width:100%;
    height:auto;
    display:block;
}
.product-grid{
    width:100%;
    max-width:2000px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(950px,950px));
    justify-content:center;
    gap:35px;
}

.two-items{
    display:flex;
    justify-content:center;
    gap:35px;
}

.two-items .product-card{
    width:420px;
}



/*====================================
            CERTIFICATES
====================================*/

/* Certificate Grid */

.certificate-grid{

    width:90%;
    max-width:450px;
    margin:60px auto;

    display:flex;
    flex-direction:column;
    gap:60px;

}

/* Certificate Card */

.certificate-card{

    width:100%;

    background:#fff;

    border:1px solid #e8e8e8;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    cursor:pointer;

    transition:.35s ease;

}

.certificate-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.certificate-card img{

    display:block;

    width:100%;

    border-radius:20px;

}

/*====================================
        Product Group Title
====================================*/

.product-group-title{

    position:sticky;

    top:80px;

    z-index:100;

    margin-bottom:40px;

    padding:15px 25px;

    background:#fff;

    border-left:6px solid #005baa;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

/*====================================
      Certificates Header
====================================*/

.certificates-header{

    position:relative;

    max-width:950px;

    margin:0 auto 90px;

    text-align:center;

    z-index:2;

}

/* Background Glow */

.certificates-header::before{

    content:"";

    position:absolute;

    left:50%;
    top:-110px;

    width:320px;
    height:320px;

    transform:translateX(-50%);

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(255,122,0,.18),
        transparent 70%
    );

    filter:blur(70px);

    z-index:-2;

}

/* Decorative Line */

.certificates-header::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:-45px;

    width:220px;
    height:1px;

    transform:translateX(-50%);

    background:rgba(11,35,67,.15);

}

/*====================================
        Subtitle
====================================*/

.certificates-subtitle{

    display:flex;

    align-items:center;

    justify-content:center;

    width:fit-content;

    margin:0 auto 28px;

    padding:10px 28px;

    gap:15px;

    border-radius:50px;

    background:rgba(255,122,0,.08);

    border:1px solid rgba(255,122,0,.15);

    color:#ff7a00;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    backdrop-filter:blur(10px);

    transition:.35s ease;

}
.certificates-subtitle::before,
.certificates-subtitle::after{

    content:"";

    width:28px;

    height:2px;

    border-radius:20px;

    background:#ff7a00;

}

.certificates-header:hover .certificates-subtitle{

    transform:translateY(-4px);

    box-shadow:0 0 30px rgba(255,122,0,.18);

}

/*====================================
            Title
====================================*/

.certificates-header h2{

    position:relative;

    display:inline-block;

    margin:0;

    font-size:60px;

    font-weight:800;

    line-height:1.1;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#0b2343;

    transition:.45s ease;

}

.certificates-header h2::before{

    content:"";

    position:absolute;

    left:-35px;
    top:50%;

    width:14px;
    height:14px;

    transform:translateY(-50%);

    border-radius:50%;

    background:#ff7a00;

    box-shadow:0 0 20px rgba(255,122,0,.45);

    transition:.45s;

}

.certificates-header h2::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:-25px;

    width:120px;
    height:5px;

    transform:translateX(-50%);

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        #ff7a00,
        #ffb347,
        #ff7a00,
        transparent
    );

    transition:.45s;

}

/*====================================
        Description
====================================*/

.certificates-header p{

    position:relative;

    max-width:850px;

    margin:55px auto 0;

    padding:0 20px;

    font-size:19px;

    line-height:2;

    font-weight:500;

    color:#5f6b78;

    transition:.45s ease;

}

.certificates-header p::before{

    content:"";

    position:absolute;

    top:-24px;
    left:50%;

    width:80px;
    height:3px;

    transform:translateX(-50%);

    border-radius:30px;

    background:linear-gradient(
        90deg,
        transparent,
        #ff7a00,
        transparent
    );

    transition:.45s;

}

.certificates-header p::after{

    content:"";
    display:none;

    position:absolute;

    left:50%;
    bottom:-28px;

    width:40px;
    height:40px;

    transform:translateX(-50%);

    border-radius:50%;

    border:2px solid rgba(255,122,0,.15);

    transition:.45s;

}

.certificates-header p span{

    position:relative;

    color:#ff7a00;

    font-weight:700;

}

.certificates-header p span::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-3px;

    width:100%;
    height:2px;

    background:#ff7a00;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

/*====================================
        Hover Effects
====================================*/

.certificates-header:hover h2{

    letter-spacing:4px;

    transform:translateY(-3px);

}

.certificates-header:hover h2::before{

    transform:translateY(-50%) scale(1.35);

    box-shadow:0 0 30px rgba(255,122,0,.7);

}

.certificates-header:hover h2::after{

    width:190px;

    box-shadow:0 0 25px rgba(255,122,0,.45);

}

.certificates-header:hover p{

    transform:translateY(-4px);

    color:#435469;

}

.certificates-header:hover p::before{

    width:150px;

}

.certificates-header:hover p::after{

    transform:translateX(-50%) rotate(180deg);

    border-color:#ff7a00;

}

.certificates-header:hover p span::after{

    transform:scaleX(1);

}

/*====================================
            Responsive
====================================*/

@media (max-width:992px){

    .certificates-header h2{

        font-size:48px;

    }

    .certificates-header p{

        font-size:17px;

    }

}

@media (max-width:768px){

    .certificates-header{

        margin-bottom:70px;

    }

    .certificates-header h2{

        font-size:36px;

    }

    .certificates-header h2::before{

        display:none;

    }

    .certificates-header p{

        font-size:16px;

        line-height:1.9;

    }

}
/* =====================================================
   STORAGE POLICY
===================================================== */

.storage-policy{
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
        url("../expand-mo.png") center/cover fixed no-repeat;
}

.storage-policy::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top right,
        rgba(247,148,29,.12),
        transparent 45%);
    pointer-events:none;
}

.policy-container{
    width:90%;
    max-width:1280px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* ===========================
   PAGE TITLE
=========================== */

.page-title{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 45px;

    margin:0 auto 55px;

    background:linear-gradient(135deg,#ff9d2d,#f57c00);

    color:#fff;

    font-size:36px;

    font-weight:700;

    border-radius:60px;

    letter-spacing:.5px;

    box-shadow:
        0 20px 40px rgba(245,124,0,.25);

}

.page-title::after{

    content:"";

    width:70px;
    height:4px;

    background:#fff;

    border-radius:20px;

    margin-left:18px;

}

/* ===========================
   INTRO
=========================== */

.intro{

    max-width:980px;

    margin:0 auto 70px;

    text-align:center;

    color:#355177;

    font-size:19px;

    line-height:2;

    font-weight:400;

}

/* ===========================
   CARD
=========================== */

.policy-card{

    position:relative;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(12px);

    border-radius:22px;

    overflow:hidden;

    margin-bottom:35px;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:

        0 12px 40px rgba(20,40,70,.08);

    transition:.35s ease;

}

.policy-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:6px;
    height:100%;

    background:linear-gradient(
        to bottom,
        #ff9d2d,
        #f57c00
    );

}

.policy-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 20px 50px rgba(0,0,0,.15);

}

/* ===========================
   TITLE
=========================== */

.policy-title{

    display:flex;

    align-items:center;

    gap:15px;

    padding:22px 30px;

    background:

        linear-gradient(
            135deg,
            #173a67,
            #23406d
        );

    color:#fff;

    font-size:25px;

    font-weight:700;

}

.policy-title::before{

    content:"";

    width:12px;

    height:12px;

    border-radius:50%;

    background:#ff9d2d;

    box-shadow:

        0 0 15px rgba(255,157,45,.8);

}

/* ===========================
   BODY
=========================== */

.policy-body{

    padding:35px;

}

.policy-body ul{

    margin:0;

    padding:0;

    list-style:none;

}

.policy-body li{

    position:relative;

    padding-left:38px;

    margin:18px 0;

    color:#2d476f;

    font-size:17px;

    line-height:1.9;

    transition:.25s;

}

.policy-body li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:2px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:#ff9d2d;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:14px;

    font-weight:bold;

}

.policy-body li:hover{

    transform:translateX(8px);

    color:#173a67;

}

/* ===========================
   NOTE
=========================== */

.note{

    background:

        linear-gradient(
            135deg,
            #173a67,
            #23406d
        );

    color:#fff;

    border-radius:22px;

    padding:35px;

    margin-top:45px;

    box-shadow:

        0 18px 40px rgba(35,64,109,.25);

}

.note h3{

    font-size:28px;

    margin-bottom:20px;

}

.note p{

    line-height:2;

    font-size:17px;

    opacity:.95;

}

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

@media(max-width:992px){

    .page-title{

        font-size:28px;

        padding:15px 35px;

    }

    .policy-title{

        font-size:21px;

    }

}

@media(max-width:768px){

    .storage-policy{

        padding:70px 0;

    }

    .page-title{

        width:100%;

        border-radius:14px;

        font-size:24px;

        padding:18px;

    }

    .page-title::after{

        display:none;

    }

    .intro{

        font-size:16px;

        line-height:1.9;

    }

    .policy-body{

        padding:25px;

    }

    .policy-body li{

        font-size:15px;

    }

}

/*=============== PAGE HEADER ===============*/

.page-header{
    width:100%;
    padding:170px 0 80px;
    background:#f8f9fb;
    text-align:center;
}

.page-header h1{
    font-size:3rem;
    color:#1d3557;
    margin-bottom:15px;
    font-weight:700;
}

.page-header p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:1.05rem;
}




/*=============== Responsive ===============*/

@media screen and (max-width:768px){

.page-header{

padding:150px 20px 60px;

}

.page-header h1{

font-size:2.2rem;

}



}

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

.footer{

    background:#072b52;

    color:#fff;

    padding:70px 0 25px;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    gap:80px;

    flex-wrap:wrap;

}

.footer-about{

    flex:2;

}

.footer-about img{

    width:190px;

    margin-bottom:20px;

}

.footer-about p{

    color:#d6d6d6;

    line-height:1.8;

    max-width:500px;

}

.footer-links{

    flex:1;

}

.footer-links h3{

    color:#ffffff;

    font-size:26px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

    position:relative;

    display:inline-block;

    text-transform:uppercase;

}

.footer-links h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:55px;

    height:3px;

    background:linear-gradient(90deg,#00AEEF,#b4b4b4);

    border-radius:10px;

}

.footer-links ul{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#dcdcdc;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#00AEEF;

    padding-left:8px;

}

.social-links{

    margin-top:25px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#0b427b;

    color:#fff;

    font-size:18px;

    transition:.3s;

}

.social-links a:hover{

    background:#00AEEF;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    margin:0;

    color:#cfcfcf;

}

.footer-bottom a{

    color:#00AEEF;

    text-decoration:none;

}

.footer-bottom a:hover{

    text-decoration:underline;

}

@media(max-width:768px){

.footer-content{

flex-direction:column;

gap:40px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}
*{
    max-width:100%;
}

img,
video,
iframe{
    max-width:100%;
    height:auto;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}


@media (max-width: 768px) {

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 20px 60px;
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 25px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

html,
body {
    overflow-x: hidden;
}