@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #161513;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #161513;
}

.logo img {
  width: 170px;       
  height: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #c5c6c7;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.btn.contact {
  background: #CA9D2E;
  color: #fff;
}

.btn.contact:hover {
  background: white;
  color:black;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #c5c6c7;
  transition: all 0.3s;
}

/* Header */
.hero-section {
  color: #fff;
  padding: 50px 10%;
  text-align: left;
}

.hero-section h1 {
  font-size: 2rem;
  line-height: 1.3;
}

.hero-section h1 span {
  color: #CA9D2E;
}

.hero-section p {
  margin-top: 20px;
  font-size: 1.1rem;
  max-width: 600px;
color:#c5c6c7
}



/* Services Section */
.services {
  padding: 80px 10%;
  text-align: center;
}

.services h2 {
  color: #CA9D2E;
  margin-bottom: 40px;
  font-size: 1.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #CA9D2E;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h3 {
  color: #c5c6c7;
  margin-bottom: 15px;
}

/* Digital Marketing Process Section */
.digital-process {
  color: #fff;
  padding: 100px 8%;
}

.process-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Image */
.process-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.process-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(202, 157, 46, 0.4);
  object-fit: cover;
}

/* Right Content */
.process-content {
  flex: 1.2;
  max-width: 600px;
}

.process-content h2 {
  color: #CA9D2E;
  font-size: 2rem;
  margin-bottom: 25px;
}

.process-content p {
  color: #ddd;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 40px;
}


/* Tabs Section */
.advantages {
  
  color: #fff;
  padding: 100px 8%;
  text-align: center;
}

