 /* Global Styles */
 :root {

     --primary-color: #000000;
     /* Background Black */
     --secondary-color: #D4AF37;
     /* Main Gold */
     --accent-color: #B8860B;
     /* Deep Gold Accent */
     --light-color: #F5DEB3;
     /* Light Gold/Wheat for highlights */
     --dark-color: #1A1A1A;
     /* Soft Black for contrast areas */
     --text-color: #222222;
     /* Dark Blackish Text */
     --text-light: #555555;
     /* Lighter Gray for subtitles */
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     color: var(--text-color);
     line-height: 1.6;
 }

 a {
     text-decoration: none;
     color: var(--secondary-color);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .btn {
     display: inline-block;
     background: var(--secondary-color);
     color: white;
     padding: 10px 20px;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .btn:hover {
     background: var(--accent-color);
     transform: translateY(-2px);
 }

 .section-title {
     text-align: center;
     margin-bottom: 50px;
     font-size: 2.5rem;
     color: #dedede;
     position: relative;
 }

 .section-title::after {
     content: '';
     display: block;
     width: 80px;
     height: 4px;
     background: var(--secondary-color);
     margin: 15px auto;
 }

 /* Header Styles */
 header {
     background-color: rgba(0, 0, 0, 0.8);
     /* Initial blackish background */
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     transition: background-color 0.3s ease, box-shadow 0.3s ease;
 }

 header.scrolled {
     background-color: white;
     /* Changes to white on scroll */
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 5px 0;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo img {
     height: 100px;
     margin-right: 10px;
 }

 .logo h1 {
     color: white;
     transition: color 0.3s ease;
     font-size: 1.5rem;
 }

 header.scrolled .logo h1 {
     color: var(--primary-color);
     /* Black text after scroll */
 }

 nav ul {
     display: flex;
     list-style: none;
 }

 nav ul li {
     margin-left: 30px;
 }

 nav ul li a {
     color: white;
     transition: color 0.3s ease;
     font-weight: 500;

 }

 header.scrolled nav ul li a {
     color: var(--primary-color);
 }

 header.scrolled nav ul li a:hover {
     color: var(--secondary-color);
 }

 nav ul li a:hover {
     color: var(--secondary-color);
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     font-size: 1.5rem;
     color: #d8c8c8;
     cursor: pointer;
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(rgb(116 85 7 / 31%), rgb(13 12 3 / 77%)),
         url(../images/background.jpg) no-repeat center center / cover;
     height: 100vh;
     display: flex;
     align-items: center;
     text-align: center;
     color: white;
     padding-top: 80px;
 }

 .hero-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .hero h1 {
     font-size: 3rem;
     margin-bottom: 20px;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 30px;
 }


/* we promote section */


.we-promote {
  padding: 60px 20px;
  background: #f9f9f9;
}

 .Promote-title {
     text-align: center;
     margin-bottom: 50px;
     font-size: 2.5rem;
     color: #333;
     position: relative;
 }

 .Promote-title::after {
     content: '';
     display: block;
     width: 80px;
     height: 4px;
     background: var(--secondary-color);
     margin: 15px auto;
 }
.promote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .promote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .promote-grid {
    grid-template-columns: 1fr;
  }
}


 .promote-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgb(137 103 7 / 58%); /* deeper shadow */
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease; /* smooth hover effect */
  position: relative;
  overflow: hidden;
}

/* subtle lighting effect */
.promote-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.3), transparent 60%);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* hover effect */
.promote-card:hover {
  transform: translateY(-10px) scale(1.03); /* move up + zoom */
  box-shadow:0 12px 28px #b8860b94; /* stronger shadow */
}

/* show lighting on hover */
.promote-card:hover::before {
  opacity: 1;
}

.promote-title {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #444;
}

.promote-content {
  display: flex;
  flex-direction: column;
  /* align-items: center;*/
  gap: 15px;
}

.promote-img {
height: 150px;
}

.promote-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* crop image proportionally */
  border-radius: 8px;
}
.promote-text {
  flex: 1; /* take remaining space */
}
.promote-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.promote-text ul li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  color: #555;
}
.promote-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6600;
}

 /* Services Section */
 .services {
     padding: 100px 0;
     background-color: #282723;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: white;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .service-img {
     height: 200px;
     overflow: hidden;
 }

 .service-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .service-card:hover .service-img img {
     transform: scale(1.1);
 }

 .service-content {
     padding: 20px;
 }

 .service-content h3 {
     margin-bottom: 15px;
     color: var(--primary-color);
 }

 .service-card a {
     color: #003cff;
 }


 /******** partner Section ********/
 .partners {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}

