/* General Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}


/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://res.cloudinary.com/dmixvynoo/image/upload/v1750629285/Flatlay_Photo_General_Linkedin_Banner_1_gnofts.svg');
                background-position: center right;
    background-size: cover;
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
    position: relative;
    margin-top: 70px; 
    height: 80vh;
    align-items: center
    ;
    justify-content: center;
    gap: 4rem;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
    animation: fadeIn 1s ease;
    padding-bottom: 2rem;
}

.breadcrumb li {
    margin: 0 10px;
    position: relative;
}

.breadcrumb li:not(:last-child):after {
    content: '/';
    position: absolute;
    right: -15px;
    color: rgba(255, 255, 255, 0.7);
}



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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
        margin-top: 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .breadcrumb {
        font-size: 1rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb li {
        margin: 5px 10px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
}
/* Carousel Container */
.owl-carousel {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px 10px;
  background: linear-gradient(to right, #000000, #17130a);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Each Item */
.owl-carousel .item {
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owl-carousel .item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Images */
.owl-carousel img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  border: 3px solid #fff;
}

.item{
    height: 450px;
    width: 380px;
}

.item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Navigation Arrows */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #ff914d;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: #ff6a00;
}

.owl-nav button.owl-prev {
  left: -25px;
}

.owl-nav button.owl-next {
  right: -25px;
}

/* Hide arrows on small screens */
@media (max-width: 600px) {
  .owl-nav button.owl-prev,
  .owl-nav button.owl-next {
    display: none;
  }
}

/* Dots (pagination) */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dots .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ff0000;
  position: absolute;
  top: 50%;
  margin: 0 5px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.owl-dots .owl-dot.active {
  background: #000000;
}

.main-footer {
  background: #000000;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid #eee;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 300px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ff4000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ff4000;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1 1 auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.newsletter-form button {
  background: #ff4000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: rgb(255, 64, 0);
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: rgb(255, 64, 0);
  font-size: 18px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ff3700;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 600px) {
  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}


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

  .owl-carousel .item {
    padding: 5px;
  }
}


/* Base Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
    font-size: 2rem;
    font-weight: 900;
}

.logo span{
    color: red;
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-links a:hover {
    color: #e74c3c;
}

.nav-links a.active {
    color: #e74c3c;
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e74c3c;
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
        margin-left: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .nav-links a.active:after {
        width: calc(100% - 40px);
        left: 20px;
    }
}


.btn{
   border: 2px solid #e74c3c;
    color: #fff;
    height: 56px;
    width: 190px;
    padding: 12px 20px;
 transition: all .9s ease;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transform-origin: blue;
}

.btn:hover{
    background-color: #e74c3c;
}