.advantages h2 {
  color: #CA9D2E;
  font-size: 2rem;
  margin-bottom: 40px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.tab-btn {
  background: transparent;
  border: 1px solid #CA9D2E;
 color: #c5c6c7;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: #CA9D2E;
  color: #000;
}

.tab-content {
  display: none;
  max-width: 700px;
  margin: 0 auto;
 border: 1px solid #CA9D2E;
 background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  line-height: 1.6;
}

.tab-content.active {
  display: block;
}


/* Footer */
.footer {
  color: white;
  padding: 60px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

.footer-desc {
  color: #ccc;
  font-size: 0.9em;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  flex: 2;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 180px;
  margin: 10px 0;
}

.footer-column h3 {
  color: #CA9D2E;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.footer-column p,
.footer-column a {
  color: #fff;
  font-size: 0.9em;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #CA9D2E;
}

.social-icons a {
  color: white;
  margin-right: 12px;
  font-size: 1.2em;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #CA9D2E;
  transform: scale(1.2);
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  font-size: 0.9em;
  color: #ccc;
}


/* -------------------------------------------------------------------------------------Responsive ----------------------------------------------------------------------------------------- */

/* Navbar*/
@media (max-width: 768px) {

  .navbar {
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .logo img {
    width: 130px; 
    transition: all 0.3s ease;
    transform: translateX(-10px); 
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    background: #CA9D2E;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .navbar.active {
    flex-direction: column;
    align-items: center;
  }

  .navbar.active .nav-links,
  .navbar.active .nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #161513;
    border-top: 1px solid #CA9D2E;
    position: relative; /* keeps content in normal flow */
    padding: 20px 0;
    gap: 18px;
    animation: slideDown 0.4s ease forwards;
  }

  .navbar.active .nav-links a {
    font-size: 16px;
    color: #c5c6c7;
  }

  .navbar.active .nav-links a:hover {
    color: #ffffff;
  }

  .navbar.active .nav-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 80%;
    text-align: center;
  }

  /* Slide-down animation */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

 
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
}



/* Hero Section */


@media (max-width: 992px) {
  .hero-section {
    padding: 50px 8%;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 1rem;
    max-width: 550px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 45px 6%;
  }

  .hero-section h1 {
    font-size: 1.6rem;
  }

  .hero-section p {
    font-size: 0.95rem;
    max-width: 500px;
  }
}

@media (max-width: 540px) {
  .hero-section {
    padding: 40px 5%;
  }

  .hero-section h1 {
    font-size: 1.4rem;
  }

  .hero-section p {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .hero-section {
    padding: 35px 5%;
  }

  .hero-section h1 {
    font-size: 1.2rem;
  }

  .hero-section p {
    font-size: 0.85rem;
    max-width: 100%;
  }
}

/* Services Section */
@media (max-width: 992px) {
  .services {
    padding: 60px 8%;
  }

  .services h2 {
    font-size: 1.7rem;
  }

  .service-card {
    padding: 25px;
    max-width: 300px;
    margin: 0 auto;
  }
   .service-card p {
    text-align:left;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 50px 6%;
  }

  .services h2 {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .service-grid {
    gap: 25px;
  }

  .service-card {
    padding: 20px;
    max-width: 300px;
    margin: 0 auto;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }
   .service-card p {
    text-align:left;
  }
}

@media (max-width: 540px) {
  .services {
    padding: 40px 5%;
  }

  .services h2 {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }

  .service-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service-card {
    padding: 18px;
    max-width: 300px;
  }

  .service-card h3 {
    font-size: 1rem;
  }
   .service-card p {
    text-align:left;
  }
}

@media (max-width: 380px) {
  .services {
    padding: 30px 4%;
  }

  .services h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .service-card {
    padding: 15px;
    max-width: 270px;
  }

  .service-card h3 {
    font-size: 0.95rem;
  }
  .service-card p {
    text-align:left;
  }
}

/* Digital Marketing Process Section */
@media (max-width: 768px) {
  .digital-process {
    padding: 60px 5%;
  }

  .process-container {
    flex-direction: column; 
    align-items: center;    
    gap: 30px;
  }

  
  .process-content {
    order: 1; 
    max-width: 100%;
    text-align: left; 
  }

  .process-image {
    order: 2; 
    display: flex;
    justify-content: center; 
    width: 100%;
  }

  .process-image img {
    max-width: 350px;
  }

  .process-content h2 {
    font-size: 1.6rem;
  }

  .process-content p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
}


@media (max-width: 540px) {
  .digital-process {
    padding: 50px 4%;
  }

  .process-image img {
    max-width: 300px;
  }

  .process-content h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .process-content p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
}

/* Extra small devices (less than 380px) */
@media (max-width: 380px) {
  .digital-process {
    padding: 40px 3%;
  }

  .process-image img {
    max-width: 250px;
  }

  .process-content h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .process-content p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
}

/* Tabs Section */
@media (max-width: 768px) {
  .advantages {
    padding: 60px 5%;
  }

  .advantages h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .tab-buttons {
    flex-direction: column; 
    align-items: center;
    gap: 10px;
  }

  .tab-btn {
    width: 200px; 
    padding: 10px 0;
    font-size: 0.95rem;
    text-align: center;
  }

  .tab-content {
    max-width: 100%;
    padding: 18px;
  }
}


@media (max-width: 540px) {
  .advantages {
    padding: 50px 4%;
  }

  .advantages h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .tab-btn {
    width: 160px; 
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .tab-content {
    padding: 15px;
  }
}

@media (max-width: 380px) {
  .advantages {
    padding: 40px 3%;
  }

  .advantages h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .tab-btn {
    width: 140px; 
    padding: 6px 0;
    font-size: 0.85rem;
  }

  .tab-content {
    padding: 12px;
  }
}



/* Footer */
@media (max-width: 868px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    justify-content: flex-start;
    gap: 15px; /* Reduce space between columns */
  }

  .footer-column {
    min-width: 100%;
    margin: 8px 0;
  }
}

@media (max-width: 540px) {
  .footer {
    padding: 40px 15px 20px;
  }

  .footer-logo {
    width: 110px;
  }

  .footer-column h3 {
    font-size: 1em;
    margin-bottom: 12px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.85em;
    margin-bottom: 6px;
  }

  .social-icons a {
    font-size: 1.1em;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 10px;
  }

  .footer-column {
    margin-bottom: 6px;
  }
}

@media (max-width: 380px) {
  .footer {
    padding: 30px 10px 15px;
  }

  .footer-logo {
    width: 90px;
    margin-bottom: 10px;
  }

  .footer-column h3 {
    font-size: 0.95em;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.8em;
  }
}
/* Footer Bottom  */

@media (max-width: 768px) {
    .footer-bottom {
        font-size: 0.85em;
    }
}

@media (max-width: 540px) {
    .footer-bottom {
        font-size: 0.8em;
    }
}
@media (max-width: 390px) {
    .footer-bottom {
        font-size: 0.55em;
    }
}