.partners-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-track img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  display: block;
}

.carousel-slide {
  padding: 10px;
  overflow: hidden; /* important */
  border-radius: 10px;
}

.carousel-slide:hover img {
  transform: scale(1.1); /* zoom effect inside */
}

.partner-card {
  min-width: calc(33.33% - 30px); /* default: 3 at a time */
  max-height: 185px;
  margin: 0 15px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* keep aspect ratio */
  transition: transform 0.3s ease-in-out;
}

.partner-card:hover img {
  transform: scale(1.1); /* zoom inside card */
}

.partner-card:hover {
  transform: translateY(-5px);
}

/* Arrows */
.carousel-btn {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-btn.prev { left: -50px; }
.carousel-btn.next { right: -50px; }

/* Dots */
.carousel-dots {
  margin-top: 20px;
  text-align: center;
}

.carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dot.active {
  background-color: #333;
}
@media (max-width: 768px) {
  .partner-card {
    min-width: calc(50% - 30px); /* 2 at a time on tablets */
  }
   .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
}

@media (max-width: 480px) {
  .partner-card {
    min-width: calc(100% - 30px); /* 1 at a time on mobile */
  }
   .carousel-btn {
    font-size: 24px;   /* smaller buttons */
    padding: 6px;
  }
  .carousel-btn.prev { left: 5px; }
  .carousel-btn.next { right: 5px; }
}



 /********* Contact Section **********/
 .contact {
     padding: 100px 0;
     background-color: #eeeeee;
 }

 .contact-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 50px;
 }

 .contact-info h3 {
     margin-bottom: 20px;
     font-size: 1.8rem;
     color: var(--primary-color);
 }

 .contact-info p {
     margin-bottom: 15px;
 }

 .contact-info i {
     margin-right: 10px;
     color: var(--secondary-color);
 }

 .contact-form .form-group {
     margin-bottom: 20px;
 }

 .contact-form label {
     display: block;
     margin-bottom: 5px;
     font-weight: 500;
 }

 .contact-form input,
 .contact-form textarea {
     width: 100%;
     padding: 10px;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-size: 1rem;
 }

 .contact-form textarea {
     height: 150px;
     resize: vertical;
 }

 /* Message Display Section */
.notice {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}
.notice.success {
    background: #e0ffe0;
    border: 1px solid #4CAF50;
    color: #2e7d32;
}
.notice.error {
    background: #ffe0e0;
    border: 1px solid #f44336;
    color: #b71c1c;
}


/******** Blog Page  *********/


