body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





/* footer */

.site-footer {
    background-color: #000; /* Qara fon */
    color: #fff;            /* Ağ mətn */
    padding: 20px;
    text-align: center;
}

.site-footer .footer-nav {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer .footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 5px 10px;
    font-weight: bold;
    transition: color 0.3s;
}

.site-footer .footer-nav a:hover {
    color: #ccc;
}

.site-footer p {
    margin: 5px 0;
    font-size: 14px;
    word-break: break-word;
}


@media (max-width: 600px) {
    .site-footer .footer-nav {
        flex-direction: column;
        align-items: center;
    }

    .site-footer .footer-nav a {
        margin: 5px 0;
    }
}

/* footer */



/* Header və navbar */
.site-header {
    background-color: #111;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo img {
 
    width: 50px; /* İstədiyin ölçünü ver */
    height: auto;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
}


.navbar {
    display: flex;
    gap: 15px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #00bcd4;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #111;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 999;
    }

    .navbar a {
        padding: 10px;
        border-top: 1px solid #333;
    }

    .navbar.active {
        display: flex;
    }
}


/* Header və navbar */


/* ana sehife*/
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

main {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
    text-align: center;
}

main h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #222;
}

main p {
    font-size: 1.1rem;
    color: #555;
}


section {
    background-color: #fff;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #007acc;
}

section h2 a {
    text-decoration: none;
    color: inherit;
}

section h2 a:hover {
    color: #005f99;
}

section p {
    font-size: 1rem;
    color: #444;
}


@media (max-width: 768px) {
    main, section {
        margin: 15px 10px;
        padding: 15px 15px;
    }

    main h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.4rem;
    }

    section p {
        font-size: 0.9rem;
    }
}

/* ana sehife*/




.image1-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    text-align: center;
}

.image1-container img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}







/*certificate*/

.certificates {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.certificates h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.certificates-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certificate-item img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certificate-item img:hover {
    transform: scale(1.05);
}

/*certificate*/




/*certificate image*/

.certificates {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.certificates h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.certificates-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certificate-item {
    flex: 1 1 200px;
    max-width: 250px;
}

.certificate-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certificate-item img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .certificates-gallery {
        flex-direction: column;
        align-items: center;
    }
}



/*certificate image*/




/* SEO Page Styling */
.seo-page {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.seo-page h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.seo-section {
    margin-bottom: 40px;
}

.seo-section h2 {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 10px;
}

.seo-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


@media (max-width: 600px) {
    .seo-page {
        padding: 15px;
    }

    .seo-page h1 {
        font-size: 1.5rem;
    }

    .seo-section h2 {
        font-size: 1.2rem;
    }

    .seo-section p {
        font-size: 0.95rem;
    }
}




/*on page seo*/

.onepage-seo h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.onepage-seo h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.onepage-seo p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .onepage-seo h2 {
        font-size: 1.6rem;
    }

    .onepage-seo h3 {
        font-size: 1.2rem;
    }

    .onepage-seo p {
        font-size: 0.95rem;
    }
}

/*off page seo*/

.offpage-seo {
    padding: 2rem;
    background-color: #ffffff;
    margin-bottom: 2rem;
}

.offpage-seo h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.offpage-seo h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    color: #444;
}

.offpage-seo p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.backlink-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.backlink-content img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .backlink-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .offpage-seo h2 {
        font-size: 1.6rem;
    }

    .offpage-seo h3 {
        font-size: 1.3rem;
    }

    .offpage-seo p {
        font-size: 0.95rem;
    }
}

  /* SEO Page Styling */



/* SMM Page Specific Styles */
.smm-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.smm-main h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.smm-main p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .smm-main h1 {
        font-size: 1.5rem;
    }

    .smm-main p {
        font-size: 0.95rem;
    }
}

  


.smm-image-section {
    text-align: center;
    padding: 20px;
}

.smm-image-section img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.smm-image-section p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}


@media (max-width: 768px) {
    .smm-image-section img {
        max-width: 250px;
    }

    .smm-image-section p {
        font-size: 0.95rem;
    }
}



.social-media-channels {
    text-align: center;
    padding: 30px;
}

.social-media-channels h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.channel {
    margin-bottom: 30px;
}

.channel h3 {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 10px;
}

.channel img {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .social-media-channels h2 {
        font-size: 1.7rem;
    }

    .channel h3 {
        font-size: 1.3rem;
    }

    .channel img {
        max-width: 100px;
    }
}

.smm-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.smm-card {
    background-color: rgba(0, 0, 0, 0.7); /* Kart özü şəffaf qara */
    color: #fff;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.smm-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.smm-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
}

.smm-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 0, 0, 0.7); /* Hover olanda qırmızı ton */
    color: #fff;
}

.smm-card:hover p {
    color: #eee;
}

/* Responsive üçün */
@media (max-width: 768px) {
    .smm-cards {
        flex-direction: column;
        align-items: center;
    }

    .smm-card {
        width: 90%;
        max-width: 300px;
    }
}


/* SMM Page Specific Styles */



/* SEM səhifəsi üçün modern və gözəl stil */

 .sem-main {
 
    max-width: 900px;
  margin: 50px auto;
  padding: 0 25px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 
}

.sem-h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #0d47a1;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 1px 1px 3px rgba(13, 71, 161, 0.4);
}

.sem-section {
  margin-bottom: 45px;
  padding: 30px 35px;
  background: linear-gradient(135deg, #f0f4ff 0%, #d9e4ff 100%);
  border-left: 8px solid #0d47a1;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(13, 71, 161, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sem-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(13, 71, 161, 0.3);
}

.sem-h2 {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.sem-p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  font-weight: 400;
}

/* Responsive dizayn */
@media (max-width: 768px) {
  .sem-main {
    padding: 0 20px;
  }

  .sem-h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .sem-section {
    padding: 25px 20px;
  }

  .sem-h2 {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  .sem-p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .sem-main {
    margin: 30px 15px;
  }

  .sem-h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .sem-section {
    padding: 20px 15px;
    border-left-width: 6px;
  }

  .sem-h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .sem-p {
    font-size: 0.95rem;
  }
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.image-container {
  max-width: 300px;
  text-align: center;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.image-container p {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
  text-align: justify;
  line-height: 1.5;
}


/* SEM səhifəsi üçün modern və gözəl stil */



/* services */

.services-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #222;
}

.services-main h1,
.services-main h2 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #2a2a2a;
}

.services-main p {
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #444;
}

.service-section img {
  display: block;
  margin: 0 auto 20px auto;
  width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.btn-learn {
  background-color: #ff5e5e;
  border: none;
  color: white;
  padding: 12px 36px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-learn:hover {
  background-color: #d73737;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 600px) {
  .service-section img {
    width: 200px;
  }

  .services-main p {
    font-size: 1rem;
    max-width: 90%;
  }

  .btn-learn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}


/* services */