.blog-container {
    max-width: 1200px;
    margin: 125px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.blog-card {
    padding: 6px 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgb(14 14 14 / 29%);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h2 {
    font-size: 20px;
    margin: 0 0 10px;
}

.blog-content h2 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.blog-content h2 a:hover {
    color: #d4af37; /* highlight color */
}

.blog-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    padding: 8px 14px;
    background: #d4af37;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.read-more:hover {
    background: var(--accent-color);
}

.blog-detail {
    margin: 100px auto;
    padding: 40px 0;
    background: #fafafa;
}

.blog-article {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.blog-image img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}


 /********* Footer ************/
 footer {
     background-color: var(--dark-color);
     color: white;
     padding: 50px 0 20px;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin-bottom: 30px;
 }

 .footer-col h3 {
     margin-bottom: 20px;
     font-size: 1.3rem;
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 10px;
 }

 .footer-col ul li a {
     color: #fff;
     transition: color 0.3s;
 }

 .footer-col ul li a:hover {
     color: var(--secondary-color);
 }

 .social-links {
     display: flex;
     gap: 15px;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     transition: all 0.3s;
 }

 .social-links a:hover {
     background: var(--secondary-color);
     transform: translateY(-3px);
 }

 .copyright {
     text-align: center;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.9rem;
 }

 /* Privacy Policy & Terms Pages */
 .policy-page {
     padding: 135px 0;
     background-color: #ffe7b6;
 }

 .policy-content {
     background: white;
     padding: 40px;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .policy-content h2 {
     margin: 30px 0 15px;
     color: var(--primary-color);
 }

 .policy-content p {
     margin-bottom: 15px;
 }

 /* Floating Action Buttons */
 .floating-buttons {
     position: fixed;
     bottom: 40px;
     right: 40px;
     z-index: 100;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .floating-btn {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     text-align: center;
     font-size: 30px;
     box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     color: white;
 }

 .floating-btn:hover {
     transform: scale(1.1);
 }

 .whatsapp-btn {
     background-color: #25d366;
 }

 .whatsapp-btn:hover {
     background-color: #128C7E;
 }

 .call-btn {
     background-color: #2c3e50;
 }

 .call-btn:hover {
     background-color: #1a252f;
 }

 .floating-btn i {
     margin-top: 5px;
 }

 /* Responsive Styles */
 @media (max-width: 992px) {
     .hero h1 {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 768px) {
     .header-container {
         padding: 5px 0;
     }

     nav {
         position: fixed;
         top: 110px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 70px);
         background: white;
         transition: all 0.3s;
         z-index: 999;
     }

     nav.active {
         left: 0;
     }

     nav ul {
         flex-direction: column;
         padding: 20px;
     }

     nav ul li {
         margin: 15px 0;
     }

     nav ul li a {
         color: #281b1b;
     }

     .mobile-menu-btn {
         display: block;
         margin-right: 5px;
     }

     .hero {
         padding-top: 70px;
     }

     .hero h1 {
         font-size: 2rem;
     }

     .section-title {
         font-size: 2rem;
     }

     /* Adjust floating buttons for mobile */
     .floating-buttons {
         bottom: 30px;
         right: 30px;
         gap: 10px;
     }

     .floating-btn {
         width: 50px;
         height: 50px;
         font-size: 25px;
     }
 }

 @media (max-width: 576px) {
     .hero h1 {
         font-size: 1.8rem;
     }

     .hero p {
         font-size: 1rem;
     }

     .section-title {
         font-size: 1.8rem;
     }

     .policy-content {
         padding: 20px;
     }
 }



 /* Main Services Section */
 .services-page {
     padding: 135px 20px 50px 20px;
     background-color: #f8f8f8;
     font-family: Arial, sans-serif;
 }

 .services-container {
     display: flex;
     flex-wrap: wrap;
     flex-direction: row;
     align-items: flex-start;
     gap: 15px;
     max-width: 1103px;
     margin: auto;
 }

 /* Left text section */
 .services-text {
     width: calc(100% - 420px);
     /* Leaves space for image on desktop */
     order: 1;
     min-width: 300px;
 }

 .services-text h1 {
     font-size: 2rem;
     color: #312c2c;
     margin-bottom: 15px;
 }

 .services-text p {
     color: #222222;
     line-height: 1.6;
     margin-bottom: 15px;
 }

 .services-text h2 {
     font-size: 1.5rem;
     color: #312c2c;
     margin-top: 20px;
     margin-bottom: 10px;
 }

 .services-text ul {
     padding-left: 20px;
     margin-bottom: 15px;
 }

 .services-text ul li {
     margin-bottom: 8px;
     color: #333333;
 }

 .services-text h3 {
     font-size: 1.2rem;
     font-weight: bold;
     color: #312c2c;
     margin-top: 20px;
 }

 /* Right image section - on desktop */
 .services-image {
     width: 380px;
     order: 2;
     text-align: right;
 }

 .services-image img {
     max-width: 100%;
     border-radius: 10px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 /* Responsive design - image above text on mobile */
 @media (max-width: 970px) {
     .services-page {
         padding: 130px 15px 30px 15px;
     }

     .services-container {
         flex-direction: column;
     }

     .services-image {
         order: 1;
         text-align: center;
         width: 100%;
     }

     .services-image img {
         max-width: 60%;
     }

     .services-text {
         order: 2;
         width: 100%;
     }

     .services-text h1 {
         font-size: 1.8rem;
     }

     .services-text h2 {
         font-size: 1.3rem;
     }
 }

 @media (min-width: 670px) and (max-width: 970px) {
     .services-container {
         flex-direction: row-reverse;
         align-items: flex-start;
     }

     .services-text {
         width: 56%;
         /* or flex: 0 0 60%; */
         min-width: 300px;
     }

     .services-image {
         width: 40%;
         /* or flex: 0 0 40%; */
         text-align: right;
     }

     .services-image img {
         max-width: 100%;
     }
 }